-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathMain.dfm
5046 lines (5045 loc) · 299 KB
/
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 MainForm: TMainForm
Left = 0
Top = 0
Caption = 'MainForm'
ClientHeight = 831
ClientWidth = 1098
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
FormStyle = fsMDIForm
OldCreateOrder = False
ShowHint = True
OnClose = FormClose
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Ribbon1: TRibbon
Left = 0
Top = 0
Width = 1098
Height = 143
ActionManager = ActionManager1
ScreenTips = ScreenTipsManager1
ApplicationMenu.Icon.Data = {
0000010001002020000001000800A80800001600000028000000200000004000
0000010008000000000000040000000000000000000000000000000000000000
0000000080000080000000808000800000008000800080800000C0C0C000C0DC
C000F0CAA600CCFFFF0099FFFF0066FFFF0033FFFF00FFCCFF00CCCCFF0099CC
FF0066CCFF0033CCFF0000CCFF00FF99FF00CC99FF009999FF006699FF003399
FF000099FF00FF66FF00CC66FF009966FF006666FF003366FF000066FF00FF33
FF00CC33FF009933FF006633FF003333FF000033FF00CC00FF009900FF006600
FF003300FF00FFFFCC00CCFFCC0099FFCC0066FFCC0066FFCC0033FFCC0000FF
CC00FFCCCC00CCCCCC0099CCCC0066CCCC0033CCCC0000CCCC00FF99CC00CC99
CC009999CC006699CC003399CC000099CC00FF66CC00CC66CC009966CC006666
CC003366CC000066CC00FF33CC00CC33CC009933CC006633CC003333CC000033
CC00FF00CC00CC00CC009900CC006600CC003300CC000000CC00FFFF9900CCFF
990099FF990066FF990033FF990000FF9900FFCC9900CCCC990099CC990066CC
990033CC990000CC9900FF999900CC9999009999990066999900339999000099
9900FF669900CC66990099669900666699003366990000669900FF339900CC33
990099339900663399003333990000339900FF009900CC009900990099006600
99003300990000009900FFFF6600CCFF660099FF660066FF660033FF660000FF
6600FFCC6600CCCC660099CC660066CC660033CC660000CC6600FF996600CC99
660099996600669966003399660000996600FF666600CC666600996666006666
66003366660000666600FF336600CC3366009933660066336600333366000033
6600FF006600CC00660099006600660066003300660000006600FFFF3300CCFF
330099FF330066FF330033FF330000FF3300FFCC3300CCCC330099CC330066CC
330033CC330000CC3300FF993300CC9933009999330066993300339933000099
3300FF663300CC66330099663300666633003366330000663300FF333300CC33
330099333300663333003333330000333300FF003300CC003300990033006600
33003300330000003300CCFF000099FF000066FF000033FF0000FFCC0000CCCC
000099CC000066CC000033CC000000CC0000FF990000CC990000999900006699
00003399000000990000FF660000CC6600009966000066660000006600003366
0000FF330000CC33000099330000663300003333000000330000CC0000009900
000066000000330000000000DD000000BB000000AA0000008800000077000000
5500000044000000220000DD000000BB000000AA000000880000007700000055
00000044000000220000DDDDDD00555555007777770077777700444444002222
22001111110077000000550000004400000022000000F0FBFF00A4A0A0008080
80000000FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF000000
000000000000000000000000000000000000000000000000EDEDEDEDEDEB0000
00000000000000000000000000000000000000000013131F00EDEDEDEDED0000
00000000000000000000000000000000000000ECECEC131F1F00EDEDEDED0000
0000000000000000000000000000000000001313ECECEC1F1F1F00EDED000000
000000000000000000000000000000000000131313ECEC001F1F000000000000
000000000000000000000000000000000000EC131313EC00001F000000000000
000000000000000000000000000000000000ECEC131313000000000000000000
00000000000000000000000000000000ED00ECECEC13131F0000000000000000
000000000000000000875B31FF5B5B00ED0013ECECEC131F1F00000000000000
000000000000EDED00875B31FF5B5B00ED001313ECECEC1F1F1F00ED00000000
00000087008700ED00875B31FF5B5B00ED00EC1313ECEC001F1F00EDED000000
000087870087870000875B31FF5B5B000000ECEC1313EC00001F00ED00000000
000087870087878700000000000000005B00ECECEC13130000000000000000ED
ED0087870087878700313131FF5B5B005B00ECECECEC131F000000EDED000000
00008700008787870031FF3131FF5B005B0013ECECEC5D1F1F0000EDED0000B2
B200003131008787003131FF3131FF005B001313EC5D5DFF1F1F00EDED0000B2
B20031313131008700313131FF3131005B00FFFFFB5D5D5DFF1F00EDED0000B2
B2B20031313131003131313131FF310000005DFBFBFB5D5D5DFF00EDED0000B2
B2B2B200313131315B3131313131FF3131FF005DFBFBFB5D5D5D00EDED000000
000000000031313131310000000031FF3131FF005DFBFB000000EDEDED000087
5B5B5B5B5B5B31318700B2B287870087FF3131FF0000005B5B0000000000005B
875B5B5B5B5B5B3100B2B2B28787870031FF3131FF5B5B5B5B0000000000005B
5B875B5B5B5B5B5B8700B2B2B2B200873131FF3131FF5B5B5B0000000000005B
5B5B875B5B5B5B5B5B31000000003131313131FF3131FF5B5B00000000000000
00000000005B5B5B5B5B313131315B3131313100000000000000000000000000
00005B5B005B5B5B5B5B5B313131315B31313131005B00000000000000000000
00005B005B875B5B005B5B5B3131310000313131310000000000000000000000
0000005B5B5B8700005B5B5B5B31310000003131313100000000000000000000
00005B5B5B5B0000005B5B5B5B5B310000000031310000000000000000000000
0000005B5B000000005B5B5B5B5B5B0000000000000000000000000000000000
0000000000000000005B5B5B5B5B5B0000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000FFFF
FE00FFFFF800FFFFE000FFFFE001FFFFE007FFFFE007FFFFE007FFC00007FFC0
0007F8000003E0000001E0000003E00000078000000100000001000000010000
00010000000100000001000000010000000F0000000F0000000F0000000F0000
000FE000007FE000007FE000207FE040307FF0C039FFF9C03FFFFFC03FFF}
ApplicationMenu.IconSize = isLarge
Caption = #1059#1095#1077#1090' '#1086#1088#1075#1090#1077#1093#1085#1080#1082#1080' 2012'
Tabs = <
item
Caption = #1041#1072#1079#1072' '#1076#1072#1085#1085#1099#1093
Page = RibbonPage1
end
item
Caption = #1043#1083#1072#1074#1085#1072#1103
Page = RibbonPage2
end
item
Caption = #1057#1087#1088#1072#1074#1086#1095#1085#1080#1082#1080
Page = RibbonPage3
end
item
Caption = #1040#1076#1084#1080#1085#1080#1089#1090#1088#1080#1088#1086#1074#1072#1085#1080#1077
Page = RibbonPage5
end>
TabIndex = 3
DesignSize = (
1098
143)
StyleName = 'Ribbon - Luna'
object RibbonPage1: TRibbonPage
Left = 0
Top = 50
Width = 1097
Height = 93
Caption = #1041#1072#1079#1072' '#1076#1072#1085#1085#1099#1093
Index = 0
object RibbonGroup1: TRibbonGroup
Left = 4
Top = 3
Width = 151
Height = 86
ActionManager = ActionManager1
Caption = #1056#1072#1073#1086#1090#1072' '#1089' '#1041#1044
GroupIndex = 0
end
end
object RibbonPage2: TRibbonPage
Left = 0
Top = 50
Width = 1097
Height = 93
Caption = #1043#1083#1072#1074#1085#1072#1103
Index = 1
object RibbonGroup2: TRibbonGroup
Left = 4
Top = 3
Width = 116
Height = 86
ActionManager = ActionManager1
Caption = #1054#1087#1077#1088#1072#1094#1080#1080#1080' '#1089' '#1076#1072#1085#1085#1099#1084#1080
GroupIndex = 0
end
object RibbonGroup3: TRibbonGroup
Left = 285
Top = 3
Width = 100
Height = 86
ActionManager = ActionManager1
Caption = #1059#1087#1088#1072#1074#1083#1077#1085#1080#1077
GroupIndex = 2
end
object RibbonGroup4: TRibbonGroup
Left = 387
Top = 3
Width = 100
Height = 86
ActionManager = ActionManager1
Caption = #1046#1091#1088#1085#1072#1083#1099
GroupIndex = 3
end
object RibbonGroup5: TRibbonGroup
Left = 489
Top = 3
Width = 100
Height = 86
ActionManager = ActionManager1
Caption = #1055#1088#1080#1085#1090#1077#1088#1099
GroupIndex = 4
end
object RibbonGroup14: TRibbonGroup
Left = 122
Top = 3
Width = 161
Height = 86
ActionManager = ActionManager1
Caption = #1055#1086#1080#1089#1082' '#1076#1072#1085#1085#1099#1093
GroupIndex = 1
object SearchEdit: TEdit
Left = 46
Top = 2
Width = 108
Height = 21
TabOrder = 0
OnChange = SearchEditChange
end
end
end
object RibbonPage3: TRibbonPage
AlignWithMargins = True
Left = 0
Top = 50
Width = 1097
Height = 93
Caption = #1057#1087#1088#1072#1074#1086#1095#1085#1080#1082#1080
Index = 2
object RibbonGroup6: TRibbonGroup
Left = 4
Top = 3
Width = 217
Height = 86
ActionManager = ActionManager1
Caption = #1056#1072#1073#1086#1095#1080#1077' '#1084#1077#1089#1090#1072
GroupIndex = 0
end
object RibbonGroup7: TRibbonGroup
Left = 223
Top = 3
Width = 245
Height = 86
ActionManager = ActionManager1
Caption = #1054#1073#1086#1088#1091#1076#1086#1074#1072#1085#1080#1077
GroupIndex = 1
end
end
object RibbonPage5: TRibbonPage
Left = 0
Top = 50
Width = 1097
Height = 93
Caption = #1040#1076#1084#1080#1085#1080#1089#1090#1088#1080#1088#1086#1074#1072#1085#1080#1077
Index = 3
object RibbonGroup12: TRibbonGroup
Left = 4
Top = 3
Width = 117
Height = 86
ActionManager = ActionManager1
Caption = #1055#1086#1083#1100#1079#1086#1074#1072#1090#1077#1083#1080
GroupIndex = 0
end
object RibbonGroup13: TRibbonGroup
Left = 123
Top = 3
Width = 156
Height = 86
ActionManager = ActionManager1
Caption = #1053#1072#1089#1090#1088#1086#1081#1082#1080' '#1087#1088#1086#1075#1088#1072#1084#1084#1099
GroupIndex = 1
end
object RibbonGroup15: TRibbonGroup
Left = 281
Top = 3
Width = 138
Height = 86
ActionManager = ActionManager1
Caption = #1053#1072#1089#1090#1088#1086#1081#1082#1080' '#1076#1072#1085#1085#1099#1093
GroupIndex = 2
end
end
end
object StatusBar1: TStatusBar
Left = 0
Top = 812
Width = 1098
Height = 19
BorderWidth = 1
Panels = <
item
Width = 220
end
item
Width = 100
end
item
Width = 200
end
item
Width = 50
end>
end
object CategoryPanelGroup1: TCategoryPanelGroup
Left = 0
Top = 143
Height = 669
VertScrollBar.Tracking = True
BevelInner = bvNone
BevelKind = bkFlat
HeaderFont.Charset = DEFAULT_CHARSET
HeaderFont.Color = clWindowText
HeaderFont.Height = -11
HeaderFont.Name = 'Tahoma'
HeaderFont.Style = []
HeaderHeight = 35
Images = CategoryImageList1
TabOrder = 2
object CategoryPanel9: TCategoryPanel
Tag = 9
Top = 1644
Caption = #1054#1090#1095#1077#1090#1099
CollapsedHotImageIndex = 8
CollapsedImageIndex = 8
CollapsedPressedImageIndex = 8
ExpandedHotImageIndex = 8
ExpandedImageIndex = 8
ExpandedPressedImageIndex = 8
TabOrder = 0
OnExpand = CategoryPanel1Expand
end
object CategoryPanel8: TCategoryPanel
Tag = 8
Top = 1444
Caption = #1044#1086#1082#1091#1084#1077#1085#1090#1099
CollapsedHotImageIndex = 7
CollapsedImageIndex = 7
CollapsedPressedImageIndex = 7
ExpandedHotImageIndex = 7
ExpandedImageIndex = 7
ExpandedPressedImageIndex = 7
TabOrder = 1
OnExpand = CategoryPanel1Expand
end
object CategoryPanel7: TCategoryPanel
Tag = 7
Top = 1244
Caption = #1046#1091#1088#1085#1072#1083' '#1058#1054
CollapsedHotImageIndex = 6
CollapsedImageIndex = 6
CollapsedPressedImageIndex = 6
ExpandedHotImageIndex = 6
ExpandedImageIndex = 6
ExpandedPressedImageIndex = 6
TabOrder = 2
OnExpand = CategoryPanel1Expand
end
object CategoryPanel6: TCategoryPanel
Tag = 6
Top = 1044
Caption = #1055#1088#1080#1085#1090#1077#1088#1099' '#1080' '#1082#1086#1087#1080#1088#1099
CollapsedHotImageIndex = 5
CollapsedImageIndex = 5
CollapsedPressedImageIndex = 5
ExpandedHotImageIndex = 5
ExpandedImageIndex = 5
ExpandedPressedImageIndex = 5
TabOrder = 3
OnExpand = CategoryPanel1Expand
end
object CategoryPanel5: TCategoryPanel
Tag = 5
Top = 844
Caption = #1050#1072#1073#1077#1083#1100#1085#1099#1077' '#1078#1091#1088#1085#1072#1083#1099
CollapsedHotImageIndex = 4
CollapsedImageIndex = 4
CollapsedPressedImageIndex = 4
ExpandedHotImageIndex = 4
ExpandedImageIndex = 4
ExpandedPressedImageIndex = 4
TabOrder = 4
OnExpand = CategoryPanel1Expand
end
object CategoryPanel4: TCategoryPanel
Tag = 4
Top = 644
Caption = #1057#1077#1090#1080
CollapsedHotImageIndex = 3
CollapsedImageIndex = 3
CollapsedPressedImageIndex = 3
ExpandedHotImageIndex = 3
ExpandedImageIndex = 3
ExpandedPressedImageIndex = 3
TabOrder = 5
OnExpand = CategoryPanel1Expand
end
object CategoryPanel3: TCategoryPanel
Tag = 3
Top = 444
Hint = '3'
Caption = #1055#1088#1086#1075#1088#1072#1084#1084#1099
CollapsedHotImageIndex = 2
CollapsedImageIndex = 2
CollapsedPressedImageIndex = 2
ExpandedHotImageIndex = 2
ExpandedImageIndex = 2
ExpandedPressedImageIndex = 2
TabOrder = 6
OnExpand = CategoryPanel1Expand
end
object CategoryPanel2: TCategoryPanel
Tag = 2
Top = 246
Height = 198
Hint = '2'
Caption = #1055#1086#1083#1100#1079#1086#1074#1072#1090#1077#1083#1080
CollapsedHotImageIndex = 1
CollapsedImageIndex = 1
CollapsedPressedImageIndex = 1
ExpandedHotImageIndex = 1
ExpandedImageIndex = 1
ExpandedPressedImageIndex = 1
Font.Charset = DEFAULT_CHARSET
Font.Color = clDefault
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 7
OnExpand = CategoryPanel1Expand
object ButtonGroup1: TButtonGroup
Left = 0
Top = 0
Width = 177
Height = 103
Align = alTop
BevelInner = bvNone
BevelOuter = bvNone
BorderStyle = bsNone
ButtonOptions = [gboFullSize, gboShowCaptions]
Images = ImageList16
Items = <
item
Caption = #1044#1086#1073#1072#1074#1080#1090#1100' '#1087#1086#1083#1100#1079#1086#1074#1072#1090#1077#1083#1103'...'
ImageIndex = 5
OnClick = ButtonGroup1Items0Click
end
item
Caption = #1048#1079#1084#1077#1085#1080#1090#1100' '#1087#1086#1083#1100#1079#1086#1074#1072#1090#1077#1083#1103'...'
ImageIndex = 17
OnClick = ButtonGroup1Items1Click
end
item
Caption = #1059#1076#1072#1083#1080#1090#1100' '#1087#1086#1083#1100#1079#1086#1074#1072#1090#1077#1083#1103'...'
ImageIndex = 6
OnClick = ButtonGroup1Items2Click
end
item
Caption = #1044#1072#1085#1085#1099#1077' AD...'
ImageIndex = 22
OnClick = ButtonGroup1Items3Click
end>
TabOrder = 0
end
object Panel11: TPanel
Left = 0
Top = 103
Width = 177
Height = 58
Align = alClient
BevelOuter = bvNone
Font.Charset = DEFAULT_CHARSET
Font.Color = clDefault
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
TabOrder = 1
object CheckBox1: TCheckBox
Left = 5
Top = 0
Width = 161
Height = 17
Caption = #1047#1072#1088#1077#1075#1080#1089#1090#1088#1080#1088#1086#1074#1072#1085#1085#1099#1077' '#1074' AD'
Checked = True
Color = clBtnFace
Ctl3D = True
DoubleBuffered = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlue
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentColor = False
ParentCtl3D = False
ParentDoubleBuffered = False
ParentFont = False
ParentShowHint = False
ShowHint = False
State = cbChecked
TabOrder = 0
OnClick = CheckBox1Click
end
object CheckBox2: TCheckBox
Left = 5
Top = 31
Width = 161
Height = 19
Caption = #1054#1090#1082#1083#1102#1095#1077#1085#1085#1099#1077' '#1074' AD'
Checked = True
Color = clBtnFace
Ctl3D = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clRed
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentColor = False
ParentCtl3D = False
ParentFont = False
ParentShowHint = False
ShowHint = False
State = cbChecked
TabOrder = 1
OnClick = CheckBox1Click
end
object CheckBox3: TCheckBox
Left = 5
Top = 16
Width = 161
Height = 17
Caption = #1041#1077#1079' '#1088#1077#1075#1080#1089#1090#1088#1072#1094#1080#1080' '#1074' AD'
Checked = True
Color = clBtnFace
Ctl3D = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentColor = False
ParentCtl3D = False
ParentFont = False
ParentShowHint = False
ShowHint = False
State = cbChecked
TabOrder = 2
OnClick = CheckBox1Click
end
end
end
object CategoryPanel1: TCategoryPanel
Tag = 1
Top = 0
Height = 246
Hint = '1'
Caption = #1054#1088#1075#1090#1077#1093#1080#1082#1072
CollapsedHotImageIndex = 0
CollapsedImageIndex = 0
CollapsedPressedImageIndex = 0
ExpandedHotImageIndex = 0
ExpandedImageIndex = 0
ExpandedPressedImageIndex = 0
TabOrder = 8
OnCollapse = CategoryPanel1Collapse
OnExpand = CategoryPanel1Expand
object ButtonGroup2: TButtonGroup
Left = 0
Top = 0
Width = 177
Height = 137
Align = alTop
BevelInner = bvNone
BevelOuter = bvNone
BorderStyle = bsNone
ButtonOptions = [gboFullSize, gboShowCaptions]
Images = ImageList16
Items = <
item
Caption = #1055#1088#1080#1093#1086#1076' '#1086#1088#1075#1090#1077#1093#1085#1080#1082#1080'...'
ImageIndex = 5
OnClick = ButtonGroup2Items0Click
end
item
Caption = #1055#1088#1080#1093#1086#1076' ('#1082#1086#1087#1080#1103')...'
ImageIndex = 5
OnClick = ButtonGroup2Items1Click
end
item
Caption = #1048#1079#1084#1077#1085#1080#1090#1100'...'
ImageIndex = 17
OnClick = ButtonGroup2Items2Click
end
item
Caption = #1057#1087#1080#1089#1072#1090#1100'...'
ImageIndex = 6
OnClick = ButtonGroup2Items3Click
end
item
Caption = #1055#1077#1088#1077#1084#1077#1089#1090#1080#1090#1100' ('#1085#1072#1079#1085#1072#1095#1080#1090#1100')...'
ImageIndex = 4
OnClick = ButtonGroup2Items4Click
end>
TabOrder = 0
end
object CheckBox4: TCheckBox
Left = 5
Top = 127
Width = 161
Height = 17
Caption = #1057#1090#1072#1085#1076#1072#1088#1090#1085#1099#1081' '#1086#1073#1098#1077#1082#1090
Checked = True
Color = clWhite
Ctl3D = True
DoubleBuffered = False
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentColor = False
ParentCtl3D = False
ParentDoubleBuffered = False
ParentFont = False
ParentShowHint = False
ShowHint = False
State = cbChecked
TabOrder = 1
OnClick = CheckBox1Click
end
object CheckBox5: TCheckBox
Left = 5
Top = 143
Width = 161
Height = 17
Caption = #1053#1077' '#1085#1072' '#1073#1072#1083#1072#1085#1089#1077' '#1057#1083#1091#1078#1073#1099' '#1048#1058
Checked = True
Color = clBtnFace
Ctl3D = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlack
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentColor = False
ParentCtl3D = False
ParentFont = False
ParentShowHint = False
ShowHint = False
State = cbChecked
TabOrder = 2
OnClick = CheckBox1Click
end
object CheckBox6: TCheckBox
Left = 5
Top = 158
Width = 161
Height = 19
Caption = #1053#1077' '#1074' '#1088#1072#1073#1086#1090#1077
Checked = True
Color = clWhite
Ctl3D = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clRed
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentColor = False
ParentCtl3D = False
ParentFont = False
ParentShowHint = False
ShowHint = False
State = cbChecked
TabOrder = 3
OnClick = CheckBox1Click
end
object CheckBox7: TCheckBox
Left = 5
Top = 174
Width = 161
Height = 19
Caption = #1054#1073#1098#1077#1082#1090' '#1089#1087#1080#1089#1072#1085
Color = clRed
Ctl3D = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clYellow
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentColor = False
ParentCtl3D = False
ParentFont = False
ParentShowHint = False
ShowHint = False
TabOrder = 4
OnClick = CheckBox1Click
end
end
end
object Panel2: TPanel
Tag = 2
Left = 204
Top = 207
Width = 860
Height = 85
ParentBackground = False
TabOrder = 4
Visible = False
object StaticText2: TStaticText
Left = 1
Top = 1
Width = 858
Height = 23
Align = alTop
Alignment = taCenter
BevelInner = bvSpace
BevelKind = bkTile
Caption = #1055#1054#1051#1068#1047#1054#1042#1040#1058#1045#1051#1048
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlue
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 0
end
object DBGridPers: TDBGrid
Left = 1
Top = 24
Width = 858
Height = 60
Align = alClient
Options = [dgTitles, dgIndicator, dgColumnResize, dgColLines, dgRowLines, dgTabs, dgRowSelect, dgAlwaysShowSelection, dgConfirmDelete, dgCancelOnExit, dgTitleClick, dgTitleHotTrack]
ReadOnly = True
TabOrder = 1
TitleFont.Charset = DEFAULT_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -11
TitleFont.Name = 'Tahoma'
TitleFont.Style = []
OnDrawColumnCell = DBGridPersDrawColumnCell
Columns = <
item
Expanded = False
FieldName = 'Login'
Title.Alignment = taCenter
Title.Caption = 'AD:Login'
Width = 83
Visible = True
end
item
Expanded = False
FieldName = 'tab'
Title.Alignment = taCenter
Title.Caption = #1058#1072#1073'.'#8470
Visible = True
end
item
Expanded = False
FieldName = 'f'
Title.Alignment = taCenter
Title.Caption = #1060#1072#1084#1080#1083#1080#1103
Width = 138
Visible = True
end
item
Expanded = False
FieldName = 'i'
Title.Alignment = taCenter
Title.Caption = #1048#1084#1103
Width = 119
Visible = True
end
item
Expanded = False
FieldName = 'o'
Title.Alignment = taCenter
Title.Caption = #1054#1090#1095#1077#1089#1090#1074#1086
Width = 111
Visible = True
end
item
Expanded = False
FieldName = 'dol'
Title.Alignment = taCenter
Title.Caption = #1044#1086#1083#1078#1085#1086#1089#1090#1100
Width = 163
Visible = True
end
item
Expanded = False
FieldName = 'serv_name'
Title.Alignment = taCenter
Title.Caption = #1057#1083#1091#1078#1073#1072
Width = 161
Visible = True
end
item
Expanded = False
FieldName = 'TelephoneNumber'
Title.Alignment = taCenter
Title.Caption = 'AD:'#1058#1077#1083#1077#1092#1086#1085
Width = 90
Visible = True
end
item
Expanded = False
FieldName = 'isBlocked'
Title.Alignment = taCenter
Title.Caption = 'AD:'#1041#1083#1086#1082
Width = 46
Visible = True
end
item
Expanded = False
FieldName = 'isDisable'
Title.Alignment = taCenter
Title.Caption = 'AD:'#1054#1090#1082#1083
Width = 52
Visible = True
end
item
Expanded = False
FieldName = 'ad_ved_date'
Title.Alignment = taCenter
Title.Caption = #1044#1072#1090#1072' '#1074#1077#1076'.'
Width = 90
Visible = True
end
item
Expanded = False
FieldName = 'ad_ved_n'
Title.Alignment = taCenter
Title.Caption = #8470' '#1074#1077#1076'.'
Width = 48
Visible = True
end>
end
end
object Panel3: TPanel
Tag = 3
Left = 206
Top = 268
Width = 637
Height = 61
ParentBackground = False
TabOrder = 5
Visible = False
object StaticText3: TStaticText
Left = 1
Top = 1
Width = 635
Height = 23
Align = alTop
Alignment = taCenter
BevelInner = bvSpace
BevelKind = bkTile
Caption = #1055#1056#1054#1043#1056#1040#1052#1052#1067
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlue
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 0
end
end
object Panel4: TPanel
Tag = 4
Left = 206
Top = 335
Width = 637
Height = 56
ParentBackground = False
TabOrder = 6
Visible = False
object StaticText4: TStaticText
Left = 1
Top = 1
Width = 635
Height = 23
Align = alTop
Alignment = taCenter
BevelInner = bvSpace
BevelKind = bkTile
Caption = #1057#1045#1058#1048
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlue
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 0
end
end
object Panel5: TPanel
Tag = 5
Left = 206
Top = 397
Width = 637
Height = 52
ParentBackground = False
TabOrder = 7
Visible = False
object StaticText5: TStaticText
Left = 1
Top = 1
Width = 635
Height = 23
Align = alTop
Alignment = taCenter
BevelInner = bvSpace
BevelKind = bkTile
Caption = #1050#1040#1041#1045#1051#1068#1053#1067#1045' '#1046#1059#1056#1053#1040#1051#1067
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlue
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 0
end
end
object Panel6: TPanel
Tag = 6
Left = 206
Top = 455
Width = 637
Height = 50
ParentBackground = False
TabOrder = 8
Visible = False
object StaticText6: TStaticText
Left = 1
Top = 1
Width = 635
Height = 23
Align = alTop
Alignment = taCenter
BevelInner = bvSpace
BevelKind = bkTile
Caption = #1055#1056#1048#1053#1058#1045#1056#1067' '#1048' '#1050#1054#1055#1048#1056#1067
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlue
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 0
end
end
object Panel1: TPanel
Tag = 1
Left = 206
Top = 146
Width = 858
Height = 71
TabOrder = 3
Visible = False
object StaticText1: TStaticText
Left = 1
Top = 1
Width = 856
Height = 23
Align = alTop
Alignment = taCenter
BevelInner = bvSpace
BevelKind = bkTile
Caption = #1054#1056#1043#1058#1045#1061#1053#1048#1050#1040
Font.Charset = DEFAULT_CHARSET
Font.Color = clBlue
Font.Height = -16
Font.Name = 'Tahoma'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 0
end
object DBGridOrgtech: TDBGrid
Left = 1
Top = 24
Width = 856
Height = 46
Align = alClient
Options = [dgTitles, dgIndicator, dgColumnResize, dgColLines, dgRowLines, dgTabs, dgRowSelect, dgAlwaysShowSelection, dgConfirmDelete, dgTitleClick, dgTitleHotTrack]
ReadOnly = True
TabOrder = 1
TitleFont.Charset = DEFAULT_CHARSET
TitleFont.Color = clWindowText
TitleFont.Height = -11
TitleFont.Name = 'Tahoma'
TitleFont.Style = []
OnDrawColumnCell = DBGridOrgtechDrawColumnCell
Columns = <
item
Expanded = False
FieldName = 'type_name'
Title.Alignment = taCenter
Title.Caption = #1058#1080#1087
Width = 104
Visible = True
end
item
Expanded = False
FieldName = 'invN'
Title.Alignment = taCenter
Title.Caption = #1048#1085#1074#8470
Width = 91
Visible = True
end
item
Expanded = False
FieldName = 'hostname'
Title.Alignment = taCenter
Title.Caption = #1057#1077#1090#1077#1074#1086#1077' '#1080#1084#1103
Width = 93
Visible = True
end
item
Expanded = False
FieldName = 'fio'
Title.Alignment = taCenter