-
Notifications
You must be signed in to change notification settings - Fork 5
/
options.lfm
executable file
·2916 lines (2916 loc) · 119 KB
/
options.lfm
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 optionForm: ToptionForm
Left = 664
Height = 517
Top = 179
Width = 701
HorzScrollBar.Page = 507
VertScrollBar.Page = 311
ActiveControl = Panel2
BorderIcons = [biSystemMenu]
Caption = 'Optionen'
ClientHeight = 517
ClientWidth = 701
DesignTimePPI = 98
OnCreate = FormCreate
OnResize = FormResize
OnShow = FormShow
Position = poScreenCenter
LCLVersion = '2.3.0.0'
Scaled = False
object Bevel1: TBevel
AnchorSideLeft.Control = Panel2
AnchorSideLeft.Side = asrBottom
Left = 99
Height = 509
Top = 4
Width = 602
Anchors = [akTop, akLeft, akRight, akBottom]
end
object Notebook1: TNotebook
AnchorSideLeft.Control = Bevel1
AnchorSideTop.Control = Bevel1
AnchorSideRight.Control = Bevel1
AnchorSideRight.Side = asrBottom
AnchorSideBottom.Control = Bevel1
AnchorSideBottom.Side = asrBottom
Left = 101
Height = 505
Top = 6
Width = 598
PageIndex = 5
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Around = 2
TabOrder = 0
TabStop = True
object pageAccount: TPage
object lblAccountPass: TLabel
AnchorSideTop.Control = edtAccountPass
AnchorSideTop.Side = asrCenter
Left = 8
Height = 23
Top = 337
Width = 131
BorderSpacing.Around = 10
Caption = 'Passwort: '
Color = clDefault
ParentColor = False
end
object Label2: TLabel
AnchorSideTop.Control = edtAccountUser
AnchorSideTop.Side = asrCenter
Left = 8
Height = 23
Top = 301
Width = 116
BorderSpacing.Around = 10
BorderSpacing.InnerBorder = 10
Caption = 'Kontonummer:'
Color = clDefault
ParentColor = False
end
object Label1: TLabel
AnchorSideTop.Control = edtAccountPrettyName
AnchorSideTop.Side = asrCenter
Left = 8
Height = 23
Top = 230
Width = 93
BorderSpacing.InnerBorder = 10
Caption = 'Kontoname:'
Color = clDefault
ParentColor = False
end
object Label4: TLabel
AnchorSideTop.Control = cmbAccountExtend
AnchorSideTop.Side = asrCenter
Left = 8
Height = 23
Top = 372
Width = 88
BorderSpacing.Around = 10
Caption = 'Verlängern:'
Color = clDefault
ParentColor = False
end
object lblAccountExtend1: TLabel
AnchorSideTop.Control = Label4
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = edtAccountExtendDays
Left = 339
Height = 23
Top = 372
Width = 35
Anchors = [akTop, akRight]
BorderSpacing.Around = 2
Caption = 'also '
Color = clDefault
ParentColor = False
Visible = False
end
object lblAccountExtend2: TLabel
AnchorSideLeft.Control = edtAccountExtendDays
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Label4
AnchorSideTop.Side = asrCenter
Left = 429
Height = 23
Top = 372
Width = 152
Anchors = [akTop, akRight]
BorderSpacing.Left = 5
Caption = 'Tage vor Fristdatum'
Color = clDefault
ParentColor = False
Visible = False
end
object Label5: TLabel
AnchorSideTop.Control = lblAccountLibrary
AnchorSideTop.Side = asrCenter
Left = 8
Height = 23
Top = 194
Width = 71
BorderSpacing.Around = 10
Caption = 'Bücherei:'
Color = clDefault
ParentColor = False
end
object lblAccountLibrary: TLabel
AnchorSideLeft.Control = lblAccountPass
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Label5
AnchorSideTop.Side = asrCenter
AnchorSideBottom.Control = edtAccountPrettyName
Left = 149
Height = 23
Top = 194
Width = 8
Anchors = [akLeft, akBottom]
BorderSpacing.Bottom = 4
BorderSpacing.Around = 4
Caption = ' '
Color = clDefault
ParentColor = False
end
object ckbAccountHistory: TCheckBox
AnchorSideTop.Control = btnAccountChange
AnchorSideBottom.Control = btnAccountChange
Left = 8
Height = 27
Top = 433
Width = 414
Anchors = [akLeft, akBottom]
BorderSpacing.Bottom = 3
Caption = 'Daten aller jemals ausgeliehenen Medien speichern'
Checked = True
State = cbChecked
TabOrder = 4
end
object btnAccountDelete: TButton
AnchorSideLeft.Control = btnAccountChange
AnchorSideLeft.Side = asrBottom
Left = 133
Height = 41
Top = 463
Width = 127
Anchors = [akLeft, akBottom]
AutoSize = True
BorderSpacing.Around = 2
BorderSpacing.InnerBorder = 4
Caption = 'Konto löschen'
Constraints.MinHeight = 20
OnClick = accountdeleteClick
TabOrder = 7
end
object btnAccountChange: TButton
Left = 8
Height = 41
Top = 463
Width = 123
Anchors = [akLeft, akBottom]
AutoSize = True
BorderSpacing.InnerBorder = 4
Caption = 'Konto ändern'
Constraints.MinHeight = 20
OnClick = btnAccountChangeClick
TabOrder = 8
end
object btnAccountCreate: TButton
AnchorSideLeft.Control = btnAccountDelete
AnchorSideLeft.Side = asrBottom
Left = 270
Height = 41
Top = 463
Width = 130
Anchors = [akLeft, akBottom]
AutoSize = True
BorderSpacing.Around = 10
BorderSpacing.InnerBorder = 4
Caption = 'neues Konto ...'
Constraints.MinHeight = 20
OnClick = btnAccountCreateClick
TabOrder = 9
end
object edtAccountPass: TEdit
AnchorSideLeft.Control = lblAccountPass
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = lblAccountPass
AnchorSideTop.Side = asrCenter
AnchorSideBottom.Control = cmbAccountExtend
Left = 149
Height = 32
Top = 332
Width = 439
Anchors = [akLeft, akRight, akBottom]
BorderSpacing.Left = 3
BorderSpacing.Around = 4
TabOrder = 3
end
object edtAccountUser: TEdit
AnchorSideLeft.Control = lblAccountPass
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Label2
AnchorSideTop.Side = asrCenter
AnchorSideBottom.Control = edtAccountPass
Left = 149
Height = 32
Top = 296
Width = 438
Anchors = [akLeft, akRight, akBottom]
BorderSpacing.Left = 3
BorderSpacing.Around = 4
OnChange = edtAccountUserChange
TabOrder = 2
end
object edtAccountPrettyName: TEdit
AnchorSideLeft.Control = lblAccountPass
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Label1
AnchorSideTop.Side = asrCenter
AnchorSideBottom.Control = accountType
Left = 149
Height = 32
Top = 225
Width = 439
Anchors = [akLeft, akRight, akBottom]
BorderSpacing.Left = 3
BorderSpacing.Around = 4
TabOrder = 1
end
object accountList: TListView
AnchorSideBottom.Control = lblAccountLibrary
Left = 0
Height = 185
Top = 2
Width = 588
Anchors = [akTop, akLeft, akRight, akBottom]
BorderSpacing.Bottom = 3
BorderSpacing.Around = 4
Columns = <
item
Caption = 'Kontoname'
Width = 90
end
item
Caption = 'Kontonummer'
Width = 80
end
item
Caption = 'Geburtsdatum'
Width = 80
end
item
Caption = 'History'
Visible = False
Width = 1
end
item
Caption = 'Verlängern'
Width = 100
end
item
Caption = 'Bücherei'
Width = 238
end>
HideSelection = False
RowSelect = True
TabOrder = 0
ViewStyle = vsReport
OnSelectItem = accountListSelectItem
end
object cmbAccountExtend: TComboBox
AnchorSideLeft.Control = lblAccountPass
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Label4
AnchorSideTop.Side = asrCenter
AnchorSideBottom.Control = ckbAccountDisabled
Left = 149
Height = 31
Top = 368
Width = 438
Anchors = [akLeft, akRight, akBottom]
BorderSpacing.Left = 3
BorderSpacing.Around = 4
ItemHeight = 0
Items.Strings = (
'immer, wenn möglich'
'immer, wenn nötig'
'niemals'
)
OnSelect = ComboBox1Change
Style = csDropDownList
TabOrder = 5
end
object edtAccountExtendDays: TEdit
AnchorSideLeft.Control = lblAccountExtend1
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = lblAccountExtend2
AnchorSideTop.Side = asrCenter
AnchorSideRight.Control = lblAccountExtend2
Left = 384
Height = 32
Top = 367
Width = 40
Anchors = [akTop, akRight]
BorderSpacing.Left = 5
BorderSpacing.Around = 5
Constraints.MinWidth = 40
TabOrder = 6
Text = '7'
Visible = False
end
object Button2: TButton
Left = 497
Height = 41
Top = 463
Width = 91
Anchors = [akRight, akBottom]
AutoSize = True
BorderSpacing.InnerBorder = 4
Cancel = True
Caption = 'Schließen'
Constraints.MinHeight = 20
OnClick = Button2Click
TabOrder = 10
end
object ckbAccountDisabled: TCheckBox
AnchorSideBottom.Control = ckbAccountHistory
Left = 8
Height = 27
Top = 403
Width = 196
Anchors = [akLeft, akBottom]
BorderSpacing.Around = 3
Caption = 'deaktivieren (Vorsicht!)'
TabOrder = 11
end
object accountType: TComboBox
AnchorSideLeft.Control = lblAccountPass
AnchorSideLeft.Side = asrBottom
AnchorSideBottom.Control = edtAccountUser
Left = 149
Height = 31
Top = 261
Width = 439
Anchors = [akLeft, akRight, akBottom]
BorderSpacing.Left = 3
BorderSpacing.Around = 4
ItemHeight = 0
Items.Strings = (
'intern (z.B.: Student)'
'extern'
)
Style = csDropDownList
TabOrder = 12
end
object lblAccountType: TLabel
AnchorSideTop.Control = accountType
AnchorSideTop.Side = asrCenter
Left = 8
Height = 23
Top = 265
Width = 72
Caption = 'Kontoart:'
Color = clDefault
ParentColor = False
end
end
object pageColors: TPage
object Label8: TLabel
Left = 12
Height = 19
Top = 8
Width = 364
Caption = 'Farbe für Medien die bald zurückgegeben werden müssen:'
Color = clDefault
ParentColor = False
end
object ShapeTimeNear: TShape
AnchorSideTop.Control = Label8
AnchorSideTop.Side = asrBottom
Left = 44
Height = 17
Top = 31
Width = 176
BorderSpacing.Around = 4
OnMouseUp = Shape1MouseUp
end
object Label10: TLabel
AnchorSideTop.Control = timeNearMeaningLabelLeft
AnchorSideTop.Side = asrBottom
Left = 12
Height = 19
Top = 79
Width = 524
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 4
BorderSpacing.Around = 4
Caption = 'Farbe für nicht verlängerbare Medien, die nicht bald zurückgegeben werden müssen:'
Color = clDefault
ParentColor = False
WordWrap = True
end
object ShapeLimited: TShape
AnchorSideTop.Control = Label10
AnchorSideTop.Side = asrBottom
Left = 44
Height = 17
Top = 102
Width = 176
BorderSpacing.Around = 4
OnMouseUp = Shape1MouseUp
end
object Label11: TLabel
AnchorSideTop.Control = ShapeLimited
AnchorSideTop.Side = asrBottom
Left = 12
Height = 19
Top = 123
Width = 203
BorderSpacing.Around = 4
Caption = 'Farbe für verlängerbare Medien:'
Color = clDefault
ParentColor = False
end
object ShapeOK: TShape
AnchorSideTop.Control = Label11
AnchorSideTop.Side = asrBottom
Left = 44
Height = 17
Top = 146
Width = 176
BorderSpacing.Around = 4
OnMouseUp = Shape1MouseUp
end
object ShapeOld: TShape
AnchorSideTop.Control = Label12
AnchorSideTop.Side = asrBottom
Left = 44
Height = 17
Top = 190
Width = 176
OnMouseUp = Shape1MouseUp
end
object Label12: TLabel
AnchorSideTop.Control = ShapeOK
AnchorSideTop.Side = asrBottom
Left = 12
Height = 19
Top = 167
Width = 194
BorderSpacing.Around = 4
Caption = 'Farbe für abgegebene Medien: '
Color = clDefault
ParentColor = False
end
object timeNearMeaningLabelLeft: TLabel
AnchorSideTop.Control = ShapeTimeNear
AnchorSideTop.Side = asrBottom
Left = 67
Height = 19
Top = 52
Width = 168
BorderSpacing.Around = 4
Caption = 'bald heißt: in den nächsten'
Color = clDefault
ParentColor = False
end
object timeNearMeaningLabelRight: TLabel
AnchorSideLeft.Control = timeNearMeaning
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = timeNearMeaning
AnchorSideTop.Side = asrCenter
Left = 316
Height = 19
Top = 52
Width = 40
BorderSpacing.Left = 4
Caption = 'Tagen'
Color = clDefault
ParentColor = False
end
object Label19: TLabel
AnchorSideTop.Control = symbols
AnchorSideTop.Side = asrCenter
Left = 12
Height = 19
Top = 310
Width = 83
Caption = 'Symbolleiste:'
Color = clDefault
ParentColor = False
end
object Button4: TButton
AnchorSideTop.Control = groupingProperty
AnchorSideTop.Side = asrBottom
Left = 16
Height = 41
Top = 384
Width = 69
AutoSize = True
BorderSpacing.InnerBorder = 4
Caption = ' OK '
OnClick = Button3Click
TabOrder = 0
end
object Button5: TButton
AnchorSideLeft.Control = Button4
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Button4
AnchorSideTop.Side = asrCenter
Left = 89
Height = 41
Top = 384
Width = 88
AutoSize = True
BorderSpacing.Around = 4
BorderSpacing.InnerBorder = 4
Caption = 'Abbrechen'
OnClick = cancelclick
TabOrder = 1
end
object timeNearMeaning: TEdit
AnchorSideLeft.Control = timeNearMeaningLabelLeft
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = timeNearMeaningLabelLeft
AnchorSideTop.Side = asrCenter
Left = 239
Height = 31
Top = 46
Width = 73
BorderSpacing.Left = 4
Constraints.MinWidth = 70
TabOrder = 2
Text = '2'
end
object symbols: TComboBox
AnchorSideLeft.Control = Label19
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = ShapeProvided
AnchorSideTop.Side = asrBottom
Left = 104
Height = 31
Top = 304
Width = 360
BorderSpacing.Around = 9
ItemHeight = 0
Items.Strings = (
'Text und Icons'
'Nur Text'
'Nur Icons'
)
Style = csDropDownList
TabOrder = 3
end
object ShapeOrdered: TShape
AnchorSideTop.Control = Label30
AnchorSideTop.Side = asrBottom
Left = 44
Height = 17
Top = 234
Width = 176
BorderSpacing.Around = 4
OnMouseUp = Shape1MouseUp
end
object ShapeProvided: TShape
AnchorSideTop.Control = Label31
AnchorSideTop.Side = asrBottom
Left = 44
Height = 17
Top = 278
Width = 176
BorderSpacing.Around = 4
OnMouseUp = Shape1MouseUp
end
object Label30: TLabel
AnchorSideTop.Control = ShapeOld
AnchorSideTop.Side = asrBottom
Left = 12
Height = 19
Top = 211
Width = 192
BorderSpacing.Around = 4
Caption = 'Farbe für vorgemerkte Medien:'
Color = clDefault
ParentColor = False
end
object Label31: TLabel
AnchorSideTop.Control = ShapeOrdered
AnchorSideTop.Side = asrBottom
Left = 12
Height = 19
Top = 255
Width = 282
BorderSpacing.Around = 4
Caption = 'Farbe für abholbereite (vorgemerkte) Medien:'
Color = clDefault
ParentColor = False
end
object Label34: TLabel
AnchorSideTop.Control = groupingProperty
AnchorSideTop.Side = asrCenter
Left = 12
Height = 19
Top = 350
Width = 82
Caption = 'Gruppierung.'
Color = clDefault
ParentColor = False
end
object groupingProperty: TComboBox
AnchorSideLeft.Control = Label19
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = symbols
AnchorSideTop.Side = asrBottom
Left = 104
Height = 31
Top = 344
Width = 360
BorderSpacing.Around = 9
ItemHeight = 0
Items.Strings = (
'Keine'
)
Style = csDropDownList
TabOrder = 4
end
end
object pageInternet: TPage
object Label13: TLabel
AnchorSideTop.Control = proxyHTTPName
AnchorSideTop.Side = asrCenter
Left = 55
Height = 15
Top = 194
Width = 40
Caption = 'HTTP:'
Color = clDefault
ParentColor = False
end
object Label14: TLabel
AnchorSideTop.Control = proxyHTTPSname
AnchorSideTop.Side = asrCenter
Left = 54
Height = 15
Top = 231
Width = 48
Caption = 'HTTPS:'
Color = clDefault
ParentColor = False
end
object Label15: TLabel
AnchorSideTop.Control = Panel6
AnchorSideTop.Side = asrBottom
Left = 15
Height = 15
Top = 81
Width = 177
BorderSpacing.Around = 5
Caption = 'Verbindungseinstellungen:'
Color = clDefault
ParentColor = False
end
object Label16: TLabel
AnchorSideTop.Control = proxySocksName
AnchorSideTop.Side = asrBottom
Left = 16
Height = 15
Top = 296
Width = 284
BorderSpacing.Around = 4
Caption = 'Zugriff auf die Homepages der Büchereien:'
Color = clDefault
ParentColor = False
Visible = False
end
object Button6: TButton
AnchorSideTop.Control = openSSLCAStore
AnchorSideTop.Side = asrBottom
Left = 16
Height = 41
Top = 459
Width = 74
AutoSize = True
BorderSpacing.InnerBorder = 4
Caption = ' OK '
Default = True
OnClick = Button3Click
TabOrder = 0
end
object Button7: TButton
AnchorSideLeft.Control = Button6
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Button6
AnchorSideTop.Side = asrCenter
Left = 94
Height = 41
Top = 459
Width = 97
AutoSize = True
BorderSpacing.Around = 4
BorderSpacing.InnerBorder = 4
Caption = 'Abbrechen'
OnClick = cancelclick
TabOrder = 1
end
object internetWindows: TRadioButton
AnchorSideTop.Control = Label15
AnchorSideTop.Side = asrBottom
Left = 28
Height = 23
Top = 101
Width = 305
BorderSpacing.Around = 4
Caption = 'Systeminterneteinstellungen übernehmen'
Checked = True
TabOrder = 2
TabStop = True
end
object internetDirect: TRadioButton
AnchorSideTop.Control = internetWindows
AnchorSideTop.Side = asrBottom
Left = 28
Height = 23
Top = 128
Width = 186
BorderSpacing.Around = 4
Caption = 'Direkter Internetzugang'
TabOrder = 3
end
object internetProxy: TRadioButton
AnchorSideTop.Control = internetDirect
AnchorSideTop.Side = asrBottom
Left = 28
Height = 23
Top = 155
Width = 244
BorderSpacing.Around = 4
Caption = 'Internetzugang über einen Proxy:'
OnChange = internetProxyChange
TabOrder = 4
end
object proxyHTTPName: TEdit
AnchorSideLeft.Control = Label14
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = internetProxy
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = proxyHTTPPort
Left = 106
Height = 33
Top = 185
Width = 421
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Top = 3
BorderSpacing.Around = 4
TabOrder = 5
end
object proxyHTTPSname: TEdit
AnchorSideLeft.Control = Label14
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = proxyHTTPName
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = proxyHTTPSport
Left = 106
Height = 33
Top = 222
Width = 421
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Around = 4
TabOrder = 6
end
object proxyHTTPPort: TEdit
AnchorSideTop.Control = proxyHTTPName
Left = 531
Height = 33
Top = 185
Width = 70
Anchors = [akTop, akRight]
Constraints.MinWidth = 70
TabOrder = 7
Text = '3128'
end
object proxyHTTPSport: TEdit
AnchorSideTop.Control = proxyHTTPSname
Left = 531
Height = 33
Top = 222
Width = 70
Anchors = [akTop, akRight]
Constraints.MinWidth = 70
TabOrder = 8
Text = '3128'
end
object Panel1: TPanel
AnchorSideTop.Control = Label16
AnchorSideTop.Side = asrBottom
Left = 28
Height = 44
Top = 316
Width = 364
BorderSpacing.Around = 5
BevelOuter = bvNone
ClientHeight = 44
ClientWidth = 364
TabOrder = 9
object homepageSimpleBrowser: TRadioButton
Left = 8
Height = 23
Top = 1
Width = 258
Caption = 'über integrierten Internet Explorer'
Checked = True
TabOrder = 0
TabStop = True
Visible = False
end
object homepageDefaultBrowser: TRadioButton
Left = 8
Height = 23
Top = 21
Width = 205
Caption = 'über den Standardbrowser'
TabOrder = 1
Visible = False
end
end
object autoUpdate: TCheckBox
AnchorSideTop.Control = Panel1
AnchorSideTop.Side = asrBottom
Left = 16
Height = 23
Top = 365
Width = 276
Caption = 'Automatisch auf Updates überprüfen'
TabOrder = 10
end
object checkCertificates: TCheckBox
AnchorSideTop.Control = autoUpdate
AnchorSideTop.Side = asrBottom
Left = 18
Height = 23
Top = 393
Width = 203
BorderSpacing.Around = 5
Caption = 'SSL-Zertifikate überprüfen'
TabOrder = 11
end
object proxySocksName: TEdit
AnchorSideLeft.Control = proxyHTTPSname
AnchorSideTop.Control = proxyHTTPSname
AnchorSideTop.Side = asrBottom
AnchorSideRight.Control = proxyHTTPSname
AnchorSideRight.Side = asrBottom
Left = 106
Height = 33
Top = 259
Width = 421
Anchors = [akTop, akLeft, akRight]
TabOrder = 12
end
object proxySocksPort: TEdit
AnchorSideLeft.Control = proxyHTTPSport
AnchorSideTop.Control = proxySocksName
AnchorSideRight.Control = proxyHTTPSport
AnchorSideRight.Side = asrBottom
Left = 531
Height = 33
Top = 259
Width = 70
Anchors = [akTop, akLeft, akRight]
Constraints.MinWidth = 70
TabOrder = 13
end
object Label26: TLabel
AnchorSideLeft.Control = Label14
AnchorSideTop.Control = proxySocksName
AnchorSideTop.Side = asrCenter
Left = 54
Height = 15
Top = 268
Width = 39
Caption = 'Socks'
Color = clDefault
ParentColor = False
end
object Label35: TLabel
Left = 15
Height = 15
Top = 10
Width = 114
Caption = 'Internetbackend:'
Color = clDefault
ParentColor = False
end
object Panel6: TPanel
AnchorSideTop.Control = Label35
AnchorSideTop.Side = asrBottom
Left = 28
Height = 46
Top = 30
Width = 214
AutoSize = True
BorderSpacing.Around = 5
BevelOuter = bvNone
ChildSizing.VerticalSpacing = 4
ChildSizing.Layout = cclLeftToRightThenTopToBottom
ClientHeight = 46
ClientWidth = 214
TabOrder = 14
object internetAccessW32: TRadioButton
AnchorSideTop.Control = internetAccessSynapse
AnchorSideTop.Side = asrBottom
Left = 0
Height = 23
Top = 27
Width = 214
Caption = 'Windows / Internet Explorer'
Checked = True
OnChange = internetAccessChange
TabOrder = 0
TabStop = True
end
object internetAccessSynapse: TRadioButton
Left = 0
Height = 23
Top = 0
Width = 153
Caption = 'Synapse / OpenSSL'
OnChange = internetAccessChange
TabOrder = 1
end
end
object openSSLCAStoreLabel: TLabel
AnchorSideTop.Control = openSSLCAStore
AnchorSideTop.Side = asrCenter
Left = 18
Height = 15
Top = 430
Width = 126
Caption = 'OpenSSL-CA-Datei:'
Color = clDefault
ParentColor = False
end
object openSSLCAStore: TEdit
AnchorSideLeft.Control = openSSLCAStoreLabel
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = checkCertificates
AnchorSideTop.Side = asrBottom
AnchorSideRight.Side = asrBottom
Left = 149
Height = 33
Top = 421
Width = 451
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Around = 5
TabOrder = 15
end
end
object pageMail: TPage
object Button8: TButton
AnchorSideLeft.Control = Button9
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Button9
AnchorSideTop.Side = asrCenter
Left = 94
Height = 41
Top = 437
Width = 88
AutoSize = True
BorderSpacing.Around = 5
BorderSpacing.InnerBorder = 4