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
209
|
{
fpGUI - Free Pascal GUI Library
Copyright (C) 2006 - 2007 See the file AUTHORS.txt, included in this
distribution, for details of the copyright.
See the file COPYING.modifiedLGPL, included in this distribution,
for details about redistributing fpGUI.
This program 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.
Description:
This is where all style related types should be defined. The base
Style class should also be defined here.
This is still work in progress!
}
unit gui_style;
{$mode objfpc}{$H+}
interface
uses
Classes,
SysUtils,
gfxbase,
fpgfx,
gfx_widget;
type
TfpgPrimitiveElement = (
peFocusRectangle, // The focus rectangle
pePanel, // Generic bevel of a panel
pePanelButtonBevel, // The bevel of a button
pePanelEditBox, // Frame around a text edit box
peFrameMenu, // Frame for popup windows and menus
pePanelMenuBar, // The menu bar panel
pePanelScrollAreaCorner, // Panel at the bottom right corner of the scroll area
peFrameDefaultButton, // Frame around a default button like in a dialog
peFramePageControl, // Frame for a Page Control
peIndicatorArrowUp, // Generic up arrow
peIndicatorArrowDown, // Generic down arrow
peIndicatorArrowRight, // Generic right arrow
peIndicatorArrowLeft, // Generic left arrow
peIndicatorCheckBox, // On/off indicator used in a CheckBox
peIndicatorRadioButton, // Exclusive on indicator used in a Radio Button
peIndicatorHeaderArrow, // Indicator used in List or Tabel header to show sorting
peIndicatorMenuCheckMark, // Check mark used in menus
peIndicatorProgressBar // Body section of a Progress Bar
);
TfpgControlElement = (
cePushButton, // The Bevel, Label and FocusRect
cePushButtonBevel,
cePushButtonLabel,
ceRadioButton, // Indicator, FocusRect and Label
ceRadioButtonLabel,
ceCheckBox, // Indicator, FocusRect and Label
ceCheckBoxLabel,
ceMenuItem,
ceMenuBarItem,
ceMenuBarEmptyArea,
ceMenuTearOff,
ceMenuHMargin,
ceMenuVMargin,
ceProgressBar,
cePageControlTab, // Both the Shape and Label
cePageControlShape,
cePageControlLabel
);
TfpgStyleOptionEnum = (
soDefault,
soFocusRect,
soButton,
soComboBox,
soCheckBox,
soMenuItem,
soTrackBar,
soPanel,
soComplex
);
TfpgStateItem = (
stNone,
stActive,
stReadOnly,
stSelected,
stRaised,
stLowered,
stHasFocus,
stEnabled
);
TfpgState = set of TfpgStateItem;
// Just a data class
TfpgStyleOption = class(TObject)
private
FRect: TfpgRect;
FState: TfpgState;
FStyleOption: TfpgStyleOptionEnum;
public
property StyleOption: TfpgStyleOptionEnum read FStyleOption write FStyleOption;
property Rect: TfpgRect read FRect write FRect;
property State: TfpgState read FState write FState;
end;
TfpgButtonFeatures = set of (bfNone, bfFlat, bfDefault);
// Button specific options
TfpgButtonStyleOption = class(TfpgStyleOption)
private
FButtonFeatures: TfpgButtonFeatures;
public
property ButtonFeatures: TfpgButtonFeatures read FButtonFeatures write FButtonFeatures;
end;
TfpgBaseStyle = class(TObject)
public
procedure DrawControl(element: TfpgControlElement; const option: TfpgStyleOption; canvas: TfpgCanvas; widget: TfpgWidget = nil); virtual; abstract;
procedure DrawPrimitive(element: TfpgPrimitiveElement; const option: TfpgStyleOption; canvas: TfpgCanvas; widget: TfpgWidget = nil); virtual; abstract;
end;
//-----------------------------------------
// The classes below will be better placed in their own units!
// This class encapsulates the common look and feel of the GUI
TfpgCommonStyle = class(TfpgBaseStyle)
public
procedure DrawControl(element: TfpgControlElement; const option: TfpgStyleOption; canvas: TfpgCanvas; widget: TfpgWidget=nil); override;
procedure DrawPrimitive(element: TfpgPrimitiveElement; const option: TfpgStyleOption; canvas: TfpgCanvas; widget: TfpgWidget=nil); override;
end;
// The Windows 2000 look
TfpgWin2000Style = class(TfpgCommonStyle)
end;
TfpgWinXPStyle = class(TfpgCommonStyle)
end;
// This class provides a widgte style similar to the classic BlueCurve theme
// originally created by Red Hat.
TfpgBluecurveStyle = class(TfpgCommonStyle)
end;
// This class provides a widget style similar to GNOME
TfpgClearLookStyle = class(TfpgCommonStyle)
end;
// For the die-hard unix fans!
TfpgMotifStyle = class(TfpgCommonStyle)
end;
implementation
{ TfpgCommonStyle }
procedure TfpgCommonStyle.DrawControl(element: TfpgControlElement;
const option: TfpgStyleOption; canvas: TfpgCanvas; widget: TfpgWidget);
begin
// Do common things here
end;
procedure TfpgCommonStyle.DrawPrimitive(element: TfpgPrimitiveElement;
const option: TfpgStyleOption; canvas: TfpgCanvas; widget: TfpgWidget);
begin
// Do common things here. It's going to be a huge case statement. This design
// allows us to add new controls or elements without having to instantly
// implement them in all descendant classes!
case element of
peFocusRectangle:
begin
canvas.DrawFocusRect(option.Rect);
end;
peIndicatorRadioButton:
begin // just an example!!!!!!!!
canvas.SetColor(clShadow1);
canvas.DrawArc(option.Rect.Left, option.Rect.Top, option.Rect.Width, option.Rect.Height, 0, 180);
canvas.SetColor(clHilite1);
canvas.DrawArc(option.Rect.Left, option.Rect.Top, option.Rect.Width, option.Rect.Height, 180, 0);
end;
end;
end;
end.
|