source: tags/1.5.0/Forms/UFormCheck.lfm

Last change on this file was 184, checked in by chronos, 6 years ago
  • Added: New menu action Tools - Document check which shows a form for checking acronyms in text documents.
  • Added: Remember dimensions of Import, Export and Settings forms.
File size: 4.4 KB
Line 
1object FormCheck: TFormCheck
2 Left = 526
3 Height = 635
4 Top = 222
5 Width = 891
6 Caption = 'Check document'
7 ClientHeight = 635
8 ClientWidth = 891
9 DesignTimePPI = 120
10 OnClose = FormClose
11 OnCreate = FormCreate
12 OnDestroy = FormDestroy
13 OnShow = FormShow
14 LCLVersion = '1.8.2.0'
15 object Panel1: TPanel
16 Left = 0
17 Height = 635
18 Top = 0
19 Width = 224
20 Align = alLeft
21 BevelOuter = bvNone
22 ClientHeight = 635
23 ClientWidth = 224
24 TabOrder = 0
25 object ButtonCheck: TButton
26 Left = 11
27 Height = 31
28 Top = 13
29 Width = 94
30 Caption = 'Check'
31 OnClick = ButtonCheckClick
32 TabOrder = 0
33 end
34 object GroupBox1: TGroupBox
35 Left = 11
36 Height = 284
37 Top = 199
38 Width = 206
39 Anchors = [akTop, akLeft, akRight]
40 Caption = 'Summary section'
41 ClientHeight = 259
42 ClientWidth = 202
43 TabOrder = 1
44 object ButtonAcronymsSummary: TButton
45 Left = 6
46 Height = 31
47 Top = 8
48 Width = 150
49 Caption = 'Acronyms'
50 OnClick = ButtonAcronymsSummaryClick
51 TabOrder = 0
52 end
53 object LabelAcronymCountSummary: TLabel
54 Left = 6
55 Height = 20
56 Top = 48
57 Width = 103
58 Caption = 'Acronym count:'
59 ParentColor = False
60 end
61 object Label1: TLabel
62 Left = 8
63 Height = 20
64 Top = 72
65 Width = 75
66 Caption = 'Start string:'
67 ParentColor = False
68 end
69 object EditSummaryStart: TEdit
70 Left = 8
71 Height = 28
72 Top = 96
73 Width = 184
74 Anchors = [akTop, akLeft, akRight]
75 TabOrder = 1
76 end
77 object Label2: TLabel
78 Left = 8
79 Height = 20
80 Top = 128
81 Width = 69
82 Caption = 'End string:'
83 ParentColor = False
84 end
85 object EditSummaryEnd: TEdit
86 Left = 8
87 Height = 28
88 Top = 152
89 Width = 184
90 Anchors = [akTop, akLeft, akRight]
91 TabOrder = 2
92 end
93 end
94 object GroupBox2: TGroupBox
95 Left = 11
96 Height = 99
97 Top = 96
98 Width = 207
99 Anchors = [akTop, akLeft, akRight]
100 Caption = 'Content'
101 ClientHeight = 74
102 ClientWidth = 203
103 TabOrder = 2
104 object ButtonAcronymsContent: TButton
105 Left = 8
106 Height = 31
107 Top = 0
108 Width = 150
109 Caption = 'Acronyms'
110 OnClick = ButtonAcronymsContentClick
111 TabOrder = 0
112 end
113 object LabelAcronymCountContent: TLabel
114 Left = 8
115 Height = 20
116 Top = 40
117 Width = 103
118 Caption = 'Acronym count:'
119 ParentColor = False
120 end
121 end
122 object ButtonLoadFromFile: TButton
123 Left = 11
124 Height = 31
125 Top = 48
126 Width = 134
127 Caption = 'Load from file'
128 OnClick = ButtonLoadFromFileClick
129 TabOrder = 3
130 end
131 end
132 object Splitter1: TSplitter
133 Left = 224
134 Height = 635
135 Top = 0
136 Width = 6
137 end
138 object Panel2: TPanel
139 Left = 230
140 Height = 635
141 Top = 0
142 Width = 661
143 Align = alClient
144 BevelOuter = bvNone
145 ClientHeight = 635
146 ClientWidth = 661
147 TabOrder = 2
148 object PageControl1: TPageControl
149 Left = 8
150 Height = 619
151 Top = 8
152 Width = 645
153 ActivePage = TabSheetSource
154 Align = alClient
155 BorderSpacing.Around = 8
156 TabIndex = 0
157 TabOrder = 0
158 object TabSheetSource: TTabSheet
159 Caption = 'Source'
160 ClientHeight = 586
161 ClientWidth = 637
162 object MemoDocument: TMemo
163 Left = 8
164 Height = 570
165 Top = 8
166 Width = 620
167 Anchors = [akTop, akLeft, akRight, akBottom]
168 ScrollBars = ssAutoBoth
169 TabOrder = 0
170 end
171 end
172 object TabSheetReport: TTabSheet
173 Caption = 'Report'
174 ClientHeight = 586
175 ClientWidth = 637
176 object MemoReport: TMemo
177 Left = 8
178 Height = 568
179 Top = 8
180 Width = 620
181 Anchors = [akTop, akLeft, akRight, akBottom]
182 ReadOnly = True
183 ScrollBars = ssAutoBoth
184 TabOrder = 0
185 end
186 end
187 end
188 end
189 object OpenDialog1: TOpenDialog
190 left = 116
191 top = 493
192 end
193end
Note: See TracBrowser for help on using the repository browser.