-
Notifications
You must be signed in to change notification settings - Fork 11
/
YOTM.Main.dfm
9618 lines (9618 loc) · 464 KB
/
YOTM.Main.dfm
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
object FormMain: TFormMain
Left = 0
Top = 0
Caption = 'YOT Manager'
ClientHeight = 742
ClientWidth = 1331
Color = 3684408
Constraints.MinHeight = 650
Constraints.MinWidth = 1100
DoubleBuffered = True
Font.Charset = DEFAULT_CHARSET
Font.Color = 15921906
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
KeyPreview = True
OldCreateOrder = False
Position = poScreenCenter
ShowHint = True
StyleElements = []
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnDestroy = FormDestroy
OnPaint = FormPaint
PixelsPerInch = 96
TextHeight = 16
object Shape1: TShape
Left = 879
Top = 40
Width = 2
Height = 702
Align = alRight
Brush.Color = 3026478
Pen.Color = 3026478
ExplicitLeft = 672
ExplicitTop = 24
ExplicitHeight = 640
end
object Shape8: TShape
Left = 250
Top = 40
Width = 2
Height = 702
Align = alLeft
Brush.Color = 3026478
Pen.Color = 3026478
ExplicitLeft = 256
ExplicitTop = 32
ExplicitHeight = 737
end
object PanelTasks: TPanel
Left = 252
Top = 40
Width = 627
Height = 702
Align = alClient
BevelOuter = bvNone
TabOrder = 0
object ShapeBorder: TShape
Left = 0
Top = 40
Width = 627
Height = 2
Align = alTop
Brush.Color = 3026478
Pen.Color = 3026478
ExplicitTop = 8
ExplicitWidth = 780
end
object TableExTasks: TTableEx
Left = 0
Top = 42
Width = 627
Height = 363
Align = alClient
BorderStyle = bsNone
Color = 3684408
DefaultRowHeight = 50
Font.Charset = DEFAULT_CHARSET
Font.Color = 15921906
Font.Height = -15
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 0
OnMouseUp = TableExTasksMouseUp
OnKeyDown = TableExTasksKeyDown
OnDrawCellData = TableExTasksDrawCellData
ItemIndex = -1
OnChangeItem = TableExTasksChangeItem
OnItemColClick = TableExTasksItemColClick
OnEdit = TableExTasksEdit
OnEditCancel = TableExTasksEditCancel
OnEditOk = TableExTasksEditOk
OnHotOver = TableExTasksHotOver
ProcEmpty = True
Columns = <
item
Width = 32
MinWidth = 32
end
item
Caption = #1047#1072#1076#1072#1095#1072
Width = 563
MinWidth = 100
end>
DefaultDataDrawing = False
ShowScrollBar = False
VisibleEdit = False
ItemCount = 1
LineColor = 3684408
LineColorXor = 3947580
LineHotColor = 5066061
LineSelColor = 2763306
ColumnsColor = 3684408
FontHotLine.Charset = DEFAULT_CHARSET
FontHotLine.Color = 15921906
FontHotLine.Height = -15
FontHotLine.Name = 'Tahoma'
FontHotLine.Style = []
FontLine.Charset = DEFAULT_CHARSET
FontLine.Color = 15921906
FontLine.Height = -15
FontLine.Name = 'Tahoma'
FontLine.Style = []
FontSelLine.Charset = DEFAULT_CHARSET
FontSelLine.Color = 15921906
FontSelLine.Height = -15
FontSelLine.Name = 'Tahoma'
FontSelLine.Style = []
ShowColumns = False
ColumnsFont.Charset = DEFAULT_CHARSET
ColumnsFont.Color = clWhite
ColumnsFont.Height = -15
ColumnsFont.Name = 'Tahoma'
ColumnsFont.Style = []
DrawColumnBorded = False
MouseRightClickTooClick = True
end
object PanelTaskEdit: TPanel
Left = 0
Top = 0
Width = 627
Height = 40
Align = alTop
BevelOuter = bvNone
Color = 3684408
ParentBackground = False
TabOrder = 1
StyleElements = []
DesignSize = (
627
40)
object ButtonFlat9: TButtonFlat
AlignWithMargins = True
Left = 129
Top = 3
Width = 34
Height = 34
Align = alLeft
Caption = ''
ColorNormal = 3684408
ColorOver = 6381921
ColorPressed = 3815994
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
FontOver.Charset = DEFAULT_CHARSET
FontOver.Color = clWhite
FontOver.Height = -13
FontOver.Name = 'Tahoma'
FontOver.Style = []
FontDown.Charset = DEFAULT_CHARSET
FontDown.Color = clWhite
FontDown.Height = -13
FontDown.Name = 'Tahoma'
FontDown.Style = []
IgnorBounds = True
ImageIndentLeft = 4
ImageIndentRight = 2
ImageIndex = 2
Images = ImageList24
OnClick = ButtonFlat9Click
RoundRectParam = 0
ShowFocusRect = False
TabOrder = 0
TabStop = True
TextFormat = [tfSingleLine, tfVerticalCenter]
SubTextFont.Charset = DEFAULT_CHARSET
SubTextFont.Color = clWhite
SubTextFont.Height = -13
SubTextFont.Name = 'Tahoma'
SubTextFont.Style = []
end
object ButtonFlatViewMode: TButtonFlat
AlignWithMargins = True
Left = 229
Top = 6
Width = 153
Height = 28
Anchors = [akTop, akBottom]
Caption = #1057#1077#1075#1086#1076#1085#1103
ColorNormal = 5460819
ColorOver = 6381921
ColorPressed = 3815994
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
Flat = False
FontOver.Charset = DEFAULT_CHARSET
FontOver.Color = clWhite
FontOver.Height = -13
FontOver.Name = 'Tahoma'
FontOver.Style = []
FontDown.Charset = DEFAULT_CHARSET
FontDown.Color = clWhite
FontDown.Height = -13
FontDown.Name = 'Tahoma'
FontDown.Style = []
IgnorBounds = True
ImageIndentLeft = 0
Images = ImageList24
OnClick = ButtonFlatViewModeClick
RoundRectParam = 0
Shape = stRoundRect
ShowFocusRect = False
TabOrder = 1
TabStop = True
TextFormat = [tfCenter, tfSingleLine, tfVerticalCenter]
SubTextFont.Charset = DEFAULT_CHARSET
SubTextFont.Color = clWhite
SubTextFont.Height = -13
SubTextFont.Name = 'Tahoma'
SubTextFont.Style = []
Popup = PopupMenuViewProp
end
object ButtonFlatAddTask: TButtonFlat
AlignWithMargins = True
Left = 3
Top = 3
Width = 120
Height = 34
Align = alLeft
Caption = #1053#1086#1074#1072#1103' '#1079#1072#1076#1072#1095#1072
ColorNormal = 3684408
ColorOver = 6381921
ColorPressed = 3815994
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
FontOver.Charset = DEFAULT_CHARSET
FontOver.Color = clWhite
FontOver.Height = -13
FontOver.Name = 'Tahoma'
FontOver.Style = []
FontDown.Charset = DEFAULT_CHARSET
FontDown.Color = clWhite
FontDown.Height = -13
FontDown.Name = 'Tahoma'
FontDown.Style = []
IgnorBounds = True
ImageIndentLeft = 4
ImageIndentRight = 2
ImageIndex = 11
Images = ImageList24
OnClick = ButtonFlatAddTaskClick
RoundRectParam = 0
ShowFocusRect = False
TabOrder = 2
TabStop = True
TextFormat = [tfSingleLine, tfVerticalCenter]
SubTextFont.Charset = DEFAULT_CHARSET
SubTextFont.Color = clWhite
SubTextFont.Height = -13
SubTextFont.Name = 'Tahoma'
SubTextFont.Style = []
end
end
object PanelTask: TPanel
Left = 0
Top = 405
Width = 627
Height = 297
Align = alBottom
BevelOuter = bvNone
Caption = #1042#1099#1073#1077#1088#1080#1090#1077' '#1079#1072#1076#1072#1095#1091' '#1080#1079' '#1089#1087#1080#1089#1082#1072
TabOrder = 2
object Shape4: TShape
Left = 0
Top = 0
Width = 627
Height = 2
Align = alTop
Brush.Color = 3026478
Pen.Color = 3026478
ExplicitLeft = 3
ExplicitTop = -5
ExplicitWidth = 666
end
object Shape5: TShape
Left = 286
Top = 86
Width = 2
Height = 211
Align = alRight
Brush.Color = 3026478
Pen.Color = 3026478
ExplicitLeft = 320
ExplicitTop = 8
ExplicitHeight = 198
end
object Shape6: TShape
Left = 0
Top = 84
Width = 627
Height = 2
Align = alTop
Brush.Color = 3026478
Pen.Color = 3026478
ExplicitTop = 48
ExplicitWidth = 666
end
object Shape9: TShape
Left = 0
Top = 42
Width = 627
Height = 2
Align = alTop
Brush.Color = 3026478
Pen.Color = 3026478
ExplicitTop = 8
ExplicitWidth = 780
end
object PanelTaskClient: TPanel
Left = 0
Top = 86
Width = 286
Height = 211
Align = alClient
BevelOuter = bvNone
TabOrder = 0
object MemoTaskDesc: TRichEdit
Left = 0
Top = 0
Width = 286
Height = 211
Align = alClient
BorderStyle = bsNone
Color = 3223857
Font.Charset = RUSSIAN_CHARSET
Font.Color = 15921906
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 0
Zoom = 100
OnContextPopup = MemoNoteContextPopup
OnExit = MemoTaskDescExit
end
end
object PanelTaskComments: TPanel
Left = 288
Top = 86
Width = 339
Height = 211
Align = alRight
BevelOuter = bvNone
TabOrder = 1
object Shape18: TShape
Left = 0
Top = 169
Width = 339
Height = 2
Align = alBottom
Brush.Color = 3026478
Pen.Color = 3026478
ExplicitTop = 8
end
object TableExComments: TTableEx
Left = 0
Top = 0
Width = 339
Height = 169
Align = alClient
BorderStyle = bsNone
Color = 3684408
DefaultRowHeight = 25
Font.Charset = DEFAULT_CHARSET
Font.Color = 15921906
Font.Height = -15
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 0
StyleElements = [seBorder]
OnMouseUp = TableExCommentsMouseUp
ItemIndex = -1
GetData = TableExCommentsGetData
OnEdit = TableExCommentsEdit
OnEditOk = TableExCommentsEditOk
ProcEmpty = True
Columns = <
item
Caption = #1050#1086#1084#1084#1077#1085#1090#1072#1088#1080#1081
Width = 339
FormatColumns = [tfSingleLine, tfVerticalCenter]
MinWidth = 100
end>
VisibleEdit = False
ItemCount = 1
LineColor = 3684408
LineColorXor = 4079166
LineHotColor = 2763306
LineSelColor = 4934475
ColumnsColor = 3684408
FontHotLine.Charset = DEFAULT_CHARSET
FontHotLine.Color = 15921906
FontHotLine.Height = -15
FontHotLine.Name = 'Tahoma'
FontHotLine.Style = []
FontLine.Charset = DEFAULT_CHARSET
FontLine.Color = 15921906
FontLine.Height = -15
FontLine.Name = 'Tahoma'
FontLine.Style = []
FontSelLine.Charset = DEFAULT_CHARSET
FontSelLine.Color = 15921906
FontSelLine.Height = -15
FontSelLine.Name = 'Tahoma'
FontSelLine.Style = []
ShowColumns = False
ColumnsFont.Charset = DEFAULT_CHARSET
ColumnsFont.Color = clWhite
ColumnsFont.Height = -15
ColumnsFont.Name = 'Tahoma'
ColumnsFont.Style = []
DrawColumnBorded = False
MouseRightClickTooClick = True
end
object Panel2: TPanel
Left = 0
Top = 171
Width = 339
Height = 40
Align = alBottom
BevelOuter = bvNone
Color = 3684408
ParentBackground = False
TabOrder = 1
StyleElements = []
object ButtonFlatNewComment: TButtonFlat
AlignWithMargins = True
Left = 302
Top = 3
Width = 34
Height = 34
Margins.Left = 0
Align = alRight
Caption = ''
ColorNormal = 3684408
ColorOver = 6381921
ColorPressed = 3815994
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
FontOver.Charset = DEFAULT_CHARSET
FontOver.Color = clWhite
FontOver.Height = -13
FontOver.Name = 'Tahoma'
FontOver.Style = []
FontDown.Charset = DEFAULT_CHARSET
FontDown.Color = clWhite
FontDown.Height = -13
FontDown.Name = 'Tahoma'
FontDown.Style = []
IgnorBounds = True
ImageIndentLeft = 4
ImageIndex = 32
Images = ImageList24
OnClick = ButtonFlatNewCommentClick
RoundRectParam = 0
ShowFocusRect = False
TabOrder = 1
TabStop = True
TextFormat = [tfCenter, tfSingleLine, tfVerticalCenter]
SubTextFont.Charset = DEFAULT_CHARSET
SubTextFont.Color = clWhite
SubTextFont.Height = -13
SubTextFont.Name = 'Tahoma'
SubTextFont.Style = []
end
object EditNewComment: TRichEdit
AlignWithMargins = True
Left = 3
Top = 3
Width = 296
Height = 34
Align = alClient
BevelInner = bvNone
BevelOuter = bvSpace
BevelKind = bkTile
BevelWidth = 6
BorderStyle = bsNone
Color = 3684408
Font.Charset = RUSSIAN_CHARSET
Font.Color = 15921906
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 0
WantReturns = False
StyleElements = []
Zoom = 100
OnContextPopup = EditNewCommentContextPopup
OnKeyPress = EditNewCommentKeyPress
end
end
end
object PanelTaskTop: TPanel
Left = 0
Top = 2
Width = 627
Height = 40
Align = alTop
BevelOuter = bvNone
Color = 3684408
ParentBackground = False
TabOrder = 2
StyleElements = []
object ButtonFlatTaskClose: TButtonFlat
AlignWithMargins = True
Left = 590
Top = 3
Width = 34
Height = 34
Align = alRight
Caption = ''
ColorNormal = 3684408
ColorOver = 6381921
ColorPressed = 3815994
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
FontOver.Charset = DEFAULT_CHARSET
FontOver.Color = clWhite
FontOver.Height = -13
FontOver.Name = 'Tahoma'
FontOver.Style = []
FontDown.Charset = DEFAULT_CHARSET
FontDown.Color = clWhite
FontDown.Height = -13
FontDown.Name = 'Tahoma'
FontDown.Style = []
IgnorBounds = True
ImageIndentLeft = 5
ImageIndex = 10
Images = ImageList24
OnClick = ButtonFlatTaskCloseClick
RoundRectParam = 0
ShowFocusRect = False
TabOrder = 0
TabStop = True
TextFormat = [tfCenter, tfSingleLine, tfVerticalCenter]
SubTextFont.Charset = DEFAULT_CHARSET
SubTextFont.Color = clWhite
SubTextFont.Height = -13
SubTextFont.Name = 'Tahoma'
SubTextFont.Style = []
end
object ButtonFlatTaskState: TButtonFlat
AlignWithMargins = True
Left = 3
Top = 3
Width = 34
Height = 34
Align = alLeft
Caption = ''
ColorNormal = 3684408
ColorOver = 6381921
ColorPressed = 3815994
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
FontOver.Charset = DEFAULT_CHARSET
FontOver.Color = clWhite
FontOver.Height = -13
FontOver.Name = 'Tahoma'
FontOver.Style = []
FontDown.Charset = DEFAULT_CHARSET
FontDown.Color = clWhite
FontDown.Height = -13
FontDown.Name = 'Tahoma'
FontDown.Style = []
IgnorBounds = True
ImageIndentLeft = 4
ImageIndentRight = 2
ImageIndex = 19
Images = ImageList24
OnClick = ButtonFlatTaskStateClick
RoundRectParam = 0
ShowFocusRect = False
TabOrder = 1
TabStop = True
TextFormat = [tfSingleLine, tfVerticalCenter]
SubTextFont.Charset = DEFAULT_CHARSET
SubTextFont.Color = clWhite
SubTextFont.Height = -13
SubTextFont.Name = 'Tahoma'
SubTextFont.Style = []
end
object EditTaskName: TRichEdit
AlignWithMargins = True
Left = 43
Top = 3
Width = 541
Height = 34
Align = alClient
BevelInner = bvNone
BevelOuter = bvSpace
BevelKind = bkSoft
BevelWidth = 6
BorderStyle = bsNone
Font.Charset = RUSSIAN_CHARSET
Font.Color = 15921906
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = []
ParentColor = True
ParentFont = False
ReadOnly = True
TabOrder = 2
WantReturns = False
StyleElements = []
Zoom = 100
OnContextPopup = EditTaskNameContextPopup
end
end
object PanelTaskLabels: TPanel
Left = 0
Top = 44
Width = 627
Height = 40
Align = alTop
BevelOuter = bvNone
Color = 3684408
ParentBackground = False
TabOrder = 3
StyleElements = []
object PanelTaskDAN: TPanel
Left = 0
Top = 0
Width = 197
Height = 40
Align = alLeft
BevelOuter = bvNone
Color = 3684408
ParentBackground = False
TabOrder = 0
StyleElements = []
object ButtonFlatTaskDAN: TButtonFlat
AlignWithMargins = True
Left = 3
Top = 3
Width = 164
Height = 34
Align = alClient
Caption = #1044#1072#1090#1072' '#1080' '#1085#1072#1087#1086#1084#1080#1085#1072#1085#1080#1077'...'
ColorNormal = 3223857
ColorOver = 5329233
ColorPressed = 1710618
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
Flat = False
FontOver.Charset = DEFAULT_CHARSET
FontOver.Color = clWhite
FontOver.Height = -13
FontOver.Name = 'Tahoma'
FontOver.Style = []
FontDown.Charset = DEFAULT_CHARSET
FontDown.Color = clWhite
FontDown.Height = -13
FontDown.Name = 'Tahoma'
FontDown.Style = []
IgnorBounds = True
ImageIndex = 8
Images = ImageList24
OnClick = ButtonFlatTaskDANClick
RoundRectParam = 0
ShowFocusRect = False
TabOrder = 0
TabStop = True
TextFormat = [tfSingleLine, tfVerticalCenter]
SubTextFont.Charset = DEFAULT_CHARSET
SubTextFont.Color = clWhite
SubTextFont.Height = -13
SubTextFont.Name = 'Tahoma'
SubTextFont.Style = []
end
object ButtonFlatDANClose: TButtonFlat
AlignWithMargins = True
Left = 173
Top = 10
Width = 21
Height = 20
Margins.Top = 10
Margins.Bottom = 10
Align = alRight
Caption = ''
ColorNormal = 14668740
ColorOver = 11373924
ColorPressed = 10451273
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
FontOver.Charset = DEFAULT_CHARSET
FontOver.Color = clWhite
FontOver.Height = -13
FontOver.Name = 'Tahoma'
FontOver.Style = []
FontDown.Charset = DEFAULT_CHARSET
FontDown.Color = clWhite
FontDown.Height = -13
FontDown.Name = 'Tahoma'
FontDown.Style = []
IgnorBounds = True
ImageIndentLeft = -2
ImageIndex = 0
Images = ImageList24
Transparent = True
OnClick = ButtonFlatDANCloseClick
RoundRectParam = 0
ShowFocusRect = False
TabOrder = 1
TabStop = True
TextFormat = [tfCenter, tfSingleLine, tfVerticalCenter]
SubTextFont.Charset = DEFAULT_CHARSET
SubTextFont.Color = clWhite
SubTextFont.Height = -13
SubTextFont.Name = 'Tahoma'
SubTextFont.Style = []
end
end
object PanelTaskColor: TPanel
Left = 197
Top = 0
Width = 108
Height = 40
Align = alLeft
BevelOuter = bvNone
Color = 3684408
ParentBackground = False
TabOrder = 1
StyleElements = []
object ButtonFlatTaskColor: TButtonFlat
AlignWithMargins = True
Left = 3
Top = 3
Width = 75
Height = 34
Align = alClient
Caption = #1062#1074#1077#1090'...'
ColorNormal = 3223857
ColorOver = 5329233
ColorPressed = 1710618
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
Flat = False
FontOver.Charset = DEFAULT_CHARSET
FontOver.Color = clWhite
FontOver.Height = -13
FontOver.Name = 'Tahoma'
FontOver.Style = []
FontDown.Charset = DEFAULT_CHARSET
FontDown.Color = clWhite
FontDown.Height = -13
FontDown.Name = 'Tahoma'
FontDown.Style = []
IgnorBounds = True
ImageIndex = 31
Images = ImageList24
OnClick = ButtonFlatTaskColorClick
RoundRectParam = 0
ShowFocusRect = False
TabOrder = 0
TabStop = True
TextFormat = [tfSingleLine, tfVerticalCenter]
SubTextFont.Charset = DEFAULT_CHARSET
SubTextFont.Color = clWhite
SubTextFont.Height = -13
SubTextFont.Name = 'Tahoma'
SubTextFont.Style = []
end
object ButtonFlatTaskColorClose: TButtonFlat
AlignWithMargins = True
Left = 84
Top = 10
Width = 21
Height = 20
Margins.Top = 10
Margins.Bottom = 10
Align = alRight
Caption = ''
ColorNormal = 14668740
ColorOver = 11373924
ColorPressed = 10451273
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
FontOver.Charset = DEFAULT_CHARSET
FontOver.Color = clWhite
FontOver.Height = -13
FontOver.Name = 'Tahoma'
FontOver.Style = []
FontDown.Charset = DEFAULT_CHARSET
FontDown.Color = clWhite
FontDown.Height = -13
FontDown.Name = 'Tahoma'
FontDown.Style = []
IgnorBounds = True
ImageIndentLeft = -2
ImageIndex = 0
Images = ImageList24
Transparent = True
OnClick = ButtonFlatTaskColorCloseClick
RoundRectParam = 0
ShowFocusRect = False
TabOrder = 1
TabStop = True
TextFormat = [tfCenter, tfSingleLine, tfVerticalCenter]
SubTextFont.Charset = DEFAULT_CHARSET
SubTextFont.Color = clWhite
SubTextFont.Height = -13
SubTextFont.Name = 'Tahoma'
SubTextFont.Style = []
end
end
object ButtonFlatTaskLabels: TButtonFlat
AlignWithMargins = True
Left = 308
Top = 3
Width = 85
Height = 34
Align = alLeft
Caption = #1052#1077#1090#1082#1080
ColorNormal = 3223857
ColorOver = 5329233
ColorPressed = 1710618
Font.Charset = DEFAULT_CHARSET
Font.Color = clWhite
Font.Height = -13
Font.Name = 'Tahoma'
Font.Style = []
Flat = False
FontOver.Charset = DEFAULT_CHARSET
FontOver.Color = clWhite
FontOver.Height = -13
FontOver.Name = 'Tahoma'
FontOver.Style = []
FontDown.Charset = DEFAULT_CHARSET
FontDown.Color = clWhite
FontDown.Height = -13
FontDown.Name = 'Tahoma'
FontDown.Style = []
IgnorBounds = True
ImageIndentRight = 3
ImageIndex = 30
Images = ImageList24
OnClick = ButtonFlatTaskLabelsClick
RoundRectParam = 0
ShowFocusRect = False
TabOrder = 2
TabStop = True
TextFormat = [tfSingleLine, tfVerticalCenter]
SubTextFont.Charset = DEFAULT_CHARSET
SubTextFont.Color = clWhite
SubTextFont.Height = -13
SubTextFont.Name = 'Tahoma'
SubTextFont.Style = []
end
end
end
end
object PanelRight: TPanel
Left = 881
Top = 40
Width = 450
Height = 702
Align = alRight
BevelOuter = bvNone
ParentColor = True
TabOrder = 1
object PanelClient: TPanel
Left = 0
Top = 0
Width = 450
Height = 702
Align = alClient
BevelOuter = bvNone
TabOrder = 0
object PanelCalendar: TPanel
Left = 0
Top = 0
Width = 450
Height = 702
Align = alClient
BevelOuter = bvNone
TabOrder = 2
object DrawGridCalendar: TDrawGrid
Left = 0
Top = 0
Width = 450
Height = 702
Align = alClient
BorderStyle = bsNone
Color = 3684408
ColCount = 7
DefaultColWidth = 63
DefaultRowHeight = 65
DefaultDrawing = False
DrawingStyle = gdsGradient
FixedCols = 0
RowCount = 9
FixedRows = 0
Font.Charset = DEFAULT_CHARSET
Font.Color = 15921906
Font.Height = -27
Font.Name = 'Tahoma'
Font.Style = []
GridLineWidth = 0
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine]
ParentFont = False
ScrollBars = ssNone
TabOrder = 0
StyleElements = [seBorder]
OnClick = DrawGridCalendarClick
OnDrawCell = DrawGridCalendarDrawCell
OnMouseEnter = DrawGridCalendarMouseEnter
OnMouseLeave = DrawGridCalendarMouseLeave
OnMouseMove = DrawGridCalendarMouseMove
OnMouseWheelDown = DrawGridCalendarMouseWheelDown
OnMouseWheelUp = DrawGridCalendarMouseWheelUp
ColWidths = (
63
63
63
63
63
63
63)
RowHeights = (
65
65
65
65
65
65
65
65
65)
end
end
object PanelSettings: TPanel
Left = 0
Top = 0
Width = 450
Height = 702
Align = alClient
BevelOuter = bvNone
TabOrder = 0
object Shape13: TShape
Left = 0
Top = 526
Width = 450
Height = 2
Align = alBottom
Brush.Color = 3026478