1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208
|
/*
* This file is part of the theme implementation for form controls in WebCore.
*
* Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*
*/
#ifndef RenderThemeQt_h
#define RenderThemeQt_h
#include "QStyleFacade.h"
#include "RenderTheme.h"
#include <QBrush>
#include <QPalette>
#include <QSharedPointer>
#include <QString>
QT_BEGIN_NAMESPACE
class QPainter;
QT_END_NAMESPACE
namespace WebCore {
class RenderProgress;
class RenderStyle;
class HTMLMediaElement;
class StylePainter;
class ScrollbarTheme;
typedef PassRefPtr<RenderTheme> (*QtThemeFactoryFunction)(Page* page);
class RenderThemeQt : public RenderTheme {
public:
RenderThemeQt(Page*);
static void setCustomTheme(QtThemeFactoryFunction, ScrollbarTheme* customScrollbarTheme);
static ScrollbarTheme* customScrollbarTheme();
String extraDefaultStyleSheet() override;
bool supportsHover(const RenderStyle&) const override;
bool supportsFocusRing(const RenderStyle&) const override;
int baselinePosition(const RenderBox&) const override;
// A method asking if the control changes its tint when the window has focus or not.
bool controlSupportsTints(const RenderObject&) const override;
// A general method asking if any control tinting is supported at all.
bool supportsControlTints() const override;
void adjustRepaintRect(const RenderObject&, FloatRect&) override;
// The platform selection color.
Color platformActiveSelectionBackgroundColor() const override;
Color platformInactiveSelectionBackgroundColor() const override;
Color platformActiveSelectionForegroundColor() const override;
Color platformInactiveSelectionForegroundColor() const override;
Color platformFocusRingColor() const override;
Color systemColor(CSSValueID) const override;
int minimumMenuListSize(const RenderStyle&) const override;
void adjustSliderThumbSize(RenderStyle&, Element*) const override;
#if ENABLE(DATALIST_ELEMENT)
IntSize sliderTickSize() const override;
int sliderTickOffsetFromTrackCenter() const override;
#endif
double caretBlinkInterval() const override;
bool isControlStyled(const RenderStyle&, const BorderData&, const FillLayer&, const Color&) const override;
#if 0 //ENABLE(VIDEO)
virtual String extraMediaControlsStyleSheet();
#endif
#if ENABLE(VIDEO)
String mediaControlsStyleSheet() override;
String mediaControlsScript() override;
#endif
protected:
void updateCachedSystemFontDescription(CSSValueID systemFontID, FontCascadeDescription&) const override;
bool paintCheckbox(const RenderObject&, const PaintInfo&, const IntRect&) override;
void setCheckboxSize(RenderStyle&) const override;
bool paintRadio(const RenderObject&, const PaintInfo&, const IntRect&) override;
void setRadioSize(RenderStyle&) const override;
void setButtonSize(RenderStyle&) const override;
void adjustTextFieldStyle(StyleResolver&, RenderStyle&, Element*) const override;
bool paintTextArea(const RenderObject&, const PaintInfo&, const FloatRect&) override;
void adjustTextAreaStyle(StyleResolver&, RenderStyle&, Element*) const override;
void adjustMenuListStyle(StyleResolver&, RenderStyle&, Element*) const override;
void adjustMenuListButtonStyle(StyleResolver&, RenderStyle&, Element*) const override;
void adjustProgressBarStyle(StyleResolver&, RenderStyle&, Element*) const override;
// Returns the repeat interval of the animation for the progress bar.
double animationRepeatIntervalForProgressBar(RenderProgress&) const override;
void adjustSliderTrackStyle(StyleResolver&, RenderStyle&, Element*) const override;
void adjustSliderThumbStyle(StyleResolver&, RenderStyle&, Element*) const override;
bool paintSearchField(const RenderObject&, const PaintInfo&, const IntRect&) override;
void adjustSearchFieldStyle(StyleResolver&, RenderStyle&, Element*) const override;
void adjustSearchFieldCancelButtonStyle(StyleResolver&, RenderStyle&, Element*) const override;
bool paintSearchFieldCancelButton(const RenderBox&, const PaintInfo&, const IntRect&) override;
void adjustSearchFieldDecorationPartStyle(StyleResolver&, RenderStyle&, Element*) const override;
bool paintSearchFieldDecorationPart(const RenderObject&, const PaintInfo&, const IntRect&) override;
void adjustSearchFieldResultsDecorationPartStyle(StyleResolver&, RenderStyle&, Element*) const override;
bool paintSearchFieldResultsDecorationPart(const RenderBox&, const PaintInfo&, const IntRect&) override;
#ifndef QT_NO_SPINBOX
void adjustInnerSpinButtonStyle(StyleResolver&, RenderStyle&, Element*) const override;
#endif
#if 0 //ENABLE(VIDEO)
virtual bool paintMediaFullscreenButton(const RenderObject&, const PaintInfo&, const IntRect&);
virtual bool paintMediaPlayButton(const RenderObject&, const PaintInfo&, const IntRect&);
virtual bool paintMediaMuteButton(const RenderObject&, const PaintInfo&, const IntRect&);
virtual bool paintMediaSeekBackButton(const RenderObject&, const PaintInfo&, const IntRect&);
virtual bool paintMediaSeekForwardButton(const RenderObject&, const PaintInfo&, const IntRect&);
virtual bool paintMediaSliderTrack(const RenderObject&, const PaintInfo&, const IntRect&);
virtual bool paintMediaSliderThumb(const RenderObject&, const PaintInfo&, const IntRect&);
virtual bool paintMediaCurrentTime(const RenderObject&, const PaintInfo&, const IntRect&);
virtual bool paintMediaVolumeSliderTrack(const RenderObject&, const PaintInfo&, const IntRect&);
virtual bool paintMediaVolumeSliderThumb(const RenderObject&, const PaintInfo&, const IntRect&);
virtual String formatMediaControlsCurrentTime(float currentTime, float duration) const override;
virtual String formatMediaControlsRemainingTime(float currentTime, float duration) const override;
virtual bool hasOwnDisabledStateHandlingFor(ControlPart) const { return true; }
void paintMediaBackground(QPainter*, const IntRect&) const;
double mediaControlsBaselineOpacity() const;
QColor getMediaControlForegroundColor(const RenderObject& = 0) const;
#endif
virtual void computeSizeBasedOnStyle(RenderStyle&) const = 0;
String fileListNameForWidth(const FileList*, const FontCascade&, int width, bool multipleFilesAllowed) const override;
virtual QRect inflateButtonRect(const QRect& originalRect) const;
virtual QRectF inflateButtonRect(const QRectF& originalRect) const;
virtual void computeControlRect(QStyleFacade::ButtonType, QRect& originalRect) const;
virtual void computeControlRect(QStyleFacade::ButtonType, FloatRect& originalRect) const;
virtual void setPopupPadding(RenderStyle&) const = 0;
virtual QSharedPointer<StylePainter> getStylePainter(const PaintInfo&) = 0;
bool supportsFocus(ControlPart) const;
// IntRect convertToPaintingRect(const RenderObject& inputRenderer, const RenderObject& partRenderer, IntRect partRect, const IntRect& localOffset) const;
virtual QPalette colorPalette() const;
Page* m_page;
QString m_buttonFontFamily;
};
class StylePainter {
public:
virtual ~StylePainter();
bool isValid() const { return painter; }
QPainter* painter;
protected:
StylePainter(GraphicsContext&);
private:
QBrush m_previousBrush;
bool m_previousAntialiasing;
};
}
#endif // RenderThemeQt_h
|