2 * Copyright (C) 2010 Google Inc. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are
8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following disclaimer
12 * in the documentation and/or other materials provided with the
14 * * Neither the name of Google Inc. nor the names of its
15 * contributors may be used to endorse or promote products derived from
16 * this software without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 #ifndef WebThemeEngine_h
32 #define WebThemeEngine_h
34 #include "WebCanvas.h"
42 class WebThemeEngine
{
44 // The current state of the associated Part.
54 // The UI part which is being accessed.
56 // ScrollbarTheme parts
57 PartScrollbarDownArrow
,
58 PartScrollbarLeftArrow
,
59 PartScrollbarRightArrow
,
61 PartScrollbarHorizontalThumb
,
62 PartScrollbarVerticalThumb
,
63 PartScrollbarHorizontalTrack
,
64 PartScrollbarVerticalTrack
,
79 // Extra parameters for drawing the PartScrollbarHorizontalTrack and
80 // PartScrollbarVerticalTrack.
81 struct ScrollbarTrackExtraParams
{
82 bool isBack
; // Whether this is the 'back' part or the 'forward' part.
84 // The bounds of the entire track, as opposed to the part being painted.
91 // Extra parameters for PartCheckbox, PartPushButton and PartRadio.
92 struct ButtonExtraParams
{
94 bool indeterminate
; // Whether the button state is indeterminate.
95 bool isDefault
; // Whether the button is default button.
97 WebColor backgroundColor
;
100 // Extra parameters for PartTextField
101 struct TextFieldExtraParams
{
104 WebColor backgroundColor
;
107 // Extra parameters for PartMenuList
108 struct MenuListExtraParams
{
110 bool hasBorderRadius
;
114 WebColor backgroundColor
;
115 bool fillContentArea
;
118 // Extra parameters for PartSliderTrack and PartSliderThumb
119 struct SliderExtraParams
{
124 // Extra parameters for PartInnerSpinButton
125 struct InnerSpinButtonExtraParams
{
130 // Extra parameters for PartProgressBar
131 struct ProgressBarExtraParams
{
140 ScrollbarTrackExtraParams scrollbarTrack
;
141 ButtonExtraParams button
;
142 TextFieldExtraParams textField
;
143 MenuListExtraParams menuList
;
144 SliderExtraParams slider
;
145 InnerSpinButtonExtraParams innerSpin
;
146 ProgressBarExtraParams progressBar
;
149 // Gets the size of the given theme part. For variable sized items
150 // like vertical scrollbar thumbs, the width will be the required width of
151 // the track while the height will be the minimum height.
152 virtual WebSize
getSize(Part
) { return WebSize(); }
153 // Paint the given the given theme part.
154 virtual void paint(WebCanvas
*, Part
, State
, const WebRect
&, const ExtraParams
*) { }