-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeneralcssunit1.pas
511 lines (430 loc) · 14.7 KB
/
generalcssunit1.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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
{==============================================================================}
{ Copyright (c) 2010, 2011, 2012 by Donald R. Ziesig. All Rights Reserved. }
{==============================================================================}
{ This file is part of MagicWebsiteBuilder. }
{ }
{ MagicWebsiteBuilder is free software: you can redistribute it and/or modify }
{ it under the terms of the GNU General Public License as published by }
{ the Free Software Foundation, either version 3 of the License, or }
{ (at your option) any later version. }
{ }
{ MagicWebsiteBuilder 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 General Public License for more details. }
{ }
{ You should have received a copy of the GNU General Public License }
{ along with MagicWebsiteBuilder in file COPYING. If not, see }
{ <http://www.gnu.org/licenses/>. }
{==============================================================================}
unit GeneralCSSUnit1;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils,
Persists1, TextIO1, WebsiteRootUnit1;
type
{ TGeneralCSSData }
TGeneralCSSData = class( TWebsiteRoot )
private
procedure SetBarColor(const AValue: Integer);
procedure SetBorderColor(const AValue: Integer);
procedure SetBorderSize(const AValue: Integer);
procedure SetBottomSize(const AValue: Integer);
procedure SetCustomCSS(const AValue: String);
procedure SetDDTop(const AValue: Integer);
procedure SetDDWidth(const AValue: Integer);
procedure SetEvenSpacingBoxWidth(const AValue: Integer);
procedure SetHorizPosition(const AValue: THorizontalPositioning);
procedure SetLeftSize(const AValue: Integer);
procedure SetRightSize(const AValue: Integer);
procedure SetSeparator(const AValue: Integer);
procedure SetSepSize(const AValue: Integer);
procedure SetTopSize(const AValue: Integer);
procedure SetZIndex(const AValue: Integer);
protected
fBarColor : Integer;
fBorderSize : Integer;
fSeparator : Integer;
fSepSize : Integer;
fCustomCSS : String;
fBorderColor : Integer;
fTopSize : Integer;
fBottomSize : Integer;
fLeftSize : Integer;
fRightSize : Integer;
fZIndex : Integer;
fHorizPosition : THorizontalPositioning;
fEvenSpacingBoxWidth : Integer;
fDDTop : Integer;
fDDWidth : Integer;
procedure BuildVarList; override;
function GetBarCSS : String;
function GetName : String;
function GetZIndexStr : String;
function MenuBarBottomCSS : String;
function MenuBarTopCSS : String;
function MenuBarLeftCSS : String;
function MenuBarRightCSS : String;
function MenuFloatCSS : String;
function BarBorderBottomSize : Integer;
function BarBorderTopSize : Integer;
function BarBorderLeftSize : Integer;
function BarBorderRightSize : Integer;
function BarBorderColor : Integer;
function DisplayBlockCSS : String;
function GetSeparator : String;
function DropDownTopCSS : String;
function DropDownWidthCSS : String;
function DropDownArrowPos : String;
function GetBorderSize : String;
function MainMenuPaddingCSS : String;
function EvenSpacingBoxWidthCSS : String;
function HorizontalPositioningCSS : String;
function MainMenuDropDownPaddingCSS : String;
function UseDownArrowImage : Boolean;
public
procedure MakeNew; override;
procedure Save( TextIO : TTextIO ); override;
procedure Read( TextIO : TTextIO; Version : Integer ); override;
property BarColor : Integer read fBarColor write SetBarColor;
property BorderSize : Integer read fBorderSize write SetBorderSize;
property Separator : Integer read fSeparator write SetSeparator;
property SepSize : Integer read fSepSize write SetSepSize;
property CustomCSS : String read fCustomCSS write SetCustomCSS;
property BorderColor : Integer read fBorderColor write SetBorderColor;
property TopSize : Integer read fTopSize write SetTopSize;
property BottomSize : Integer read fBottomSize write SetBottomSize;
property LeftSize : Integer read fLeftSize write SetLeftSize;
property RightSize : Integer read fRightSize write SetRightSize;
property ZIndex : Integer read fZIndex write SetZIndex;
property HorizPosition : THorizontalPositioning read fHorizPosition write SetHorizPosition;
property EvenSpacingBoxWidth : Integer read fEvenSpacingBoxWidth write SetEvenSpacingBoxWidth;
property DDTop : Integer read fDDTop write SetDDTop;
property DDWidth : Integer read fDDWidth write SetDDWidth;
end;
implementation
uses
ObjectFactory1, Common1, MenuCSSUnit1;
{ TGeneralCSSData }
const
Version = 1;
procedure TGeneralCSSData.SetBarColor(const AValue: Integer);
begin
Update(fBarColor,AValue );
end;
procedure TGeneralCSSData.SetBorderColor(const AValue: Integer);
begin
Update(fBorderColor,AValue );
end;
procedure TGeneralCSSData.SetBorderSize(const AValue: Integer);
begin
Update(fBorderSize,AValue );
end;
procedure TGeneralCSSData.SetBottomSize(const AValue: Integer);
begin
Update(fBottomSize,AValue );
end;
procedure TGeneralCSSData.SetCustomCSS(const AValue: String);
begin
Update(fCustomCSS,AValue );
end;
procedure TGeneralCSSData.SetDDTop(const AValue: Integer);
begin
Update(fDDTop,AValue );
end;
procedure TGeneralCSSData.SetDDWidth(const AValue: Integer);
begin
Update(fDDWidth,AValue );
end;
procedure TGeneralCSSData.SetEvenSpacingBoxWidth(const AValue: Integer);
begin
Update(fEvenSpacingBoxWidth,AValue );
end;
procedure TGeneralCSSData.SetHorizPosition(const AValue: THorizontalPositioning);
begin
if fHorizPosition <> AValue then
begin
Modify; // fModified := true;
fHorizPosition := AValue;
end;
end;
procedure TGeneralCSSData.SetLeftSize(const AValue: Integer);
begin
Update(fLeftSize,AValue );
end;
procedure TGeneralCSSData.SetRightSize(const AValue: Integer);
begin
Update(fRightSize,AValue );
end;
procedure TGeneralCSSData.SetSeparator(const AValue: Integer);
begin
Update(fSeparator,AValue );
end;
procedure TGeneralCSSData.SetSepSize(const AValue: Integer);
begin
Update(fSepSize,AValue );
end;
procedure TGeneralCSSData.SetTopSize(const AValue: Integer);
begin
Update(fTopSize,AValue );
end;
procedure TGeneralCSSData.SetZIndex(const AValue: Integer);
begin
Update(fZIndex,AValue );
end;
function TGeneralCSSData.UseDownArrowImage: Boolean;
begin
Result := False; { todo -oDonz : implement TGeneralCSSData.UseDownArrowImage }
end;
function TGeneralCSSData.BarBorderBottomSize: Integer;
begin
Result := fBottomSize;
end;
function TGeneralCSSData.BarBorderColor: Integer;
begin
Result := fBorderColor;
end;
function TGeneralCSSData.BarBorderLeftSize: Integer;
begin
Result := fLeftSize;
end;
function TGeneralCSSData.BarBorderRightSize: Integer;
begin
Result := fRightSize;
end;
function TGeneralCSSData.BarBorderTopSize: Integer;
begin
Result := fTopSize;
end;
procedure TGeneralCSSData.BuildVarList;
begin
inherited;
VarList.AddFunction('BarCSS', @GetBarCSS);
VarList.AddFunction('MenuBarTopCSS', @MenuBarTopCSS);
VarList.AddFunction('MenuBarBottomCSS', @MenuBarBottomCSS);
VarList.AddFunction('MenuBarLeftCSS', @MenuBarLeftCSS);
VarList.AddFunction('MenuBarRightCSS', @MenuBarRightCSS);
VarList.AddFunction('MenuName', @GetName);
VarList.AddFunction('ZIndex', @GetZIndexStr);
VarList.AddFunction('DisplayBlock', @DisplayBlockCSS);
VarList.AddFunction('Separator', @GetSeparator);
VarList.AddFunction('DropDownTop', @DropDownTopCSS);
VarList.AddFunction('DropDownWidth', @DropDownWidthCSS);
VarList.AddFunction('DropDownArrowPos', @DropDownArrowPos);
VarList.AddFunction('BorderSize', @GetBorderSize);
VarList.AddFunction('MainMenuPadding', @MainMenuPaddingCSS);
VarList.AddFunction('EvenSpacingBoxWidth', @EvenSpacingBoxWidthCSS);
VarList.AddFunction('MainMenuTextAlign', @HorizontalPositioningCSS);
VarList.AddFunction('MainMenuDropDownPadding', @MainMenuDropDownPaddingCSS);
VarList.AddFunction('MenuFloat', @MenuFloatCSS);
end;
function TGeneralCSSData.DisplayBlockCSS: String;
begin
if fHorizPosition = hpEven then
Result := 'display:block;'
else
Result := '';
end;
function TGeneralCSSData.DropDownArrowPos: String;
begin
Result := IntToStr( fDDWidth - 10 );
end;
function TGeneralCSSData.DropDownTopCSS: String;
begin
Result := IntToStr( fDDTop );
end;
function TGeneralCSSData.DropDownWidthCSS: String;
begin
Result := IntToStr( fDDWidth );
end;
function TGeneralCSSData.EvenSpacingBoxWidthCSS: String;
begin
Result := IntToStr( fEvenSpacingBoxWidth );
end;
function TGeneralCSSData.GetBarCSS: String;
begin
Result := fCustomCSS;
end;
function TGeneralCSSData.GetBorderSize: String;
begin
Result := IntToStr( fBorderSize );
end;
function TGeneralCSSData.GetName: String;
begin
Result := fName;
end;
function TGeneralCSSData.GetSeparator: String;
begin
case TBarSeparatorStyle(fSeparator) of
bssNone : Result := '';
bssLeft : Result := 'border-left : ' + IntToStr(fSepSize) + 'px solid #' +
CSSColor(TMenuCSSData(FMenu).MainUnselectedTextColor) + ';';
bssRight : Result := 'border-right : ' + IntToStr(fSepSize) + 'px solid #' +
CSSColor(TMenuCSSData(FMenu).MainUnselectedTextColor) + ';';
end;
end;
function TGeneralCSSData.GetZIndexStr: String;
begin
Result := IntToStr(fZIndex);
end;
function TGeneralCSSData.HorizontalPositioningCSS: String;
begin
case THorizontalPositioning(fHorizPosition) of
hpLeft: Result := 'left';
hpRight:
{ if MenuPosition = mpHorizontal then }{ todo -oDonz : implement vertical menus }
Result := 'right'
{ else
Result := 'left'} ;
hpCentered: Result := 'left';
hpEven: Result := 'left';
end;
end;
function TGeneralCSSData.MainMenuDropDownPaddingCSS: String;
begin
case THorizontalPositioning(fHorizPosition) of
hpLeft: result := '0px 7px 0px 7px';
hpRight:
{ if MenuPosition = mpHorizontal then }
Result := '0px 7px 0px 7px'
{ else
Result := '0px 7px 0px 7px'};
hpCentered: result := '0px 5px 0px 5px' ;
hpEven:
if UseDownArrowImage then
result := '0px 2px 0px 11px'
else
result := '0px 1px 0px 1px';
end;
end;
function TGeneralCSSData.MainMenuPaddingCSS: String;
begin
case THorizontalPositioning(fHorizPosition) of
hpLeft: result := '0px 7px 0px 7px';
hpRight:
{ if MenuPosition = mpHorizontal then }
Result := '0px 7px 0px 7px'
{ else
Result := '0px 7px 0px 7px'};
hpCentered: result := Format('0px %dpx 0px %dpx',[fEvenSpacingBoxWidth,fEvenSpacingBoxWidth+1]) ;
hpEven: result := '0px 5px 0px 5px';
end;
end;
procedure TGeneralCSSData.MakeNew;
begin
inherited MakeNew;
fBarColor := $ffffff;
fBorderSize := 0;
fSeparator := 0;
fSepSize := 0;
fCustomCSS := '';
fBorderColor := $000000;
fTopSize := 0;
fBottomSize := 0;
fLeftSize := 0;
fRightSize := 0;
fZIndex := 0;
fHorizPosition := hpCentered;
fEvenSpacingBoxWidth := 0;
fDDTop := 0;
fDDWidth := 120;
end;
procedure TGeneralCSSData.Save(TextIO: TTextIO);
begin
SaveHeader( TextIO, Version );
TextIO.WriteLn( fBarColor );
TextIO.WriteLn( fBorderSize );
TextIO.WriteLn( fSeparator );
TextIO.WriteLn( fSepSize );
TextIO.WriteLn( fCustomCSS );
TextIO.WriteLn( fBorderColor );
TextIO.WriteLn( fTopSize );
TextIO.WriteLn( fBottomSize );
TextIO.WriteLn( fLeftSize );
TextIO.WriteLn( fRightSize );
TextIO.WriteLn( fZIndex );
TextIO.WriteLn( ord(fHorizPosition) );
TextIO.WriteLn( fEvenSpacingBoxWidth );
TextIO.WriteLn( fDDTop );
TextIO.WriteLn( fDDWidth );
UNMODIFY;
SaveTrailer( TextIO );
end;
procedure TGeneralCSSData.Read(TextIO: TTextIO; Version: Integer);
var
Temp : Integer;
begin
MakeNew;
if Version >= 1 then
begin
TextIO.ReadLn( fBarColor );
TextIO.ReadLn( fBorderSize );
TextIO.ReadLn( fSeparator );
TextIO.ReadLn( fSepSize );
TextIO.ReadLn( fCustomCSS );
TextIO.ReadLn( fBorderColor );
TextIO.ReadLn( fTopSize );
TextIO.ReadLn( fBottomSize );
TextIO.ReadLn( fLeftSize );
TextIO.ReadLn( fRightSize );
TextIO.ReadLn( fZIndex );
TextIO.ReadLn( Temp );
fHorizPosition := THorizontalPositioning( Temp );
TextIO.ReadLn( fEvenSpacingBoxWidth );
TextIO.ReadLn( fDDTop );
TextIO.ReadLn( fDDWidth );
end;
end;
function TGeneralCSSData.MenuBarBottomCSS: String;
begin
if BarBorderBottomSize > 0 then
Result := '.'+Name+'_bar {border-bottom-width : '+ IntToStr(BarBorderBottomSize)+
'px; border-bottom-style : solid; border-bottom-color : #' +
IntToHex(BarBorderColor,6) +'; }'
else
Result := '';
end;
function TGeneralCSSData.MenuBarLeftCSS: String;
begin
if BarBorderLeftSize > 0 then
Result := '.'+Name+'_bar {border-left-width : '+ IntToStr(BarBorderLeftSize)+
'px; border-left-style : solid; border-Left-color : #' +
IntToHex(BarBorderColor,6) +'; }'
else
Result := '';
end;
function TGeneralCSSData.MenuBarRightCSS: String;
begin
if BarBorderRightSize > 0 then
Result := '.'+Name+'_bar {border-right-width : '+ IntToStr(BarBorderRightSize)+
'px; border-right-style : solid; border-Right-color : #' +
IntToHex(BarBorderColor,6) +'; }'
else
Result := '';
end;
function TGeneralCSSData.MenuBarTopCss: String;
begin
if BarBordertopSize > 0 then
Result := '.'+Name+'_bar {border-top-width : '+ IntToStr(BarBordertopSize)+
'px; border-top-style : solid; border-top-color : #' +
IntToHex(BarBorderColor,6) +'; }'
else
Result := '';
end;
function TGeneralCSSData.MenuFloatCSS: String;
begin
case fHorizPosition of
hpLeft: Result := 'left';
hpRight:
{ if MenuPosition = mpHorizontal then }
Result := 'right'
{ else
Result := 'left' };
hpCentered: Result := 'left';
hpEven: Result := 'left';
end;
end;
initialization
ObjectFactory.RegisterClass( TGeneralCSSData.ClassType );
end.