-
Notifications
You must be signed in to change notification settings - Fork 0
/
OptionDisplay.pas
255 lines (223 loc) · 6.71 KB
/
OptionDisplay.pas
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
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
// Copyright 2019 Navid Madani
// Distributed under GNU General Public License Version 3.0, June 29, 2007
unit OptionDisplay;
interface
uses
Winapi.Windows, Winapi.Messages,
System.SysUtils, System.Variants, System.Classes,
Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Vcl.ExtDlgs, Vcl.ExtCtrls,
RodentOptions, Vcl.Menus;
type
TOptionDisplay = class(TPanel)
private
fOption: TLabel;
fValue: TEdit;
fIncrease: TButton;
fDecrease: TButton;
fCallback: TNotifyEvent;
fOnGuideline: TNotifyEvent;
fGuideline: string;
procedure DisplayGuideline(Sender: TObject);
function GetOption: string;
function GetValue: string;
procedure SetOption(const Value: string);
procedure SetValue(const Value: string);
procedure IncValue(Sender: TObject);
procedure DecValue(Sender: TObject);
procedure NotifyChange(Sender: TObject);
function GetValueButtonWidth: Integer;
function GetMinDisplayWidth: Integer;
function GetRemoveMenu: TPopupMenu;
procedure SetRemoveMenu(const Value: TPopupMenu);
procedure SetUp(const aOption, aValue: string; LabelWidth: Integer);
public
constructor Create(const aParent: TWinControl; const aOption: ROption; LabelWidth: Integer);
reintroduce; overload;
constructor Create(const aParent: TWinControl; const aOption, aValue: string; LabelWidth: Integer);
reintroduce; overload;
procedure HighLightOn;
procedure HighLightOff;
property Option: string read GetOption write SetOption;
property Value: string read GetValue write SetValue;
property OnChange: TNotifyEvent read fCallback write fCallback;
property OnGuideline: TNotifyEvent read fOnGuideline write fOnGuideline;
property MinDisplayWidth: Integer read GetMinDisplayWidth;
property Guideline: string read fGuideline;
property RemoveMenu: TPopupMenu read GetRemoveMenu write SetRemoveMenu;
end;
implementation
uses Guidelines;
resourcestring
cStrValueField = '000000';
cStrIncDecCaption = ' - ';
const
cSmallMargin = 10;
cLargeMargin = 15;
cButtonMargin = 2;
{ TOptionDisplay }
constructor TOptionDisplay.Create(const aParent: TWinControl; const aOption: ROption; LabelWidth:
Integer);
begin
inherited Create(aParent);
Parent := aParent;
SetUp(aOption.Option, aOption.Value, LabelWidth);
end;
constructor TOptionDisplay.Create(const aParent: TWinControl; const aOption, aValue: string;
LabelWidth: Integer);
begin
inherited Create(aParent);
Parent := aParent;
SetUp(aOption, aValue, LabelWidth);
end;
procedure TOptionDisplay.DecValue(Sender: TObject);
var
IntVal: Integer;
begin
if TryStrToInt(fValue.Text, IntVal) then
begin
Dec(IntVal);
fValue.Text := IntVal.ToString;
end;
DisplayGuideline(Sender);
end;
procedure TOptionDisplay.DisplayGuideline(Sender: TObject);
begin
HighLightOn;
if Assigned(fOnGuideline) then
fOnGuideline(Self);
end;
function TOptionDisplay.GetMinDisplayWidth: Integer;
begin
Result := fOption.Width + GetValueButtonWidth + 3 * cLargeMargin;
end;
function TOptionDisplay.GetOption: string;
begin
Result := fOption.Caption;
end;
function TOptionDisplay.GetRemoveMenu: TPopupMenu;
begin
Result := fValue.PopupMenu;
end;
function TOptionDisplay.GetValue: string;
begin
Result := fValue.Text;
end;
procedure TOptionDisplay.IncValue(Sender: TObject);
var
IntVal: Integer;
begin
if TryStrToInt(fValue.Text, IntVal) then
begin
Inc(IntVal);
fValue.Text := IntVal.ToString;
end;
DisplayGuideline(Sender);
end;
function TOptionDisplay.GetValueButtonWidth: Integer;
begin
Result := Canvas.TextWidth(cStrValueField) + 2 * Canvas.TextWidth(cStrIncDecCaption) +
2 *cSmallMargin;
end;
procedure TOptionDisplay.HighLightOff;
begin
BevelKind := bkNone;
BevelInner := bvNone;
BevelWidth := 1;
end;
procedure TOptionDisplay.HighLightOn;
begin
BevelKind := bkTile;
BevelInner := bvLowered;
BevelWidth := 2;
end;
procedure TOptionDisplay.NotifyChange(Sender: TObject);
begin
if Assigned(fCallback) then
fCallback(Self);
end;
procedure TOptionDisplay.SetOption(const Value: string);
begin
fOption.Caption := Value;
end;
procedure TOptionDisplay.SetRemoveMenu(const Value: TPopupMenu);
begin
fValue.PopupMenu := Value;
fOption.PopupMenu := Value;
if Assigned(fIncrease) then
fIncrease.PopupMenu := Value;
if Assigned(fDecrease) then
fDecrease.PopupMenu := Value;
end;
procedure TOptionDisplay.SetUp(const aOption, aValue: string; LabelWidth: Integer);
var
IntVal: Integer;
lValue: string;
begin
fGuideline := gGuidelines.Guideline[aOption];
OnClick := DisplayGuideline;
// Handle missing defauls
if aValue.IsEmpty then
begin
if aOption.Contains('BookFile') then
lValue := ''
else
lValue := '0';
end
else
lValue := aValue;
fOption := TLabel.Create(Self);
fOption.Parent := Self;
fOption.AutoSize := False;
fOption.Width := LabelWidth;
fOption.Left := cLargeMargin;
fOption.Caption := aOption;
fOption.Font := Font;
fOption.OnClick := DisplayGuideline;
Height := fOption.Height + 2 * cSmallMargin;
fOption.Top := (Height - Canvas.TextHeight(aOption)) div 2;
if TryStrToInt(lValue, IntVal) then
begin
fDecrease := TButton.Create(Self);
fDecrease.Parent := Self;
fDecrease.Caption := '-';
fDecrease.Width := Canvas.TextWidth(cStrIncDecCaption) + cButtonMargin;
fDecrease.Top := Height - (cSmallMargin + fDecrease.Height);
fDecrease.Left := fOption.Left + fOption.Width + cLargeMargin;
fDecrease.OnClick := DecValue;
fDecrease.Font := Font;
fValue := TEdit.Create(Self);
fValue.Parent := Self;
fValue.Top := Height - (cSmallMargin + fValue.Height);
fValue.Left := fDecrease.Left + fDecrease.Width + cSmallMargin;
fValue.Width := Canvas.TextWidth(cStrValueField);
fValue.Text := lValue;
fValue.Font := Font;
fValue.OnChange := NotifyChange;
fValue.OnClick := DisplayGuideline;
fIncrease := TButton.Create(Self);
fIncrease.Parent := Self;
fIncrease.Caption := '+';
fIncrease.Width := Canvas.TextWidth(cStrIncDecCaption) + cButtonMargin;
fIncrease.Top := Height - (cSmallMargin + fIncrease.Height);
fIncrease.Left := fValue.Left + fValue.Width + cSmallMargin;
fIncrease.OnClick := IncValue;
fIncrease.Font := Font;
end
else
begin
fValue := TEdit.Create(Self);
fValue.Parent := Self;
fValue.Top := Height - (cSmallMargin + fValue.Height);
fValue.Left := fOption.Left + fOption.Width + cLargeMargin;
fValue.Text := lValue;
fValue.Font := Font;
fValue.Width := GetValueButtonWidth;
fValue.OnChange := NotifyChange;
fValue.OnClick := DisplayGuideline;
end;
end;
procedure TOptionDisplay.SetValue(const Value: string);
begin
fValue.Text := Value;
end;
end.