-
Notifications
You must be signed in to change notification settings - Fork 3
/
frmLocalizationForm.dfm
134 lines (134 loc) · 3.54 KB
/
frmLocalizationForm.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
object frmLocalization: TfrmLocalization
Left = 0
Top = 0
Caption = 'Localization Editor'
ClientHeight = 523
ClientWidth = 838
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poMainFormCenter
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object Splitter1: TSplitter
Left = 329
Top = 0
Height = 523
ResizeStyle = rsUpdate
ExplicitLeft = 408
ExplicitTop = 176
ExplicitHeight = 100
end
object Panel1: TPanel
Left = 0
Top = 0
Width = 329
Height = 523
Align = alLeft
BevelOuter = bvNone
TabOrder = 0
object vetStrings: TVirtualEditTree
Left = 0
Top = 0
Width = 329
Height = 523
Align = alClient
Colors.SelectionRectangleBlendColor = clGray
Colors.SelectionRectangleBorderColor = clBlack
Colors.SelectionTextColor = clBlack
Header.AutoSizeIndex = 1
Header.Font.Charset = DEFAULT_CHARSET
Header.Font.Color = clWindowText
Header.Font.Height = -11
Header.Font.Name = 'Tahoma'
Header.Font.Style = []
Header.Height = 21
Header.Options = [hoAutoResize, hoColumnResize, hoDrag, hoShowSortGlyphs, hoVisible]
NodeDataSize = 8
SelectionBlendFactor = 32
SelectionCurveRadius = 3
TabOrder = 0
TreeOptions.AutoOptions = [toAutoDropExpand, toAutoScroll, toAutoScrollOnExpand, toAutoSpanColumns, toAutoTristateTracking, toAutoDeleteMovedNodes]
TreeOptions.MiscOptions = [toInitOnSave, toToggleOnDblClick, toWheelPanning]
TreeOptions.PaintOptions = [toShowButtons, toShowDropmark, toShowHorzGridLines, toShowRoot, toShowTreeLines, toShowVertGridLines, toThemeAware, toUseBlendedImages, toFullVertGridLines, toUseBlendedSelection]
TreeOptions.SelectionOptions = [toFullRowSelect, toRightClickSelect]
TreeOptions.StringOptions = [toAutoAcceptEditChange]
OnChange = vetStringsChange
OnGetText = vetStringsGetText
OnPaintText = vetStringsPaintText
OnInitChildren = vetStringsInitChildren
OnInitNode = vetStringsInitNode
Columns = <
item
Position = 0
Width = 100
WideText = 'String ID'
end
item
Position = 1
Width = 225
WideText = 'Text'
end>
end
end
object Panel2: TPanel
Left = 332
Top = 0
Width = 506
Height = 523
Align = alClient
BevelOuter = bvNone
TabOrder = 1
object memoText: TMemo
Left = 0
Top = 0
Width = 506
Height = 488
Align = alClient
ScrollBars = ssVertical
TabOrder = 0
OnChange = memoTextChange
end
object pnlControls: TPanel
Left = 0
Top = 488
Width = 506
Height = 35
Align = alBottom
BevelOuter = bvNone
TabOrder = 1
object btnSave: TButton
Left = 424
Top = 4
Width = 75
Height = 25
Caption = 'Save'
TabOrder = 0
OnClick = btnSaveClick
end
end
end
object pmuStrings: TPopupMenu
OnPopup = pmuStringsPopup
Left = 200
Top = 136
object mniFileExport: TMenuItem
Caption = 'Export to file'
OnClick = mniFileExportClick
end
object mniFileImport: TMenuItem
Caption = 'Import from file'
end
end
object dlgExport: TSaveTextFileDialog
Filter = 'Text file (*.txt)|*.txt'
Options = [ofOverwritePrompt, ofHideReadOnly, ofEnableSizing]
Left = 200
Top = 200
end
end