File: TextSearch.dfm

package info (click to toggle)
mysql-query-browser 1.1.6-1sarge0
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 36,320 kB
  • ctags: 24,680
  • sloc: pascal: 203,479; xml: 136,561; ansic: 47,502; cpp: 28,926; sh: 12,433; objc: 4,823; java: 1,849; php: 1,485; python: 1,225; sql: 1,128; makefile: 872
file content (326 lines) | stat: -rw-r--r-- 8,162 bytes parent folder | download
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
object TextSearchForm: TTextSearchForm
  Left = 538
  Top = 252
  ActiveControl = SearchLU
  AlphaBlendValue = 150
  BorderStyle = bsToolWindow
  Caption = 'Search ...'
  ClientHeight = 206
  ClientWidth = 473
  Color = clBtnFace
  Constraints.MaxWidth = 569
  Constraints.MinWidth = 464
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Sans Serif'
  Font.Style = []
  FormStyle = fsStayOnTop
  KeyPreview = True
  OldCreateOrder = False
  Scaled = False
  OnActivate = FormActivate
  OnClose = FormClose
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  OnDeactivate = FormDeactivate
  OnKeyDown = FormKeyDown
  DesignSize = (
    473
    206)
  PixelsPerInch = 96
  TextHeight = 13
  object PageControl: TTntPageControl
    Left = 6
    Top = 6
    Width = 461
    Height = 195
    ActivePage = SearchTabSheet
    Anchors = [akLeft, akTop, akRight, akBottom]
    TabOrder = 0
    OnChange = PageControlChange
    object SearchTabSheet: TTntTabSheet
      Caption = 'Search'
      DesignSize = (
        453
        167)
      object SearchLbl: TTntLabel
        Left = 24
        Top = 18
        Width = 52
        Height = 13
        Alignment = taRightJustify
        Caption = 'Search for:'
      end
      object SearchLU: TTntComboBox
        Left = 84
        Top = 14
        Width = 355
        Height = 21
        Anchors = [akLeft, akTop, akRight]
        ItemHeight = 13
        TabOrder = 0
      end
      object SearchBtn: TTntButton
        Left = 276
        Top = 130
        Width = 75
        Height = 25
        Anchors = [akRight, akBottom]
        Caption = 'Search'
        TabOrder = 1
        OnClick = SearchBtnClick
      end
      object CloseBtn: TTntButton
        Left = 364
        Top = 130
        Width = 75
        Height = 25
        Anchors = [akRight, akBottom]
        Caption = 'Close'
        TabOrder = 2
        OnClick = CloseBtnClick
      end
      object DetailsBtn: TTntButton
        Left = 188
        Top = 130
        Width = 75
        Height = 25
        Anchors = [akRight, akBottom]
        Caption = 'Details >>'
        TabOrder = 3
        OnClick = DetailsBtnClick
      end
    end
    object ReplaceTabSheet: TTntTabSheet
      Caption = 'Replace'
      DesignSize = (
        453
        167)
      object ReplacesSearchLbl: TTntLabel
        Left = 24
        Top = 18
        Width = 52
        Height = 13
        Alignment = taRightJustify
        Caption = 'Search for:'
      end
      object ReplaceWithLbl: TTntLabel
        Left = 12
        Top = 54
        Width = 65
        Height = 13
        Alignment = taRightJustify
        Caption = 'Replace with:'
      end
      object ReplaceSourceLU: TTntComboBox
        Left = 84
        Top = 14
        Width = 355
        Height = 21
        Anchors = [akLeft, akTop, akRight]
        ItemHeight = 13
        TabOrder = 0
      end
      object ReplaceWithLU: TTntComboBox
        Left = 84
        Top = 50
        Width = 355
        Height = 21
        Anchors = [akLeft, akTop, akRight]
        ItemHeight = 13
        TabOrder = 1
      end
      object ReplaceAllBtn: TTntButton
        Left = 276
        Top = 130
        Width = 75
        Height = 25
        Anchors = [akRight, akBottom]
        Caption = 'Replace All'
        TabOrder = 2
        OnClick = ReplaceAllBtnClick
      end
      object Close2Btn: TTntButton
        Left = 364
        Top = 130
        Width = 75
        Height = 25
        Anchors = [akRight, akBottom]
        Caption = 'Close'
        TabOrder = 3
        OnClick = CloseBtnClick
      end
      object ReplaceBtn: TTntButton
        Left = 188
        Top = 130
        Width = 75
        Height = 25
        Anchors = [akRight, akBottom]
        Caption = 'Replace'
        TabOrder = 4
        OnClick = ReplaceBtnClick
      end
      object Details2Btn: TTntButton
        Left = 100
        Top = 130
        Width = 75
        Height = 25
        Anchors = [akRight, akBottom]
        Caption = 'Details >>'
        TabOrder = 5
        OnClick = DetailsBtnClick
      end
    end
    object OptionsTabSheet: TTntTabSheet
      Caption = 'Options'
      object OptionPnl: TPanel
        Left = 0
        Top = 0
        Width = 453
        Height = 167
        Align = alClient
        BevelOuter = bvNone
        TabOrder = 0
        object ScopeGBox: TTntGroupBox
          Left = 12
          Top = 80
          Width = 255
          Height = 71
          Caption = 'Scope'
          TabOrder = 0
          object SearchInSelectedColumnRBtn: TTntRadioButton
            Left = 16
            Top = 42
            Width = 231
            Height = 17
            Caption = 'Search only in selected text/column'
            TabOrder = 1
            OnClick = CaseSensitiveCBoxClick
          end
          object SearchAllColumnsRBtn: TTntRadioButton
            Left = 16
            Top = 20
            Width = 229
            Height = 17
            Caption = 'Search all text/columns'
            Checked = True
            TabOrder = 0
            TabStop = True
            OnClick = CaseSensitiveCBoxClick
          end
        end
        object DirectionGBox: TTntGroupBox
          Left = 282
          Top = 80
          Width = 157
          Height = 71
          Caption = 'Direction'
          TabOrder = 1
          object SearchDownRBtn: TTntRadioButton
            Left = 16
            Top = 42
            Width = 131
            Height = 17
            Caption = 'Search down'
            Checked = True
            TabOrder = 1
            TabStop = True
            OnClick = CaseSensitiveCBoxClick
          end
          object SearchUpRBtn: TTntRadioButton
            Left = 16
            Top = 20
            Width = 133
            Height = 17
            Caption = 'Search up'
            TabOrder = 0
            OnClick = CaseSensitiveCBoxClick
          end
        end
        object OptionsGBox: TTntGroupBox
          Left = 12
          Top = 2
          Width = 255
          Height = 71
          Caption = 'Options'
          TabOrder = 2
          object CaseSensitiveCBox: TTntCheckBox
            Left = 16
            Top = 20
            Width = 119
            Height = 17
            Caption = 'Case sensitive'
            TabOrder = 0
            OnClick = CaseSensitiveCBoxClick
          end
          object WholeWordsOnlyCBox: TTntCheckBox
            Left = 16
            Top = 42
            Width = 141
            Height = 17
            Caption = 'Whole words only'
            TabOrder = 1
            OnClick = CaseSensitiveCBoxClick
          end
          object UseRegExCBox: TTntCheckBox
            Left = 144
            Top = 20
            Width = 99
            Height = 17
            Caption = 'Use RegEx'
            Enabled = False
            TabOrder = 2
            OnClick = CaseSensitiveCBoxClick
          end
        end
        object TntGroupBox1: TTntGroupBox
          Left = 282
          Top = 2
          Width = 157
          Height = 71
          Caption = 'Origin'
          TabOrder = 3
          object SearchFromCursorRBtn: TTntRadioButton
            Left = 16
            Top = 42
            Width = 133
            Height = 17
            Caption = 'Search from cursor'
            Checked = True
            TabOrder = 1
            TabStop = True
            OnClick = CaseSensitiveCBoxClick
          end
          object SearchFromTopRBtn: TTntRadioButton
            Left = 16
            Top = 20
            Width = 133
            Height = 17
            Caption = 'Search from top'
            TabOrder = 0
            OnClick = CaseSensitiveCBoxClick
          end
        end
      end
    end
  end
  object NoMatchFoundPnl: TPanel
    Left = 267
    Top = 2
    Width = 199
    Height = 21
    Alignment = taRightJustify
    Anchors = [akTop, akRight]
    BevelOuter = bvNone
    Caption = 'No match found.'
    Font.Charset = DEFAULT_CHARSET
    Font.Color = clRed
    Font.Height = -11
    Font.Name = 'MS Sans Serif'
    Font.Style = [fsBold]
    ParentFont = False
    TabOrder = 1
    Visible = False
  end
end