forked from zsdwxm/KernowSoftwareFMX
-
Notifications
You must be signed in to change notification settings - Fork 7
/
ksSlideMenu.pas
1261 lines (1090 loc) · 35.8 KB
/
ksSlideMenu.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
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{*******************************************************************************
* *
* TksSlideMenu - Slide Menu Component *
* *
* https://github.com/gmurt/KernowSoftwareFMX *
* *
* Copyright 2015 Graham Murt *
* *
* email: [email protected] *
* *
* Licensed under the Apache License, Version 2.0 (the "License"); *
* you may not use this file except in compliance with the License. *
* You may obtain a copy of the License at *
* *
* http://www.apache.org/licenses/LICENSE-2.0 *
* *
* Unless required by applicable law or agreed to in writing, software *
* distributed under the License is distributed on an "AS IS" BASIS, *
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. *
* See the License for the specific language governing permissions and *
* limitations under the License. *
* *
*******************************************************************************}
unit ksSlideMenu;
interface
{$I ksComponents.inc}
//{$DEFINE ADD_SAMPLE_MENU_ITEMS}
uses System.UITypes, FMX.Controls, FMX.Layouts, FMX.Objects, System.Classes,
FMX.Types, Generics.Collections, FMX.Graphics, System.UIConsts, FMX.Effects,
FMX.StdCtrls, System.Types, FMX.Forms, ksTableView, ksTypes
{$IFDEF XE8_OR_NEWER}
,FMX.ImgList
{$ENDIF}
;
const
C_DEFAULT_MENU_WIDTH = 250;
C_DEFAULT_MENU_TOOLBAR_HEIGHT = 44;
C_DEFAULT_MENU_HEADER_HEIGHT = 30;
C_DEFAULT_MENU_HEADER_FONT_SIZE = 16;
C_DEFAULT_MENU_HEADER_TEXT_COLOR = claWhite;
C_DEFAULT_MENU_HEADER_COLOR = $FF323232;
C_DEFAULT_MENU_ITEM_HEIGHT = 50;
C_DEFAULT_MENU_FONT_SIZE = 14;
C_DEFAULT_MENU_TOOLBAR_FONT_SIZE = 14;
C_DEFAULT_MENU_SLIDE_SPEED = 0.2;
C_DEFAULT_MENU_SELECTED_COLOR = claWhite;
C_DEFAULT_MENU_SELECTED_FONT_COLOR = claWhite;
C_DEFAULT_MENU_FONT_COLOR = claBlack;
C_DEFAULT_MENU_BACKGROUND_COLOR = claWhite;
C_DEFAULT_MENU_TOOLBAR_COLOR = claWhite;
type
TSelectMenuItemEvent = procedure(Sender: TObject; AId: string) of object;
TksMenuPosition = (mpLeft, mpRight);
TKsMenuStyle = (msOverlap, msReveal);
TKsMenuTheme = (mtCustom, mtDarkGray, mtDarkBlue, mtDarkOrange, mtDarkGreen, mtLightGray, mtLightBlue, mtLightOrange, mtLightGreen);
TksSlideMenu = class;
TksSlideMenuItem = class
strict private
FText: string;
FId: string;
FFont: TFont;
FImage: TBitmap;
FHeight: integer;
FIndex: integer;
FIsHeader: Boolean;
public
constructor Create(AIndex: integer); virtual;
destructor Destroy; override;
property Height: integer read FHeight write FHeight;
property Index: integer read FIndex;
property Font: TFont read FFont write FFont;
property Image: TBitmap read FImage write FImage;
property ID: string read FId write FId;
property Text: string read FText write FText;
property IsHeader: Boolean read FIsHeader write FIsHeader;
end;
TksSlideMenuItems = class(TObjectList<TksSlideMenuItem>)
private
function AddMenuItem(AId, AText: string; AImage: TBitmap): TksSlideMenuItem;
function AddHeaderItem(AText: string): TksSlideMenuItem;
end;
TksSlideMenuAppearence = class(TPersistent)
private
[weak]FSlideMenu: TksSlideMenu;
FHeaderColor: TAlphaColor;
FHeaderFontColor: TAlphaColor;
FItemColor: TAlphaColor;
FFontColor: TAlphaColor;
FSelectedColor: TAlphaColor;
FSelectedFontColor: TAlphaColor;
FTheme: TKsMenuTheme;
FToolBarColor: TAlphaColor;
FAccessoryColor: TAlphaColor;
procedure SetHeaderColor(const Value: TAlphaColor);
procedure SetHeaderFontColor(const Value: TAlphaColor);
procedure SetItemColor(const Value: TAlphaColor);
procedure SetFontColor(const Value: TAlphaColor);
procedure SetSelectedColor(const Value: TAlphaColor);
procedure SetSelectedFontColor(const Value: TAlphaColor);
procedure SetTheme(const Value: TKsMenuTheme);
procedure SetToolBarColor(const Value: TAlphaColor);
procedure SetAccessoryColor(const Value: TAlphaColor);
public
constructor Create(ASlideMenu: TksSlideMenu); virtual;
published
property AccessoryColor: TAlphaColor read FAccessoryColor write SetAccessoryColor default claWhite;
property HeaderColor: TAlphaColor read FHeaderColor write SetHeaderColor default C_DEFAULT_MENU_HEADER_COLOR;
property HeaderFontColor: TAlphaColor read FHeaderFontColor write SetHeaderFontColor default C_DEFAULT_MENU_HEADER_TEXT_COLOR;
property ItemColor: TAlphaColor read FItemColor write SetItemColor default $FF222222;
property FontColor: TAlphaColor read FFontColor write SetFontColor default claWhite;
property SelectedItemColor: TAlphaColor read FSelectedColor write SetSelectedColor default claRed;
property SelectedFontColor: TAlphaColor read FSelectedFontColor write SetSelectedFontColor default claWhite;
property ToolBarColor: TAlphaColor read FToolBarColor write SetToolBarColor default $FF323232;
property Theme: TKsMenuTheme read FTheme write SetTheme default mtDarkGray;
end;
TksSlideMenuToolbar = class(TPersistent)
private
[weak]FSlideMenu: TksSlideMenu;
FHeader: TImage;
FBitmap: TBitmap;
FText: string;
FFont: TFont;
FVisible: Boolean;
FHeight: integer;
procedure SetFont(const Value: TFont);
procedure SetBitmap(const Value: TBitmap);
function GetBitmap: TBitmap;
function GetFont: TFont;
function GetText: string;
procedure SetText(const Value: string);
public
constructor Create(AOwner: TComponent; ASlideMenu: TksSlideMenu); virtual;
destructor Destroy; override;
procedure UpdateToolbar;
property Height: integer read FHeight default C_DEFAULT_MENU_TOOLBAR_HEIGHT;
published
property Bitmap: TBitmap read GetBitmap write SetBitmap;
property Visible: Boolean read FVisible write FVisible default True;
property Text: string read GetText write SetText;
property Font: TFont read GetFont write SetFont;
end;
TksSlideMenuContainer = class(TLayout)
private
[weak]FSlideMenu: TksSlideMenu;
FToolBar: TksSlideMenuToolbar;
FListView: TksTableView;
procedure CreateListView;
function CalculateListViewHeight: single;
procedure ItemClick(Sender: TObject; x, y: single; AItem: TksTableViewItem; AId: string; ARowObj: TksTableViewItemObject);
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
property ListView: TksTableView read FListView;
end;
[ComponentPlatformsAttribute(pidWin32 or pidWin64 or
{$IFDEF XE8_OR_NEWER} pidiOSDevice32 or pidiOSDevice64
{$ELSE} pidiOSDevice {$ENDIF} or pidiOSSimulator or pidAndroid)]
TksSlideMenu = class(TksComponent)
strict private
FAppearence: TksSlideMenuAppearence;
FMenu: TksSlideMenuContainer;
FItems: TksSlideMenuItems;
{$IFNDEF ANDROID}
FShadowLeft: TImage;
FShadowRight: TImage;
{$ENDIF}
FBackground: TRectangle;
FFormImage: TImage;
FMenuImage: TImage;
FFont: TFont;
FHeaderFont: TFont;
FShowing: Boolean;
FTopPadding: integer;
FMenuPosition: TksMenuPosition;
FMenuStyle: TKsMenuStyle;
FSlideSpeed: Single;
FOnSelectMenuItemEvent: TSelectMenuItemEvent;
FAfterSelectMenuItemEvent: TSelectMenuItemEvent;
FOnAfterSlideOut: TNotifyEvent;
FOnBeforeSlideOut: TNotifyEvent;
{$IFDEF XE8_OR_NEWER}
FImages: TCustomImageList;
{$ENDIF}
FHeaderHeight: integer;
FItemHeight: integer;
FToggleButton: TCustomButton;
FAnimating: Boolean;
FHeaderTextAlign: TTextAlign;
FItemTextAlign: TTextAlign;
FSelectFirstItem: Boolean;
procedure SetTopPadding(const Value: integer);
procedure DoBackgroundClick(Sender: TObject);
//procedure FadeBackground;
//procedure UnfadeBackground;
procedure GenerateFormImage(AXpos: single);
procedure RemoveFormImage;
{$IFNDEF ANDROID}
procedure GenerateShadows;
{$ENDIF}
procedure HidePickers;
procedure SetToggleButton(const Value: TCustomButton);
procedure DoToggleButtonClick(Sender: TObject);
private
FMenuIndex: integer;
procedure MenuItemSelected(Sender: TObject; x, y: single; AItem: TksTableViewItem; AId: string; ARowObj: TksTableViewItemObject);
//procedure SetItemIndex(const Value: integer);
procedure SwitchMenuToImage;
procedure SwitchImageToMenu;
function GetToolbar: TksSlideMenuToolbar;
function GetToolbarHeight: integer;
procedure SetToolbar(const Value: TksSlideMenuToolbar);
procedure SetMenuIndex(const Value: integer);
function GetMenuItemCount: integer;
function GetColorOrDefault(AColor, ADefaultIfNull: TAlphaColor): TAlphaColor;
protected
procedure Notification(AComponent: TComponent; Operation: TOperation); override;
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
procedure Clear;
procedure AddHeader(AText: string);
function AddMenuItem(AId, AText: string; const AImageIndex: integer = -1): TksSlideMenuItem; overload;
function AddMenuItem(AId, AText: string; AImage: TBitmap): TksSlideMenuItem; overload;
procedure ToggleMenu;
procedure UpdateMenu;
property Showing: Boolean read FShowing;
property MenuIndex: integer read FMenuIndex write SetMenuIndex;
property MenuItemCount: integer read GetMenuItemCount;
published
property Appearence: TksSlideMenuAppearence read FAppearence write FAppearence;
property Font: TFont read FFont write FFont;
property HeaderFont: TFont read FHeaderFont write FHeaderFont;
{$IFDEF XE8_OR_NEWER}
property Images: TCustomImageList read FImages write FImages;
{$ENDIF}
property ItemHeight: integer read FItemHeight write FItemHeight default C_DEFAULT_MENU_ITEM_HEIGHT;
property HeaderHeight: integer read FHeaderHeight write FHeaderHeight default C_DEFAULT_MENU_HEADER_HEIGHT;
property TopPadding: integer read FTopPadding write SetTopPadding default 0;
property MenuPosition: TksMenuPosition read FMenuPosition write FMenuPosition default mpLeft;
property MenuStyle: TKsMenuStyle read FMenuStyle write FMenuStyle default msReveal;
property SlideSpeed: Single read FSlideSpeed write FSlideSpeed;
property OnSelectMenuItemEvent: TSelectMenuItemEvent read FOnSelectMenuItemEvent write FOnSelectMenuItemEvent;
property AfterSelectItemEvent: TSelectMenuItemEvent read FAfterSelectMenuItemEvent write FAfterSelectMenuItemEvent;
property Toolbar: TksSlideMenuToolbar read GetToolbar write SetToolbar;
property ToggleButton: TCustomButton read FToggleButton write SetToggleButton;
property OnAfterSlideOut: TNotifyEvent read FOnAfterSlideOut write FOnAfterSlideOut;
property OnBeforeSlideOut: TNotifyEvent read FOnBeforeSlideOut write FOnBeforeSlideOut;
property HeaderTextAlign: TTextAlign read FHeaderTextAlign write FHeaderTextAlign default TTextAlign.Leading;
property ItemTextAlign: TTextAlign read FItemTextAlign write FItemTextAlign default TTextAlign.Leading;
property SelectFirstItem: Boolean read FSelectFirstItem write FSelectFirstItem default True;
end;
{$R *.dcr}
procedure Register;
procedure ReplaceOpaqueColor(ABmp: TBitmap; Color : TAlphaColor);
var
SlideMenuAnimating: Boolean;
implementation
uses FMX.Platform, SysUtils, FMX.Ani, FMX.Pickers, Math,
FMX.ListView.Types, FMX.Utils, ksCommon;
procedure Register;
begin
RegisterComponents('Kernow Software FMX', [TksSlideMenu]);
end;
procedure ReplaceOpaqueColor(ABmp: TBitmap; Color : TAlphaColor);
var
x,y: Integer;
AMap: TBitmapData;
PixelColor: TAlphaColor;
PixelWhiteColor: TAlphaColor;
C: PAlphaColorRec;
begin
if ABmp.Map(TMapAccess.ReadWrite, AMap) then
try
AlphaColorToPixel(Color , @PixelColor, AMap.PixelFormat);
AlphaColorToPixel(claWhite, @PixelWhiteColor, AMap.PixelFormat);
for y := 0 to ABmp.Height - 1 do
begin
for x := 0 to ABmp.Width - 1 do
begin
C := @PAlphaColorArray(AMap.Data)[y * (AMap.Pitch div 4) + x];
if (C^.Color<>claWhite) and (C^.A>0) then
C^.Color := PremultiplyAlpha(MakeColor(PixelColor, C^.A / $FF));
end;
end;
finally
ABmp.Unmap(AMap);
end;
end;
{ TSlideMenu }
procedure TksSlideMenu.AddHeader(AText: string);
var
AResult: TksSlideMenuItem;
begin
AResult := FItems.AddHeaderItem(AText);
AResult.Font.Assign(FFont);
end;
function TksSlideMenu.AddMenuItem(AId, AText: string; AImage: TBitmap): TksSlideMenuItem;
begin
Result := FItems.AddMenuItem(AId, AText, AImage);
Result.Font.Assign(FFont);
//UpdateMenu;
end;
function TksSlideMenu.AddMenuItem(AId, AText: string; const AImageIndex: integer = -1): TksSlideMenuItem;
var
AImage: TBitmap;
ASize: TSizeF;
begin
AImage := nil;
ASize.Width := 64;
ASize.Height := 64;
{$IFDEF XE8_OR_NEWER}
if Images <> nil then
AImage := Images.Bitmap(ASize, AImageIndex);
{$ENDIF}
Result := AddMenuItem(AId, AText, AImage);
end;
procedure TksSlideMenu.Clear;
begin
FItems.Clear;
UpdateMenu;
end;
constructor TksSlideMenu.Create(AOwner: TComponent);
begin
inherited Create(AOwner);
FFont := TFont.Create;
FHeaderFont := TFont.Create;
FItems := TksSlideMenuItems.Create;
FAppearence := TksSlideMenuAppearence.Create(Self);
FMenu := TksSlideMenuContainer.Create(Self);
FFormImage := TImage.Create(Self);
FBackground := TRectangle.Create(Self);
FHeaderTextAlign := TTextAlign.Leading;
FItemTextAlign := TTextAlign.Leading;
FShowing := False;
FTopPadding := 0;
FFont.Size := C_DEFAULT_MENU_FONT_SIZE;
FHeaderFont.Size := C_DEFAULT_MENU_HEADER_FONT_SIZE;
FFormImage.OnClick := DoBackgroundClick;
FMenuPosition := mpLeft;
FMenuStyle := msReveal;
FSlideSpeed := C_DEFAULT_MENU_SLIDE_SPEED;
FHeaderHeight := C_DEFAULT_MENU_HEADER_HEIGHT;
FItemHeight := C_DEFAULT_MENU_ITEM_HEIGHT;
//FItemIndex := -1;
{$IFNDEF ANDROID}
FShadowLeft := TImage.Create(Self);
FShadowRight := TImage.Create(Self);
GenerateShadows;
FSelectFirstItem := True;
{$ENDIF}
FAnimating := False;
FMenuIndex := -1;
end;
destructor TksSlideMenu.Destroy;
begin
FreeAndNil(FFont);
FreeAndNil(FHeaderFont);
FreeAndNil(FAppearence);
FreeAndNil(FItems);
inherited;
end;
procedure TksSlideMenu.DoBackgroundClick(Sender: TObject);
begin
ToggleMenu;
end;
procedure TksSlideMenu.DoToggleButtonClick(Sender: TObject);
begin
ToggleMenu;
end;
procedure TksSlideMenu.GenerateFormImage(AXpos: single);
var
AScale: single;
ABmp: TBitmap;
AForm: TForm;
begin
AForm := (Owner as TForm);
FFormImage.Visible := false;
FMenu.Visible := False;
ABmp := TBitmap.Create;
try
AScale := GetScreenScale;
ABmp.BitmapScale := AScale;
ABmp.Width := Round(AForm.Width * AScale);
ABmp.Height := Round(AForm.Height * AScale);
ABmp.Canvas.BeginScene;
AForm.PaintTo(ABmp.Canvas);
ABmp.Canvas.EndScene;
ABmp.Canvas.BeginScene;
ABmp.Canvas.Stroke.Color := claBlack;
ABmp.Canvas.StrokeThickness := 1;
ABmp.Canvas.DrawLine(PointF(0, 0), PointF(0, ABmp.Height), 1);
{ABmp.Canvas.Fill.Color := claFuchsia;
ABmp.Canvas.FillEllipse(RectF(0, 0, 100, 100), 1);}
ABmp.Canvas.EndScene;
FFormImage.Width := Round(AForm.Width);
FFormImage.Height := Round(AForm.Height);
FFormImage.Bitmap.Assign(ABmp);
finally
FreeAndNil(ABmp);
end;
FFormImage.Position.Y := 0;
FFormImage.Position.X := AXpos;
{$IFNDEF ANDROID}
FShadowLeft.Position.Y := 0;
FShadowLeft.Position.X := 0-FShadowLeft.Width;
FFormImage.AddObject(FShadowLeft);
FShadowRight.Position.Y := 0;
FShadowRight.Position.X := FFormImage.Width;
FFormImage.AddObject(FShadowRight);
{$ENDIF}
AForm.AddObject(FFormImage);
FFormImage.Visible := True;
FMenu.Visible := True;
Application.ProcessMessages;
end;
procedure TksSlideMenu.RemoveFormImage;
var
AForm: TForm;
begin
AForm := (Owner as TForm);
if AForm <> nil then
AForm.RemoveObject(FFormImage);
end;
{$IFNDEF ANDROID}
procedure TksSlideMenu.GenerateShadows;
var
AScale: single;
AForm: TForm;
ABmp: TBitmap;
begin
ABmp := TBitmap.Create;
try
AScale := GetScreenScale;
AForm := (Owner as TForm);
ABmp.Width := Round(16 * AScale);
ABmp.Height := Round(AForm.Height * AScale);
ABmp.Canvas.BeginScene;
ABmp.Canvas.Fill.Kind := TBrushKind.Gradient;
ABmp.Canvas.Fill.Gradient.Color := claNull;
ABmp.Canvas.Fill.Gradient.Color1 := $AA000000;
ABmp.Canvas.Fill.Gradient.StartPosition.X := 0;
ABmp.Canvas.Fill.Gradient.StartPosition.Y := 1;
ABmp.Canvas.Fill.Gradient.StopPosition.X := 1;
ABmp.Canvas.FillRect(RectF(0, 0, ABmp.Width, ABmp.Height), 0, 0, [], 1);
ABmp.Canvas.EndScene;
FShadowLeft.Width := 16;
FShadowLeft.Height := Round(AForm.Height);
FShadowLeft.Bitmap.Assign(ABmp);
finally
FreeAndNil(ABmp);
end;
ABmp := TBitmap.Create;
try
AScale := GetScreenScale;
AForm := (Owner as TForm);
ABmp.Width := Round(16 * AScale);
ABmp.Height := Round(AForm.Height * AScale);
ABmp.Canvas.BeginScene;
ABmp.Canvas.Fill.Kind := TBrushKind.Gradient;
ABmp.Canvas.Fill.Gradient.Color := $AA000000;
ABmp.Canvas.Fill.Gradient.Color1 := claNull;
ABmp.Canvas.Fill.Gradient.StartPosition.X := 0;
ABmp.Canvas.Fill.Gradient.StartPosition.Y := 1;
ABmp.Canvas.Fill.Gradient.StopPosition.X := 1;
ABmp.Canvas.FillRect(RectF(0, 0, ABmp.Width, ABmp.Height), 0, 0, [], 1);
ABmp.Canvas.EndScene;
FShadowRight.Width := 16;
FShadowRight.Height := Round(AForm.Height);
FShadowRight.Bitmap.Assign(ABmp);
finally
FreeAndNil(ABmp);
end;
end;
{$ENDIF}
function TksSlideMenu.GetMenuItemCount: integer;
var
ICount: integer;
lv: TksTableView;
begin
Result := 0;
lv := FMenu.FListView;
for ICount := 0 to lv.Items.Count-1 do
begin
if lv.Items[ICount].Purpose = TksTableViewItemPurpose.None then
Result := Result + 1;
end;
end;
function TksSlideMenu.GetToolbar: TksSlideMenuToolbar;
begin
Result := FMenu.FToolBar;
end;
function TksSlideMenu.GetToolbarHeight: integer;
begin
Result := 0;
if Toolbar.Visible then
Result := C_DEFAULT_MENU_TOOLBAR_HEIGHT;
end;
procedure TksSlideMenu.HidePickers;
var
PickerService: IFMXPickerService;
begin
inherited;
if TPlatformServices.Current.SupportsPlatformService(IFMXPickerService, PickerService) then
PickerService.CloseAllPickers;
end;
procedure TksSlideMenu.MenuItemSelected(Sender: TObject; x, y: single; AItem: TksTableViewItem; AId: string; ARowObj: TksTableViewItemObject);
begin
if Assigned(FOnSelectMenuItemEvent) then
FOnSelectMenuItemEvent(Self, AId);
GenerateFormImage(FFormImage.Position.X);
ToggleMenu;
if Assigned(FAfterSelectMenuItemEvent) then
FAfterSelectMenuItemEvent(Self, AId);
end;
procedure TksSlideMenu.Notification(AComponent: TComponent; Operation: TOperation);
begin
inherited;
if (AComponent = FToggleButton) and (Operation = TOperation.opRemove) then
FToggleButton := nil;
end;
function TksSlideMenu.GetColorOrDefault(AColor, ADefaultIfNull: TAlphaColor): TAlphaColor;
begin
Result := AColor;
if Result = claNull then
Result := ADefaultIfNull;
end;
procedure TksSlideMenu.UpdateMenu;
var
ICount: integer;
AItem: TksSlideMenuItem;
ARow: TksTableViewItem;
lv: TksTableView;
ASelectedColor: TAlphaColor;
AFontColor, AHeaderFontColor: TAlphaColor;
begin
if FMenu.ListView = nil then
Exit;
Application.ProcessMessages;
lv := FMenu.FListView;
lv.Position.X := 0;
lv.Repaint;
//lv.Position.Y := GetToolbarHeight;;
lv.Width := C_DEFAULT_MENU_WIDTH;
//FMenu
FMenu.Width := C_DEFAULT_MENU_WIDTH;
AFontColor := GetColorOrDefault(FAppearence.FontColor, C_DEFAULT_MENU_FONT_COLOR);
AHeaderFontColor := GetColorOrDefault(FAppearence.HeaderFontColor, C_DEFAULT_MENU_HEADER_TEXT_COLOR);
ASelectedColor := GetColorOrDefault(FAppearence.SelectedItemColor, C_DEFAULT_MENU_SELECTED_COLOR);
lv.Appearence.Background.Color := GetColorOrDefault(FAppearence.ItemColor, C_DEFAULT_MENU_BACKGROUND_COLOR);
lv.Appearence.ItemBackground.Color := GetColorOrDefault(FAppearence.ItemColor, C_DEFAULT_MENU_BACKGROUND_COLOR);
lv.Appearence.HeaderColor := GetColorOrDefault(FAppearence.HeaderColor, C_DEFAULT_MENU_HEADER_COLOR);
lv.Appearence.SeparatorColor := GetColorOrDefault(FAppearence.HeaderColor, C_DEFAULT_MENU_HEADER_COLOR);
lv.Appearence.SelectedColor := ASelectedColor;
lv.HeaderOptions.Height := FHeaderHeight;
lv.ItemHeight := FItemHeight;
lv.ItemImageSize := 24;
lv.BeginUpdate;
try
lv.Items.Clear;
{$IFDEF ADD_SAMPLE_MENU_ITEMS}
if FItems.Count = 0 then
begin
// add some sample items...
AddHeader('SAMPLE HEADER 0');
AddMenuItem('', 'Menu Item 1');
AddMenuItem('', 'Menu Item 2');
AddHeader('SAMPLE HEADER 1');
AddMenuItem('', 'Menu Item 3');
AddMenuItem('', 'Menu Item 4');
AddMenuItem('', 'Menu Item 5');
AddHeader('SAMPLE HEADER 2');
AddMenuItem('', 'Menu Item 6');
AddMenuItem('', 'Menu Item 7');
AddMenuItem('', 'Menu Item 8');
AddMenuItem('', 'Menu Item 9');
AddMenuItem('', 'Menu Item 10');
end;
{$ENDIF}
for ICount := 0 to FItems.Count-1 do
begin
AItem := FItems[ICount];
if AItem.IsHeader then
begin
ARow := lv.Items.AddHeader(AItem.Text);
ARow.Title.Font.Assign(FHeaderFont);
ARow.Title.TextColor := AHeaderFontColor;
ARow.Title.TextAlignment:= FHeaderTextAlign;
end
else
begin
ARow := lv.Items.AddItem(AItem.Text, '', '', atMore);
ARow.Image.Bitmap := AItem.Image;
ARow.ID := AItem.ID;
ARow.Accessory.OwnsBitmap := True;
ARow.Accessory.Color := FAppearence.AccessoryColor;
ARow.Title.Font.Assign(FFont);
ARow.Title.TextColor := AFontColor;
ARow.Title.TextAlignment:= FItemTextAlign;
end;
end;
finally
lv.EndUpdate;
end;
lv.RecalcAbsoluteNow;
MenuIndex := FMenuIndex;
if (lv.ItemIndex = -1) and (FSelectFirstItem) then
begin
for ICount := 0 to lv.Items.Count-1 do
begin
if lv.Items[ICount].Purpose = TksTableViewItemPurpose.None then
begin
lv.ItemIndex := ICount;
Break;
end;
end;
end;
end;
procedure TksSlideMenu.SetMenuIndex(const Value: integer);
var
ICount: integer;
AIndex: integer;
lv: TksTableView;
begin
AIndex := -1;
lv := FMenu.FListView;
for ICount := 0 to lv.Items.Count-1 do
begin
if lv.Items[ICount].Purpose = TksTableViewItemPurpose.None then
begin
Inc(AIndex);
if AIndex = Value then
begin
lv.ItemIndex := ICount;
Exit;
end;
end;
end;
FMenuIndex := Value;
end;
procedure TksSlideMenu.SetToggleButton(const Value: TCustomButton);
begin
FToggleButton := Value;
FToggleButton.OnClick := DoToggleButtonClick;
end;
procedure TksSlideMenu.SetToolbar(const Value: TksSlideMenuToolbar);
begin
FMenu.FToolBar := Value;
end;
procedure TksSlideMenu.SetTopPadding(const Value: integer);
begin
FTopPadding := Value;
end;
procedure TksSlideMenu.SwitchMenuToImage;
var
ABmp: TBitmap;
AForm: TForm;
ABottom: single;
begin
AForm := (Owner as TForm);
ABmp := TBitmap.Create(Round(C_DEFAULT_MENU_WIDTH * GetScreenScale), Round(AForm.ClientHeight * GetScreenScale));
try
FMenuImage := TImage.Create(AForm);
FMenuImage.Width := C_DEFAULT_MENU_WIDTH;
FMenuImage.Height := AForm.ClientHeight;
case FMenuPosition of
mpLeft: FMenuImage.Position.X := 0;
mpRight: FMenuImage.Position.X := AForm.Width - C_DEFAULT_MENU_WIDTH;
end;
ABmp.Canvas.BeginScene;
ABmp.BitmapScale := GetScreenScale;
FMenu.PaintTo(ABmp.Canvas, RectF(0, 0, ABmp.Width, ABmp.Height));
ABmp.Canvas.EndScene;
ABmp.Canvas.BeginScene;
ABottom := (GetToolbarHeight + FMenu.CalculateListViewHeight)*GetScreenScale;
ABmp.Canvas.Fill.Color := FAppearence.ItemColor;
ABmp.Canvas.FillRect(RectF(0, ABottom, C_DEFAULT_MENU_WIDTH*GetScreenScale, ABmp.Height), 0, 0, AllCorners, 1, ABmp.Canvas.Fill);
ABmp.Canvas.EndScene;
FMenuImage.Bitmap := ABmp;
finally
FreeAndNil(ABmp);
end;
end;
procedure TksSlideMenu.SwitchImageToMenu;
var
AForm: TForm;
begin
AForm := (Owner as TForm);
AForm.InsertObject(AForm.ChildrenCount-1, FMenu);
AForm.RemoveObject(FMenuImage);
FMenu.HitTest := True;
end;
procedure TksSlideMenu.ToggleMenu;
var
AStartXPos: single;
ANewXPos: single;
AForm: TForm;
begin
if FAnimating then
Exit;
if FShowing = False then
begin
if Assigned(FOnBeforeSlideOut) then
FOnBeforeSlideOut(Self);
end;
FAnimating := True;
try
if (FShowing = False) then
begin
FMenu.FToolBar.UpdateToolbar;
//FMenu.UpdateSelectedItem;
end;
FMenu.HitTest := False;
AForm := (Owner as TForm);
HidePickers;
if FShowing = False then
begin
AStartXPos := 0;
ANewXPos := 0;
case FMenuPosition of
mpLeft: ANewXPos := C_DEFAULT_MENU_WIDTH;
mpRight: ANewXPos := 0-C_DEFAULT_MENU_WIDTH;
end;
end
else
begin
AStartXPos := FFormImage.Position.X;
ANewXPos := 0;
end;
GenerateFormImage(AStartXPos);
FMenu.Height := (Owner as TForm).ClientHeight;
// add the menu just behind the screen image...
case FMenuPosition of
mpLeft : FMenu.Position.X := 0;
mpRight: FMenu.Position.X := AForm.Width - C_DEFAULT_MENU_WIDTH;
end;
AForm.InsertObject(0, FMenu);
if FMenu.FListView.Items.Count = 0 then
UpdateMenu;
SwitchMenuToImage;
AForm.RemoveObject(FMenu);
AForm.InsertObject(AForm.ChildrenCount-1, FMenuImage);
FFormImage.HitTest := False;
//
SlideMenuAnimating := True;
TAnimator.AnimateFloatWait(FFormImage, 'Position.X', ANewXPos, FSlideSpeed);
SlideMenuAnimating := False;
FFormImage.HitTest := True;
FShowing := not FShowing;
if FShowing = False then
begin
AForm.RemoveObject(FMenu);
RemoveFormImage;
end
else
SwitchImageToMenu;
AForm.RemoveObject(FMenuImage);
Application.ProcessMessages;
finally
FAnimating := False;
end;
if FShowing = False then
begin
if Assigned(FOnAfterSlideOut) then
FOnAfterSlideOut(Self);
end;
end;
{procedure TksSlideMenu.FadeBackground;
begin
FBackground.Fill.Color := claBlack;
FBackground.Align := TAlignLayout.Contents;
FBackground.OnClick := DoBackgroundClick;
FBackground.Opacity := 0;
TForm(Owner).AddObject(FBackground);
FBackground.BringToFront;
TAnimator.AnimateFloat(FBackground, 'Opacity', 0.2, FSlideSpeed);
end;
procedure TksSlideMenu.UnfadeBackground;
begin
TAnimator.AnimateFloat(FBackground, 'Opacity', 0, FSlideSpeed);
TForm(Owner).RemoveObject(FBackground);
end; }
{ TksSlideMenuItem }
constructor TksSlideMenuItem.Create(AIndex: integer);
begin
inherited Create;
FImage := TBitmap.Create;
FFont := TFont.Create;
FIndex := AIndex;
FIsHeader := False;
end;
destructor TksSlideMenuItem.Destroy;
begin
FreeAndNil(FImage);
FreeAndNil(FFont);
inherited;
end;
{ TksSlideMenuItems }
function TksSlideMenuItems.AddHeaderItem(AText: string): TksSlideMenuItem;
begin
Result := AddMenuItem('', AText, nil);
Result.IsHeader := True;
end;
function TksSlideMenuItems.AddMenuItem(AId, AText: string; AImage: TBitmap): TksSlideMenuItem;
begin
Result := TksSlideMenuItem.Create(Count);
if AImage <> nil then
Result.Image.Assign(AImage);
Result.Id := AId;
Result.Text := AText;
Add(Result);
end;
{ TksSlideMenuAppearence }
constructor TksSlideMenuAppearence.Create(ASlideMenu: TksSlideMenu);
begin
FSlideMenu := ASlideMenu;
FHeaderColor := $FF323232;
FItemColor := $FF222222;
FToolBarColor := $FF323232;
FFontColor := claWhite;
FSelectedFontColor := claWhite;
FSelectedColor := claRed;
FAccessoryColor := claWhite;
FTheme := mtDarkGray;
end;
procedure TksSlideMenuAppearence.SetAccessoryColor(const Value: TAlphaColor);
begin
FAccessoryColor := Value;
end;
procedure TksSlideMenuAppearence.SetFontColor(const Value: TAlphaColor);
begin
FFontColor := Value;
FTheme := mtCustom;
end;
procedure TksSlideMenuAppearence.SetHeaderColor(const Value: TAlphaColor);
begin
FHeaderColor := Value;
FTheme := mtCustom;
end;
procedure TksSlideMenuAppearence.SetHeaderFontColor(const Value: TAlphaColor);
begin
FHeaderFontColor := Value;
FTheme := mtCustom;
end;
procedure TksSlideMenuAppearence.SetItemColor(const Value: TAlphaColor);
begin
FItemColor := Value;
FTheme := mtCustom;
end;
procedure TksSlideMenuAppearence.SetSelectedColor(const Value: TAlphaColor);
begin
FSelectedColor := Value;
FTheme := mtCustom;
end;
procedure TksSlideMenuAppearence.SetSelectedFontColor(const Value: TAlphaColor);
begin
FSelectedFontColor := Value;
FTheme := mtCustom;
end;