-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUPenitTerminarz.frm
2511 lines (2511 loc) · 103 KB
/
UPenitTerminarz.frm
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 PenitTerminarz: TPenitTerminarz
Left = 180
Height = 743
Top = 178
Width = 1182
Caption = 'Terminarz Penitencjarny'
ClientHeight = 743
ClientWidth = 1182
OnClose = FormClose
OnCreate = FormCreate
Position = poScreenCenter
LCLVersion = '6.6'
WindowState = wsMaximized
object Panel1: TPanel
Left = 0
Height = 50
Top = 0
Width = 1182
Align = alTop
ClientHeight = 50
ClientWidth = 1182
Color = clWhite
ParentColor = False
TabOrder = 0
object Label1: TLabel
Left = 64
Height = 15
Top = 15
Width = 56
Caption = 'Terminarz.'
ParentColor = False
end
object Image1: TImage
Left = 16
Height = 32
Top = 8
Width = 32
AutoSize = True
Picture.Data = {
1754506F727461626C654E6574776F726B477261706869639203000089504E47
0D0A1A0A0000000D494844520000002000000020080300000044A48AC6000000
0373424954080808DBE14FE00000000970485973000007A3000007A301302FB2
C50000001974455874536F667477617265007777772E696E6B73636170652E6F
72679BEE3C1A00000186504C5445FFFFFFEA556AEEBBBBEF5060EFEFDFE1F0E1
C5DCD173C5AD74CBAE37496036495C77C9B075C8B181CDB57DCAB2F156663549
5E76C9B0EFD3CB77C9B037495E9A4F62B652635C4C5FEEECDEF055654C4B5F64
4B5F8D4F61524B5FF05565A65063EFDCD2B25162BC5364BF5263D55364DE5564
76C9B076C9B036495E76C9B077C9B077C9B179CAB17ACAB27CCBB27F6E5D80CC
B481CBB384CFB885CBB385CFB88ACFB88ED2BE91D0BA92D1BA93D1BB94D5C196
88779CD4BF9CD8C69ED4BFA2D5C1A59988ACD8C4B0D9C6B1A796B6E2D5BDDDCB
BFCEB9C1D9C6C4BDAAC4D9C7C6DFCEC8C1AECBEBE1CCCFBBCCE1D1CCEBE2D1CC
B7D3CDB8D4CEBAD4E4D4D5D0BBD5D0BCD6D1BCD6D1BDD7D2BDD7D2BED7D8C5D7
DDCCD7EFE8D8D3BFD9D4C1D9D5C1DAD5C1DAD5C2DAD6C2DBD6C3DBD7C4DCD8C5
DCE6D7DDD8C6DDE6D7DED9C7E0DBCAE0DCCAE1DCCBE1DDCBE2DDCCE2DECDE3DE
CEE4DFCFE4E0D0E5E1D1E5E8DAE6E2D2E7E3D3E8E4D4E8E4D5E9E5D6EAE6D7EC
E8DAEEEADDEEEBDEEFEBDEF05565F2FAF8F3FAF84987EF830000002874524E53
000C0F101011161F2C3850676F758F8F909B9DA1A8AEB2B6B8B8BFC1C2C6C8C9
CCCDD2D4E3EBF6FC2D35F1FD0000014A49444154384FAD92675383401086CFDE
7BD7885D394BB037EC622FC19208D628B1C598D82558D07FEE1E627219814F79
3F3CB3BBF730C7DC2C42905C96658B11951C189453BDA350C4304C05F4550C95
4A18D4922205A11A5DD71BA0AFD3A9B4C0A09E1469BF42ABCBE56AA685361834
51827D922294363A2515A1EA4FA7A4274B783DB24890125E8E55550DFB01B767
809002085ED38202780E001ECF010F9780FB240B3E59962582BD381284936834
1A59E3797E5E812A1400DCFCBF6299E3B899F815FB1F4EC2C5441F768FADDA0A
0BDDD8C854A629EC4A92E4DB164571CB4BAAC54E38F40C020A4DC1AF69DADD29
20A200C203E4EBEF714047B6D53B1CE09880F3AD842543F83AF4AC0FE3322B61
C510260541E8C725E64FFA20045E820D1C4F9E21BCBF25662476DE9E65B95157
3D7F4281CDCA6DF61AC75D7319763BF9343BEA1E9ADE81A7FE01632A5E2E0F86
F6410000000049454E44AE426082
}
end
object Label2: TLabel
Left = 495
Height = 15
Top = 16
Width = 158
Caption = 'Wybierz grupę wychowawczą:'
ParentColor = False
end
object cbWychowawcy: TComboBox
Left = 656
Height = 23
Top = 12
Width = 180
AutoDropDown = True
ItemHeight = 15
OnChange = cbWychowawcyChange
Style = csDropDownList
TabOrder = 0
end
end
object PageControl1: TPageControl
Left = 0
Height = 693
Top = 50
Width = 1182
ActivePage = TabSheet2
Align = alClient
Images = DM.ImageList1
TabHeight = 25
TabIndex = 1
TabOrder = 1
object TabSheet1: TTabSheet
Caption = 'Kanlendarz'
ClientHeight = 660
ClientWidth = 1174
ImageIndex = 16
OnShow = TabSheet1Show
object YearPlanner1: TYearPlanner
Left = 0
Height = 660
Top = 0
Width = 798
Align = alClient
DayFont.CharSet = EASTEUROPE_CHARSET
DayFont.Color = 3355443
DayFont.Height = -11
DayFont.Name = 'Arial'
DayFont.Pitch = fpVariable
DayFont.Quality = fqCleartype
GridPen.Color = 13158600
HeadingColor = clWhite
Images = ImageList1
MonthColor = clWhite
MonthFont.Color = 3355443
MonthFont.Height = -11
MonthFont.Name = 'Arial'
NoDayColor = 15856113
SelectionColor = 16763541
SelectionFont.Color = 3355443
SelectionFont.Height = -11
SelectionFont.Name = 'Arial'
Seperator = False
ShowToday = True
TextLayout = tlTop
TodayCircleColour = 13999409
TodayCircleFilled = True
TodayFont.Color = clWhite
TodayFont.Height = -11
TodayFont.Name = 'Arial'
WeekendColor = 14671839
WeekendHeadingColor = 14671839
WeekendFont.Color = clRed
WeekendFont.Height = -11
WeekendFont.Name = 'Arial'
Year = 2017
YearColor = 14671839
YearFont.Color = 3355443
YearFont.Height = -11
YearFont.Name = 'Arial'
OnDrawCell = YearPlanner1DrawCell
OnSelectionEnd = YearPlanner1SelectionEnd
OnYearChanged = YearPlanner1YearChanged
end
object Panel5: TPanel
Left = 803
Height = 660
Top = 0
Width = 371
Align = alRight
BevelOuter = bvNone
ClientHeight = 660
ClientWidth = 371
TabOrder = 1
object RxDBGrid2: TRxDBGrid
Left = 0
Height = 554
Top = 64
Width = 371
ColumnDefValues.BlobText = '(blob)'
TitleButtons = True
AutoSort = True
Columns = <
item
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Termin'
Width = 70
FieldName = 'Termin'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footer.ValueType = fvtCount
Footers = <>
end
item
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Rodzaj'
Width = 50
FieldName = 'Rodzaj'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'NAZWISKO'
Width = 90
FieldName = 'NAZWISKO'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'IMIE'
Width = 80
FieldName = 'IMIE'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'POC'
Width = 45
FieldName = 'POC'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end>
KeyStrokes = <
item
Command = rxgcShowFindDlg
ShortCut = 16454
Enabled = True
end
item
Command = rxgcShowColumnsDlg
ShortCut = 16471
Enabled = True
end
item
Command = rxgcShowFilterDlg
ShortCut = 16468
Enabled = True
end
item
Command = rxgcShowSortDlg
ShortCut = 16467
Enabled = True
end
item
Command = rxgcShowQuickFilter
ShortCut = 16465
Enabled = True
end
item
Command = rxgcHideQuickFilter
ShortCut = 16456
Enabled = True
end
item
Command = rxgcSelectAll
ShortCut = 16449
Enabled = True
end
item
Command = rxgcDeSelectAll
ShortCut = 16429
Enabled = True
end
item
Command = rxgcInvertSelection
ShortCut = 16426
Enabled = True
end
item
Command = rxgcOptimizeColumnsWidth
ShortCut = 16427
Enabled = True
end
item
Command = rxgcCopyCellValue
ShortCut = 16451
Enabled = True
end>
FooterOptions.Active = True
FooterOptions.Color = clSilver
FooterOptions.RowCount = 1
FooterOptions.Style = tsNative
FooterOptions.DrawFullLine = False
SearchOptions.QuickSearchOptions = [loCaseInsensitive, loPartialKey]
SearchOptions.FromStart = False
OptionsRx = [rdgAllowDialogFind, rdgFooterRows, rdgAllowQuickSearch, rdgAllowQuickFilter, rdgAllowFilterForm, rdgAllowSortForm, rdgAllowToolMenu, rdgCaseInsensitiveSort, rdgWordWrap]
FooterColor = clSilver
FooterRowCount = 1
Align = alClient
AlternateColor = 14022911
AutoAdvance = aaNone
Color = clWindow
DrawFullLine = False
FocusColor = clHighlight
FixedHotColor = clNone
SelectedColor = clHighlight
GridLineStyle = psSolid
DataSource = DSKalendarz
DefaultRowHeight = 19
FixedColor = clNone
Font.CharSet = EASTEUROPE_CHARSET
Font.Height = -11
Font.Name = 'Arial'
Font.Pitch = fpVariable
Font.Quality = fqDraft
Options = [dgTitles, dgIndicator, dgColumnResize, dgColLines, dgRowLines, dgRowSelect, dgAlwaysShowSelection, dgConfirmDelete, dgHeaderHotTracking, dgHeaderPushedLook, dgAnyButtonCanSelect, dgDisableDelete, dgDisableInsert, dgCellHints, dgTruncCellHints, dgCellEllipsis]
ParentFont = False
ParentShowHint = False
PopupMenu = PopupMenuKalendarz
ReadOnly = True
ShowHint = True
TabOrder = 0
TitleFont.CharSet = EASTEUROPE_CHARSET
TitleFont.Height = -11
TitleFont.Name = 'Arial'
TitleFont.Pitch = fpVariable
TitleFont.Quality = fqDraft
TitleStyle = tsNative
end
object Panel6: TPanel
Left = 0
Height = 64
Top = 0
Width = 371
Align = alTop
BevelOuter = bvNone
BorderStyle = bsSingle
ClientHeight = 60
ClientWidth = 367
TabOrder = 1
object cbListTerminy: TCheckListBox
Left = 0
Height = 42
Top = 18
Width = 367
Align = alClient
BorderStyle = bsNone
Columns = 2
Items.Strings = (
'Termin Oceny'
'Termin WPZ'
'Termin Postpenitu'
'Termin Końca kary'
)
ItemHeight = 17
ItemIndex = 0
MultiSelect = True
OnClickCheck = cbListTerminyClickCheck
TabOrder = 0
Data = {
0400000001010101
}
end
object Label8: TLabel
Left = 0
Height = 18
Top = 0
Width = 367
Align = alTop
AutoSize = False
Caption = 'Rodzaj terminu:'
Color = 16767927
Layout = tlCenter
ParentColor = False
ParentFont = False
Transparent = False
end
end
object Panel7: TPanel
Left = 0
Height = 42
Top = 618
Width = 371
Align = alBottom
BevelOuter = bvNone
ClientHeight = 42
ClientWidth = 371
Color = clWhite
ParentColor = False
TabOrder = 2
object BCPanel1: TBCPanel
Left = 8
Height = 34
Top = 5
Width = 16
Background.Color = clBtnFace
Background.ColorOpacity = 255
Background.Gradient1.StartColor = 14540287
Background.Gradient1.StartColorOpacity = 255
Background.Gradient1.DrawMode = dmSet
Background.Gradient1.EndColor = clRed
Background.Gradient1.EndColorOpacity = 255
Background.Gradient1.ColorCorrection = False
Background.Gradient1.GradientType = gtLinear
Background.Gradient1.Point1XPercent = 100
Background.Gradient1.Point2YPercent = 100
Background.Gradient1.Sinus = False
Background.Gradient2.StartColor = clWhite
Background.Gradient2.StartColorOpacity = 255
Background.Gradient2.DrawMode = dmSet
Background.Gradient2.EndColor = clBlack
Background.Gradient2.EndColorOpacity = 255
Background.Gradient2.ColorCorrection = True
Background.Gradient2.GradientType = gtLinear
Background.Gradient2.Point2YPercent = 100
Background.Gradient2.Sinus = False
Background.Gradient1EndPercent = 100
Background.Style = bbsGradient
BevelInner = bvNone
BevelOuter = bvNone
BevelWidth = 1
Border.Color = clBlack
Border.ColorOpacity = 255
Border.LightColor = clWhite
Border.LightOpacity = 255
Border.LightWidth = 0
Border.Style = bboNone
Border.Width = 1
FontEx.Color = clDefault
FontEx.EndEllipsis = False
FontEx.FontQuality = fqSystemClearType
FontEx.Height = 0
FontEx.SingleLine = True
FontEx.Shadow = False
FontEx.ShadowColor = clBlack
FontEx.ShadowColorOpacity = 255
FontEx.ShadowRadius = 5
FontEx.ShadowOffsetX = 5
FontEx.ShadowOffsetY = 5
FontEx.Style = []
FontEx.TextAlignment = bcaCenter
FontEx.WordBreak = False
Rounding.RoundX = 1
Rounding.RoundY = 1
Rounding.RoundOptions = []
TabOrder = 0
end
object BCPanel2: TBCPanel
Left = 72
Height = 34
Top = 5
Width = 16
Background.Color = clBtnFace
Background.ColorOpacity = 255
Background.Gradient1.StartColor = 15794162
Background.Gradient1.StartColorOpacity = 255
Background.Gradient1.DrawMode = dmSet
Background.Gradient1.EndColor = 32026
Background.Gradient1.EndColorOpacity = 255
Background.Gradient1.ColorCorrection = False
Background.Gradient1.GradientType = gtLinear
Background.Gradient1.Point1XPercent = 100
Background.Gradient1.Point2YPercent = 100
Background.Gradient1.Sinus = False
Background.Gradient2.StartColor = clWhite
Background.Gradient2.StartColorOpacity = 255
Background.Gradient2.DrawMode = dmSet
Background.Gradient2.EndColor = clBlack
Background.Gradient2.EndColorOpacity = 255
Background.Gradient2.ColorCorrection = True
Background.Gradient2.GradientType = gtLinear
Background.Gradient2.Point2YPercent = 100
Background.Gradient2.Sinus = False
Background.Gradient1EndPercent = 100
Background.Style = bbsGradient
BevelInner = bvNone
BevelOuter = bvNone
BevelWidth = 1
Border.Color = clGray
Border.ColorOpacity = 255
Border.LightColor = clWhite
Border.LightOpacity = 255
Border.LightWidth = 0
Border.Style = bboNone
Border.Width = 1
BorderBCStyle = bpsBorder
FontEx.Color = clDefault
FontEx.EndEllipsis = False
FontEx.FontQuality = fqSystemClearType
FontEx.Height = 0
FontEx.SingleLine = True
FontEx.Shadow = False
FontEx.ShadowColor = clBlack
FontEx.ShadowColorOpacity = 255
FontEx.ShadowRadius = 5
FontEx.ShadowOffsetX = 5
FontEx.ShadowOffsetY = 5
FontEx.Style = []
FontEx.TextAlignment = bcaCenter
FontEx.WordBreak = False
Rounding.RoundX = 1
Rounding.RoundY = 1
Rounding.RoundOptions = []
TabOrder = 1
end
object BCPanel3: TBCPanel
Left = 144
Height = 34
Top = 5
Width = 16
Background.Color = clBtnFace
Background.ColorOpacity = 255
Background.Gradient1.StartColor = 16770790
Background.Gradient1.StartColorOpacity = 255
Background.Gradient1.DrawMode = dmSet
Background.Gradient1.EndColor = clBlue
Background.Gradient1.EndColorOpacity = 255
Background.Gradient1.ColorCorrection = False
Background.Gradient1.GradientType = gtLinear
Background.Gradient1.Point1XPercent = 100
Background.Gradient1.Point2YPercent = 100
Background.Gradient1.Sinus = False
Background.Gradient2.StartColor = clWhite
Background.Gradient2.StartColorOpacity = 255
Background.Gradient2.DrawMode = dmSet
Background.Gradient2.EndColor = clBlack
Background.Gradient2.EndColorOpacity = 255
Background.Gradient2.ColorCorrection = True
Background.Gradient2.GradientType = gtLinear
Background.Gradient2.Point2YPercent = 100
Background.Gradient2.Sinus = False
Background.Gradient1EndPercent = 100
Background.Style = bbsGradient
BevelInner = bvNone
BevelOuter = bvNone
BevelWidth = 1
Border.Color = clBlack
Border.ColorOpacity = 255
Border.LightColor = clWhite
Border.LightOpacity = 255
Border.LightWidth = 0
Border.Style = bboNone
Border.Width = 1
FontEx.Color = clDefault
FontEx.EndEllipsis = False
FontEx.FontQuality = fqSystemClearType
FontEx.Height = 0
FontEx.SingleLine = True
FontEx.Shadow = False
FontEx.ShadowColor = clBlack
FontEx.ShadowColorOpacity = 255
FontEx.ShadowRadius = 5
FontEx.ShadowOffsetX = 5
FontEx.ShadowOffsetY = 5
FontEx.Style = []
FontEx.TextAlignment = bcaCenter
FontEx.WordBreak = False
Rounding.RoundX = 1
Rounding.RoundY = 1
Rounding.RoundOptions = []
TabOrder = 2
end
object BCPanel4: TBCPanel
Left = 224
Height = 34
Top = 5
Width = 16
Background.Color = clBtnFace
Background.ColorOpacity = 255
Background.Gradient1.StartColor = 16771828
Background.Gradient1.StartColorOpacity = 255
Background.Gradient1.DrawMode = dmSet
Background.Gradient1.EndColor = 13762665
Background.Gradient1.EndColorOpacity = 255
Background.Gradient1.ColorCorrection = False
Background.Gradient1.GradientType = gtLinear
Background.Gradient1.Point1XPercent = 100
Background.Gradient1.Point2YPercent = 100
Background.Gradient1.Sinus = False
Background.Gradient2.StartColor = clWhite
Background.Gradient2.StartColorOpacity = 255
Background.Gradient2.DrawMode = dmSet
Background.Gradient2.EndColor = clBlack
Background.Gradient2.EndColorOpacity = 255
Background.Gradient2.ColorCorrection = True
Background.Gradient2.GradientType = gtLinear
Background.Gradient2.Point2YPercent = 100
Background.Gradient2.Sinus = False
Background.Gradient1EndPercent = 100
Background.Style = bbsGradient
BevelInner = bvNone
BevelOuter = bvNone
BevelWidth = 1
Border.Color = clBlack
Border.ColorOpacity = 255
Border.LightColor = clWhite
Border.LightOpacity = 255
Border.LightWidth = 0
Border.Style = bboNone
Border.Width = 1
FontEx.Color = clDefault
FontEx.EndEllipsis = False
FontEx.FontQuality = fqSystemClearType
FontEx.Height = 0
FontEx.SingleLine = True
FontEx.Shadow = False
FontEx.ShadowColor = clBlack
FontEx.ShadowColorOpacity = 255
FontEx.ShadowRadius = 5
FontEx.ShadowOffsetX = 5
FontEx.ShadowOffsetY = 5
FontEx.Style = []
FontEx.TextAlignment = bcaCenter
FontEx.WordBreak = False
Rounding.RoundX = 1
Rounding.RoundY = 1
Rounding.RoundOptions = []
TabOrder = 3
end
object Oceny: TLabel
Left = 24
Height = 15
Top = 16
Width = 34
Caption = 'Oceny'
Font.Color = clRed
ParentColor = False
ParentFont = False
end
object Oceny1: TLabel
Left = 88
Height = 15
Top = 16
Width = 25
Caption = 'WPZ'
Font.Color = 32026
ParentColor = False
ParentFont = False
end
object Oceny2: TLabel
Left = 160
Height = 15
Top = 16
Width = 50
Caption = 'Postpenit'
Font.Color = clBlue
ParentColor = False
ParentFont = False
end
object Oceny3: TLabel
Left = 240
Height = 15
Top = 16
Width = 14
Caption = 'KK'
Font.Color = 13762665
ParentColor = False
ParentFont = False
end
end
end
object Splitter2: TSplitter
Left = 798
Height = 660
Top = 0
Width = 5
Align = alRight
ResizeAnchor = akRight
end
end
object TabSheet2: TTabSheet
Caption = 'Terminy'
ClientHeight = 660
ClientWidth = 1174
ImageIndex = 24
object Panel2: TPanel
Left = 0
Height = 660
Top = 0
Width = 454
Align = alClient
BevelOuter = bvNone
ClientHeight = 660
ClientWidth = 454
TabOrder = 0
object Panel4: TPanel
Left = 0
Height = 50
Top = 610
Width = 454
Align = alBottom
ClientHeight = 50
ClientWidth = 454
Color = clForm
ParentColor = False
TabOrder = 0
object Label3: TLabel
Left = 8
Height = 15
Top = 6
Width = 68
Caption = 'Osadzonych:'
ParentColor = False
end
object Label4: TLabel
Left = 8
Height = 15
Top = 24
Width = 80
Caption = 'Wolne miejsca:'
ParentColor = False
end
object Label5: TLabel
Left = 144
Height = 15
Top = 6
Width = 20
Caption = '"P":'
ParentColor = False
end
object lblOs: TLabel
Left = 96
Height = 15
Top = 6
Width = 27
Caption = 'lblOs'
Font.Color = clBlue
ParentColor = False
ParentFont = False
end
object lblWolne: TLabel
Left = 96
Height = 15
Top = 24
Width = 47
Caption = 'lblWolne'
Font.Color = clBlue
ParentColor = False
ParentFont = False
end
object lblProg: TLabel
AnchorSideLeft.Control = Label5
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Label5
Left = 168
Height = 15
Top = 6
Width = 38
BorderSpacing.Left = 4
Caption = 'lblProg'
Font.Color = clBlue
ParentColor = False
ParentFont = False
end
object Edit1: TEdit
Left = 317
Height = 23
Top = 0
Width = 136
Anchors = [akTop, akRight]
CharCase = ecUppercase
OnChange = Edit1Change
TabOrder = 0
TextHint = 'Wyszukaj nazwisko'
end
object Label6: TLabel
Left = 216
Height = 15
Top = 6
Width = 18
Caption = 'GR:'
ParentColor = False
end
object lblGR: TLabel
AnchorSideLeft.Control = Label6
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Label6
Left = 238
Height = 15
Top = 6
Width = 28
BorderSpacing.Left = 4
Caption = 'lblGR'
Font.Color = clBlue
ParentColor = False
ParentFont = False
end
object Label7: TLabel
Left = 153
Height = 15
Top = 24
Width = 81
Caption = 'Zatrudnionych:'
ParentColor = False
end
object lblZatrudnionych: TLabel
AnchorSideLeft.Control = Label7
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Label7
Left = 238
Height = 15
Top = 24
Width = 91
BorderSpacing.Left = 4
Caption = 'lblZatrudnionych'
Font.Color = clBlue
ParentColor = False
ParentFont = False
end
end
object RxDBGrid1: TRxDBGrid
Left = 0
Height = 610
Top = 0
Width = 454
ColumnDefValues.BlobText = '(blob)'
TitleButtons = True
AutoSort = True
OnGetCellProps = RxDBGrid1GetCellProps
Columns = <
item
Font.Color = clGreen
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'POC'
Width = 50
FieldName = 'POC'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
SortFields = 'ID;NAZWISKO'
end
item
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Nazwisko Imię'
Width = 180
FieldName = 'NazwiskoImie'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
SortFields = 'NAZWISKO'
end
item
Alignment = taCenter
Font.Color = clGreen
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Klasyf.'
Width = 45
FieldName = 'KLASYF'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
ButtonStyle = cbsCheckboxColumn
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'GR'
Width = 25
FieldName = 'GR'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Alignment = taCenter
Font.Color = clMaroon
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'toceny'
Width = 70
FieldName = 'toceny'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Alignment = taCenter
Font.Color = clMaroon
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'twpz'
Width = 70
FieldName = 'twpz'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Alignment = taCenter
Font.Color = clMaroon
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'Koniec Kary'
Width = 70
FieldName = 'KoniecKary'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Alignment = taCenter
Font.Color = clMaroon
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'tpostpenitu'
Width = 70
FieldName = 'tpostpenitu'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Alignment = taCenter
Font.Color = clMaroon
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'tterapii'
Width = 70
FieldName = 'tterapii'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'
Filter.AllValue = '(All values)'
Filter.EmptyFont.Style = [fsItalic]
Filter.ItemIndex = -1
Footers = <>
end
item
Alignment = taCenter
Font.Color = clMaroon
Title.Alignment = taCenter
Title.Orientation = toHorizontal
Title.Caption = 'tprzepustki'
Width = 70
FieldName = 'tprzepustki'
EditButtons = <>
Filter.DropDownRows = 0
Filter.EmptyValue = '(Empty)'
Filter.NotEmptyValue = '(Not empty)'