-
Notifications
You must be signed in to change notification settings - Fork 10
/
formmain.lfm
1523 lines (1523 loc) · 49.9 KB
/
formmain.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 MainForm: TMainForm
Left = 487
Height = 451
Top = 305
Width = 1029
Caption = 'Unbound Bible'
ClientHeight = 431
ClientWidth = 1029
Constraints.MinHeight = 400
Constraints.MinWidth = 600
Font.Color = clBlack
Font.Height = -16
Font.Name = 'Tahoma'
Font.Pitch = fpVariable
Font.Quality = fqDraft
Menu = MainMenu
OnClose = FormClose
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnDestroy = FormDestroy
OnShow = FormShow
LCLVersion = '2.2.4.0'
object StandardToolBar: TToolBar
Left = 0
Height = 30
Top = 0
Width = 1029
AutoSize = True
BorderWidth = 2
ButtonHeight = 28
ButtonWidth = 28
EdgeBorders = [ebBottom]
Font.Color = clBlack
Font.Height = -16
Font.Name = 'Tahoma'
Font.Pitch = fpVariable
Font.Quality = fqDraft
Images = Images
Indent = 4
ParentColor = False
ParentFont = False
ParentShowHint = False
ShowHint = True
TabOrder = 0
Wrapable = False
OnPaint = StandardToolBarPaint
object ToolSeparator2: TToolButton
Left = 266
Height = 28
Top = 0
Caption = 'ToolSeparator2'
Style = tbsDivider
end
object ToolButtonNew: TToolButton
Left = 154
Top = 0
HelpType = htKeyword
Action = ActionFileNew
Enabled = False
ShowCaption = False
end
object ToolButtonOpen: TToolButton
Left = 182
Top = 0
Action = ActionFileOpen
Enabled = False
end
object ToolButtonSave: TToolButton
Left = 210
Top = 0
Action = ActionFileSave
Enabled = False
end
object ToolButtonPrint: TToolButton
Left = 238
Top = 0
Action = ActionFilePrint
Enabled = False
Visible = False
end
object ToolSeparator3: TToolButton
Left = 149
Height = 28
Top = 0
ImageIndex = 3
Style = tbsDivider
end
object ToolButtonCut: TToolButton
Left = 271
Top = 0
Action = ActionEditCut
end
object ToolButtonCopy: TToolButton
Left = 299
Top = 0
Action = ActionEditCopy
end
object ToolButtonPaste: TToolButton
Left = 355
Top = 0
Action = ActionEditPaste
end
object ToolButtonUndo: TToolButton
Left = 383
Top = 0
Action = ActionEditUndo
end
object ToolSeparator5: TToolButton
Left = 556
Height = 28
Top = 0
Caption = 'ToolSeparator5'
ImageIndex = 15
Style = tbsDivider
end
object ToolSeparator6: TToolButton
Left = 645
Height = 28
Top = 0
Caption = 'ToolSeparator6'
Grouped = True
ImageIndex = 15
Style = tbsDivider
end
object ToolButtonBold: TToolButton
Left = 444
Top = 0
Action = ActionBold
Style = tbsCheck
end
object ToolButtonItalic: TToolButton
Left = 472
Top = 0
Action = ActionItalic
Style = tbsCheck
end
object ToolButtonUnderline: TToolButton
Left = 500
Top = 0
Action = ActionUnderline
Style = tbsCheck
end
object ToolButtonLink: TToolButton
Left = 528
Top = 0
Action = ActionLink
Style = tbsCheck
end
object ToolButtonLeft: TToolButton
Left = 561
Top = 0
Action = ActionLeft
Grouped = True
Style = tbsCheck
end
object ToolButtonCenter: TToolButton
Tag = 2
Left = 589
Top = 0
Action = ActionCenter
Grouped = True
Style = tbsCheck
end
object ToolButtonRight: TToolButton
Tag = 1
Left = 617
Top = 0
Action = ActionRight
Grouped = True
Style = tbsCheck
end
object ToolButtonBullets: TToolButton
Left = 650
Top = 0
Action = ActionBullets
Style = tbsCheck
end
object ToolButtonFont: TToolButton
Left = 416
Top = 0
Action = ActionFont
end
object ToolButtonVerses: TToolButton
Left = 327
Top = 0
Action = ActionCopyVerses
ParentShowHint = False
ShowHint = True
end
object ToolSeparator4: TToolButton
Left = 411
Height = 28
Top = 0
Style = tbsDivider
end
object ToolButtonCommentary: TToolButton
Left = 65
Top = 0
Action = ActionCommentaries
end
object ToolButtonShelf: TToolButton
Left = 4
Top = 0
Action = ActionModules
end
object ToolButtonDictionary: TToolButton
Left = 93
Top = 0
Action = ActionDictionaries
end
object ToolPanel: TPanel
Left = 678
Height = 28
Top = 0
Width = 230
BevelOuter = bvNone
Color = clWindow
Font.Color = clBlack
Font.Height = -16
Font.Name = 'Tahoma'
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentColor = False
ParentFont = False
TabOrder = 0
end
object ToolButtonSearch: TToolButton
Left = 908
Hint = 'Search'
Top = 0
Caption = 'Search...'
ImageIndex = 41
OnClick = ToolButtonSearchClick
end
object ToolButtonReference: TToolButton
Left = 37
Hint = 'Сross References'
Top = 0
Action = ActionReference
end
object ToolSeparator1: TToolButton
Left = 32
Height = 28
Top = 0
Caption = 'ToolSeparator'
Style = tbsDivider
end
object ToolButtonHistory: TToolButton
Left = 121
Top = 0
Action = ActionHistory
end
end
object PanelLeft: TPanel
Left = 0
Height = 376
Top = 32
Width = 331
Align = alLeft
ClientHeight = 376
ClientWidth = 331
Font.Color = clBlack
Font.Height = -16
Font.Name = 'Tahoma'
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentFont = False
TabOrder = 2
object ComboBox: TComboBox
Left = 5
Height = 25
Top = 1
Width = 321
Align = alTop
BorderSpacing.Left = 4
BorderSpacing.Right = 4
DropDownCount = 12
Font.Color = clWindowText
Font.Height = -13
ItemHeight = 17
OnChange = ComboBoxChange
OnDrawItem = ComboBoxDrawItem
ParentFont = False
Style = csDropDownList
TabOrder = 0
end
object BookBox: TListBox
Left = 5
Height = 341
Top = 30
Width = 272
Align = alClient
BorderSpacing.Left = 4
BorderSpacing.Top = 4
BorderSpacing.Right = 4
BorderSpacing.Bottom = 4
Font.Color = clBlack
Font.Height = -16
Font.Name = 'Tahoma'
Font.Pitch = fpVariable
Font.Quality = fqDraft
ItemHeight = 0
OnClick = BookBoxClick
ParentFont = False
ScrollWidth = 270
TabOrder = 1
end
object ChapterBox: TListBox
Left = 281
Height = 341
Top = 30
Width = 45
Align = alRight
BorderSpacing.Top = 4
BorderSpacing.Right = 4
BorderSpacing.Bottom = 4
Font.Color = clBlack
Font.Height = -16
Font.Name = 'Tahoma'
Font.Pitch = fpVariable
Font.Quality = fqDraft
ItemHeight = 0
OnClick = ChapterBoxClick
ParentFont = False
ScrollWidth = 43
TabOrder = 2
end
end
object StatusBar: TStatusBar
Left = 0
Height = 23
Top = 408
Width = 1029
Panels = <>
ParentFont = False
ParentShowHint = False
ShowHint = True
end
object Ruler: TPanel
Left = 0
Height = 2
Top = 30
Width = 1029
Align = alTop
Alignment = taLeftJustify
BevelOuter = bvNone
Font.Color = clBlack
Font.Height = -16
Font.Name = 'Tahoma'
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentFont = False
TabOrder = 1
end
object ToolEdit: TEdit
Left = 696
Height = 22
Top = 3
Width = 112
AutoSize = False
Color = clWhite
DoubleBuffered = True
Font.Height = 15
OnKeyDown = ToolEditKeyDown
ParentDoubleBuffered = False
ParentFont = False
TabOrder = 4
end
object Panel1: TPanel
Left = 336
Height = 376
Top = 32
Width = 693
Align = alClient
Caption = 'Panel1'
ClientHeight = 376
ClientWidth = 693
Font.Color = clBlack
Font.Height = -16
Font.Name = 'Tahoma'
Font.Pitch = fpVariable
Font.Quality = fqDraft
ParentFont = False
TabOrder = 3
object PageControl: TPageControl
Left = 1
Height = 374
Top = 1
Width = 691
ActivePage = TabSheetBible
Align = alClient
Font.Color = clWindowText
Font.Height = -13
ParentFont = False
PopupMenu = PopupTabs
TabIndex = 0
TabOrder = 0
OnChange = PageControlChange
OnMouseUp = PageControlMouseUp
object TabSheetBible: TTabSheet
Caption = 'Bible'
ClientHeight = 344
ClientWidth = 683
Font.Color = clWindowText
Font.Height = -12
ParentFont = False
object MemoBible: TUnboundMemo
Cursor = crArrow
Left = 0
Height = 344
Top = 0
Width = 683
Align = alClient
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
HideSelection = False
OnContextPopup = MemoContextPopup
OnKeyDown = MemoKeyDown
OnMouseLeave = MemoMouseLeave
OnMouseUp = MemoMouseUp
OnSelectionChange = MemoSelectionChange
ParentFont = False
ReadOnly = True
ScrollBars = ssBoth
TabOrder = 0
ZoomFactor = 1
Linkable = True
Paragraphic = True
OnParagraphChange = MemoBibleParagraphChange
end
end
object TabSheetSearch: TTabSheet
Caption = 'Search'
ClientHeight = 344
ClientWidth = 683
Font.Color = clWindowText
Font.Height = -13
ImageIndex = 1
ParentFont = False
object MemoSearch: TUnboundMemo
Cursor = crArrow
Left = 0
Height = 344
Top = 0
Width = 683
Align = alClient
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
HideSelection = False
OnContextPopup = MemoContextPopup
OnKeyDown = MemoKeyDown
OnMouseLeave = MemoMouseLeave
OnMouseUp = MemoMouseUp
OnSelectionChange = MemoSelectionChange
ParentFont = False
ReadOnly = True
ScrollBars = ssBoth
TabOrder = 0
ZoomFactor = 1
Linkable = True
end
end
object TabSheetCompare: TTabSheet
Caption = 'Compare'
ClientHeight = 344
ClientWidth = 683
Font.Color = clWindowText
Font.Height = -12
ImageIndex = 3
ParentFont = False
object MemoCompare: TUnboundMemo
Cursor = crArrow
Left = 0
Height = 344
Top = 0
Width = 683
Align = alClient
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
HideSelection = False
OnContextPopup = MemoContextPopup
OnKeyDown = MemoKeyDown
OnMouseLeave = MemoMouseLeave
OnMouseUp = MemoMouseUp
OnSelectionChange = MemoSelectionChange
ParentFont = False
ReadOnly = True
ScrollBars = ssBoth
TabOrder = 0
ZoomFactor = 1
Linkable = True
end
end
object TabSheetReference: TTabSheet
Caption = 'Сross-References'
ClientHeight = 344
ClientWidth = 683
Font.Color = clWindowText
Font.Height = -13
ParentFont = False
object MemoReference: TUnboundMemo
Cursor = crArrow
Left = 0
Height = 344
Top = 0
Width = 683
Align = alClient
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
HideSelection = False
OnContextPopup = MemoContextPopup
OnKeyDown = MemoKeyDown
OnMouseLeave = MemoMouseLeave
OnMouseUp = MemoMouseUp
OnSelectionChange = MemoSelectionChange
ParentFont = False
ReadOnly = True
ScrollBars = ssBoth
TabOrder = 0
ZoomFactor = 1
Linkable = True
end
end
object TabSheetCommentary: TTabSheet
Caption = 'Commentaries'
ClientHeight = 344
ClientWidth = 683
Font.Color = clWindowText
Font.Height = -13
ParentFont = False
object MemoCommentary: TUnboundMemo
Cursor = crArrow
Left = 0
Height = 344
Top = 0
Width = 683
Align = alClient
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
HideSelection = False
OnContextPopup = MemoContextPopup
OnKeyDown = MemoKeyDown
OnMouseLeave = MemoMouseLeave
OnMouseUp = MemoMouseUp
OnSelectionChange = MemoSelectionChange
ParentFont = False
ReadOnly = True
ScrollBars = ssBoth
TabOrder = 0
ZoomFactor = 1
Linkable = True
end
end
object TabSheetDictionary: TTabSheet
Caption = 'Dictionaries'
ClientHeight = 344
ClientWidth = 683
Font.Color = clWindowText
Font.Height = -13
ParentFont = False
object MemoDictionary: TUnboundMemo
Cursor = crArrow
Left = 0
Height = 344
Top = 0
Width = 683
Align = alClient
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
HideSelection = False
OnContextPopup = MemoContextPopup
OnKeyDown = MemoKeyDown
OnMouseLeave = MemoMouseLeave
OnMouseUp = MemoMouseUp
OnSelectionChange = MemoSelectionChange
ParentFont = False
ReadOnly = True
ScrollBars = ssBoth
TabOrder = 0
ZoomFactor = 1
Linkable = True
end
end
object TabSheetHistory: TTabSheet
Caption = 'History'
ClientHeight = 344
ClientWidth = 683
Font.Color = clWindowText
Font.Height = -13
ParentFont = False
object MemoHistory: TUnboundMemo
Cursor = crArrow
Left = 0
Height = 344
Top = 0
Width = 683
Align = alClient
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
HideSelection = False
OnContextPopup = MemoContextPopup
OnKeyDown = MemoKeyDown
OnMouseLeave = MemoMouseLeave
OnMouseUp = MemoMouseUp
OnSelectionChange = MemoSelectionChange
ParentFont = False
ReadOnly = True
ScrollBars = ssBoth
TabOrder = 0
ZoomFactor = 1
Linkable = True
end
end
object TabSheetNotes: TTabSheet
Caption = 'Notes'
ClientHeight = 344
ClientWidth = 683
Font.Color = clWindowText
Font.Height = -13
ImageIndex = 2
ParentFont = False
object MemoNotes: TUnboundMemo
Cursor = crArrow
Left = 0
Height = 344
Top = 0
Width = 683
Align = alClient
Font.Color = clWindowText
Font.Height = -16
Font.Name = 'Tahoma'
HideSelection = False
OnContextPopup = MemoContextPopup
OnKeyDown = MemoKeyDown
OnMouseUp = MemoMouseUp
OnSelectionChange = MemoSelectionChange
ParentFont = False
ScrollBars = ssBoth
TabOrder = 0
ZoomFactor = 1
Linkable = True
end
end
end
end
object Splitter1: TSplitter
Left = 331
Height = 376
Top = 32
Width = 5
end
object MainMenu: TMainMenu
Images = Images
Left = 400
Top = 216
object miTools: TMenuItem
Caption = '&Tools'
object miModules: TMenuItem
Action = ActionModules
Caption = 'Modules'
end
object N7: TMenuItem
Caption = '-'
end
object miSearch: TMenuItem
Action = ActionSearchfor
Visible = False
end
object miCompare: TMenuItem
Action = ActionCompare
Caption = 'Compare...'
end
object miRrefx: TMenuItem
Action = ActionReference
end
object miCommentaries: TMenuItem
Action = ActionCommentaries
Caption = 'Commentary'
end
object miDictionaries: TMenuItem
Action = ActionDictionaries
Caption = 'Dictionary'
end
object miHistory: TMenuItem
Action = ActionHistory
Caption = 'History'
end
object N5: TMenuItem
Caption = '-'
end
object miInterlinear: TMenuItem
Action = ActionInterlinear
Caption = 'Interlinear'
end
object N8: TMenuItem
Caption = '-'
end
object miOptions: TMenuItem
Action = ActionOptions
end
object N4: TMenuItem
Caption = '-'
end
object miExit: TMenuItem
Action = ActionExit
end
end
object miEdit: TMenuItem
Caption = '&Edit'
object miUndo: TMenuItem
Action = ActionEditUndo
end
object N2: TMenuItem
Caption = '-'
end
object miCut: TMenuItem
Action = ActionEditCut
end
object miCopy: TMenuItem
Action = ActionEditCopy
end
object miPaste: TMenuItem
Action = ActionEditPaste
end
object miClear: TMenuItem
Action = ActionEditDel
Caption = 'Delete'
end
object miSelectAll: TMenuItem
Action = ActionEditSelAll
Caption = 'Select all'
end
object N3: TMenuItem
Caption = '-'
end
object miVerses: TMenuItem
Action = ActionCopyVerses
end
object miCopyAs: TMenuItem
Action = ActionCopyAs
end
end
object miNotes: TMenuItem
Caption = '&Notes'
object miNoteNew: TMenuItem
Action = ActionFileNew
end
object miNoteOpen: TMenuItem
Action = ActionFileOpen
end
object miNoteSave: TMenuItem
Action = ActionFileSave
end
object miNoteSaveAs: TMenuItem
Action = ActionFileSaveAs
end
object miPrint: TMenuItem
Action = ActionFilePrint
end
object N1: TMenuItem
Caption = '-'
end
object miRecent: TMenuItem
Caption = 'Open Recent'
end
end
object miHelp: TMenuItem
Caption = '&Help'
object N9: TMenuItem
Caption = '-'
Visible = False
end
object miHome: TMenuItem
Caption = 'Home Page'
ImageIndex = 31
OnClick = miHomeClick
end
object miDonate: TMenuItem
Caption = 'Become a Patron'
OnClick = miDonateClick
end
object MenuItem2: TMenuItem
Caption = '-'
end
object miDownload: TMenuItem
Caption = 'Bible Downloads'
ImageIndex = 33
OnClick = miDownloadClick
end
object miBibleFolder: TMenuItem
Caption = 'Bible Folder'
Hint = ' Open bible folder'
OnClick = miBibleFolderClick
end
object N6: TMenuItem
Caption = '-'
end
object miIssue: TMenuItem
Caption = 'Report an Issue'
OnClick = miIssueClick
end
object miHelpAbout: TMenuItem
Action = ActionAbout
Caption = 'About'
ImageIndex = 0
end
end
end
object PopupMenu: TPopupMenu
Images = Images
OnPopup = PopupMenuPopup
Left = 488
Top = 104
object pmSearchfor: TMenuItem
Action = ActionSearchfor
AutoCheck = True
end
object pmLookup: TMenuItem
Action = ActionLookup
end
object pmSeparator: TMenuItem
Caption = '-'
end
object pmCut: TMenuItem
Action = ActionEditCut
Caption = 'Cut'
SubMenuImages = Images
end
object pmCopy: TMenuItem
Action = ActionEditCopy
Caption = 'Copy'
end
object pmPaste: TMenuItem
Action = ActionEditPaste
Caption = 'Paste'
end
object pmSeparator2: TMenuItem
Caption = '-'
end
object pmVerses: TMenuItem
Action = ActionCopyVerses
end
object pmCopyAs: TMenuItem
Action = ActionCopyAs
Bitmap.Data = {
36040000424D3604000000000000360000002800000010000000100000000100
2000000000000004000064000000640000000000000000000000FF00FF00FF00
FF00FF00FF00FF00FF00FF00FF00FF00FF00BCADA8FFBCADA8FFBCADA8FFBCAD
A8FFBCADA8FFBCADA8FFBCADA8FFBCADA8FFBCADA8FFFF00FF00FF00FF00FF00
FF00FF00FF00FF00FF00FF00FF00FF00FF00786D61FF786D61FF786D61FF786D
61FF786D61FF786D61FF786D61FF786D61FF786D61FFFF00FF00FF00FF00FF00
FF00FF00FF00FF00FF00FF00FF00FF00FF007D7165FFFFFFFFFFFFFFFFFFFFFF
FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7D7165FFFF00FF00FF00FF00FF00
FF00FF00FF00BCADA8FFBCADA8FFBCADA8FF817569FFF7F5F1FFAD7930FFAD79
30FFAD7930FFAD7930FFCCAD81FFF7F5F1FF817569FFFF00FF00FF00FF00FF00
FF00FF00FF00786D61FF786D61FF786D61FF867A6EFFF5F1ECFFF5F1ECFFF5F1
ECFFF5F1ECFFF5F1ECFFF5F1ECFFF5F1ECFF867A6EFFFF00FF00BCADA8FFBCAD
A8FFBCADA8FF7D7165FFFFFFFFFFFFFFFFFF8C7F73FFF2EEE9FFAC772EFFAC77
2EFFAC772EFFAC772EFFC6A679FFE6E1DBFF877B6FFFFF00FF00786D61FF786D
61FF786D61FF817569FFF7F5F1FFAD7930FF928578FFEFE9E2FFEFE9E2FFEFE9
E2FFEFE9E2FFE8E2DBFFDBD7D1FFCAC5BEFF81766AFFFF00FF007D7165FFFFFF
FFFFFFFFFFFF867A6EFFF5F1ECFFF5F1ECFF978A7DFFEDE8E0FFAB762DFFC7A6
78FFEDE8E0FFA79C8FFF978A7DFF978A7DFF978A7DFFFF00FF00817569FFF7F5
F1FFAD7930FF8C7F73FFF2EEE9FFAC772EFF9C8E81FFEAE3DAFFEAE3DAFFEAE3
DAFFEAE3DAFFADA298FFF3EDE7FFF3EDE7FFB6ABA0FFFF00FF00867A6EFFF5F1
ECFFF5F1ECFF928578FFEFE9E2FFEFE9E2FFA09285FFF5F1EDFFF5F1EDFFF5F1
EDFFF5F1EDFFB5ACA3FFFEFDFCFFB5ACA3FFC2B3ACFFFF00FF008C7F73FFF2EE
E9FFAC772EFF978A7DFFEDE8E0FFAB762DFFA39587FFA39587FFA39587FFA395
87FFACA093FFA19385FFA39587FFC2B2ACFFFF00FF00FF00FF00928578FFEFE9
E2FFEFE9E2FF9C8E81FFEAE3DAFFEAE3DAFFEAE3DAFFEAE3DAFFADA298FFF3ED
E7FFF3EDE7FFB6ABA0FFFF00FF00FF00FF00FF00FF00FF00FF00978A7DFFEDE8
E0FFAB762DFFA09285FFF5F1EDFFF5F1EDFFF5F1EDFFF5F1EDFFB5ACA3FFFEFD
FCFFB5ACA3FFC2B3ACFFFF00FF00FF00FF00FF00FF00FF00FF009C8E81FFEAE3
DAFFEAE3DAFFA39587FFA39587FFA39587FFA39587FFACA093FFA19385FFA395
87FFC2B2ACFFFF00FF00FF00FF00FF00FF00FF00FF00FF00FF00A09285FFF5F1
EDFFF5F1EDFFF5F1EDFFF5F1EDFFB5ACA3FFFEFDFCFFB5ACA3FFC2B3ACFFFF00
FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00A39587FFA395
87FFA39587FFA39587FFACA093FFA19385FFA39587FFC2B2ACFFFF00FF00FF00
FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00FF00
}
ImageIndex = 8
end
object pmSeparatorH: TMenuItem
Caption = '-'
end
object pmCleanHistory: TMenuItem
Action = ActionCleanHistory
end
end
object ActionList: TActionList
Images = Images
Left = 400
Top = 104
object ActionAbout: THelpAction
Category = 'Tools'
Caption = 'CmdAbout'
ImageIndex = 31
OnExecute = CmdAbout
end
object ActionFileNew: TAction
Category = 'File'
Caption = '&New'
Hint = 'Create a new file'
ImageIndex = 1
OnExecute = CmdFileNew
ShortCut = 16462
end
object ActionFileOpen: TAction
Category = 'File'
Caption = '&Open...'
Hint = 'Open an existing file'
ImageIndex = 2
OnExecute = CmdFileOpen
ShortCut = 16463
end
object ActionFileSave: TAction
Category = 'File'
Caption = '&Save'
Hint = 'Save current file'
ImageIndex = 3
OnExecute = CmdFileSave
ShortCut = 16467
end
object ActionFilePrint: TAction
Category = 'File'
Caption = '&Print'
Hint = 'Print current file'
ImageIndex = 4
OnExecute = CmdFilePrint
ShortCut = 16464
end
object ActionExit: TAction
Category = 'File'
Caption = 'E&xit'
Hint = 'Exit this application'
OnExecute = CmdExit
ShortCut = 32856
end
object ActionFileSaveAs: TAction
Category = 'File'
Caption = 'Save &As...'
Hint = 'Save current file under a new name'
OnExecute = CmdFileSaveAs
end
object ActionEditCut: TAction
Category = 'Edit'
Caption = 'Cu&t'
Enabled = False
Hint = 'Delete selected item'
ImageIndex = 6
OnExecute = CmdEdit
ShortCut = 16472
end
object ActionEditCopy: TAction
Category = 'Edit'
Caption = '&Copy'
Hint = 'Copy selected item to clipboard'
ImageIndex = 7
OnExecute = CmdEdit
ShortCut = 16451
end
object ActionEditPaste: TAction
Category = 'Edit'
Caption = '&Paste'
Enabled = False
Hint = 'Paste contents of clipboard'
ImageIndex = 9
OnExecute = CmdEdit
ShortCut = 16470
end
object ActionEditUndo: TAction
Category = 'Edit'
Caption = '&Undo'
Enabled = False
Hint = 'Undo the last action'
ImageIndex = 10
OnExecute = CmdEdit
ShortCut = 16474
end
object ActionEditDel: TAction
Category = 'Edit'
Caption = 'EditDelCmd'
Enabled = False
Hint = 'Delete selected item'
OnExecute = CmdEdit
end
object ActionEditSelAll: TEditSelectAll
Category = 'Edit'
Caption = 'Вы&делить все...'
Enabled = False
Hint = 'Выделить все'
OnExecute = CmdEdit
ShortCut = 16449