File: EditorSql.dfm

package info (click to toggle)
mysql-admin 1.2.5rc-2
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 80,944 kB
  • ctags: 43,103
  • sloc: sql: 295,916; pascal: 256,535; cpp: 74,487; ansic: 68,881; objc: 26,417; sh: 16,867; yacc: 10,755; java: 9,917; xml: 8,453; php: 2,806; python: 2,068; makefile: 1,252; perl: 3
file content (439 lines) | stat: -rw-r--r-- 10,336 bytes parent folder | download | duplicates (2)
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
object EditorSqlForm: TEditorSqlForm
  Left = 375
  Top = 218
  ActiveControl = SqlUCE
  Caption = 'MySQL SQL Editor'
  ClientHeight = 433
  ClientWidth = 596
  Color = clBtnFace
  Font.Charset = DEFAULT_CHARSET
  Font.Color = clWindowText
  Font.Height = -11
  Font.Name = 'MS Shell Dlg 2'
  Font.Style = []
  OldCreateOrder = False
  Position = poMainFormCenter
  Scaled = False
  OnCloseQuery = FormCloseQuery
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  PixelsPerInch = 96
  TextHeight = 13
  object BottomPnl: TTntPanel
    Left = 0
    Top = 382
    Width = 596
    Height = 51
    Align = alBottom
    BevelOuter = bvNone
    TabOrder = 0
    DesignSize = (
      596
      51)
    object SepBevel: TTntBevel
      Left = 0
      Top = 0
      Width = 596
      Height = 3
      Align = alTop
      Shape = bsTopLine
      ExplicitWidth = 593
    end
    object ExecuteSQLBtn: TTntButton
      Left = 370
      Top = 13
      Width = 101
      Height = 25
      Anchors = [akTop, akRight]
      Caption = 'Execute SQL'
      TabOrder = 0
      OnClick = ExecuteSQLBtnClick
    end
    object CancelBtn: TTntButton
      Left = 482
      Top = 13
      Width = 101
      Height = 25
      Anchors = [akTop, akRight]
      Caption = 'Cancel'
      TabOrder = 1
      OnClick = CancelBtnClick
    end
  end
  object SqlUCE: TUniCodeEdit
    Left = 0
    Top = 0
    Width = 596
    Height = 382
    Cursor = crIBeam
    Align = alClient
    BevelInner = bvNone
    BevelOuter = bvNone
    BorderStyle = bsNone
    CharWidth = 7
    Font.Charset = ANSI_CHARSET
    Font.Color = clWindowText
    Font.Height = -11
    Font.Name = 'Bitstream Vera Sans Mono'
    Font.Pitch = fpFixed
    Font.Style = []
    GutterColor = clBtnFace
    GutterWidth = 40
    HighLighter = UCESQLHighlighter
    Keystrokes = <
      item
        ShortCut = 8230
        Command = ecSelectUp
      end
      item
        ShortCut = 38
        Command = ecUp
      end
      item
        ShortCut = 16422
        Command = ecScrollUp
      end
      item
        ShortCut = 40
        Command = ecDown
      end
      item
        ShortCut = 8232
        Command = ecSelectDown
      end
      item
        ShortCut = 16424
        Command = ecScrollDown
      end
      item
        ShortCut = 37
        Command = ecLeft
      end
      item
        ShortCut = 8229
        Command = ecSelectLeft
      end
      item
        ShortCut = 16421
        Command = ecWordLeft
      end
      item
        ShortCut = 24613
        Command = ecSelectWordLeft
      end
      item
        ShortCut = 39
        Command = ecRight
      end
      item
        ShortCut = 8231
        Command = ecSelectRight
      end
      item
        ShortCut = 16423
        Command = ecWordRight
      end
      item
        ShortCut = 24615
        Command = ecSelectWordRight
      end
      item
        ShortCut = 34
        Command = ecPageDown
      end
      item
        ShortCut = 8226
        Command = ecSelectPageDown
      end
      item
        ShortCut = 16418
        Command = ecPageBottom
      end
      item
        ShortCut = 24610
        Command = ecSelectPageBottom
      end
      item
        ShortCut = 33
        Command = ecPageUp
      end
      item
        ShortCut = 8225
        Command = ecSelectPageUp
      end
      item
        ShortCut = 16417
        Command = ecPageTop
      end
      item
        ShortCut = 24609
        Command = ecSelectPageTop
      end
      item
        ShortCut = 36
        Command = ecLineStart
      end
      item
        ShortCut = 8228
        Command = ecSelectLineStart
      end
      item
        ShortCut = 16420
        Command = ecEditorTop
      end
      item
        ShortCut = 24612
        Command = ecSelectEditorTop
      end
      item
        ShortCut = 35
        Command = ecLineEnd
      end
      item
        ShortCut = 8227
        Command = ecSelectLineEnd
      end
      item
        ShortCut = 16419
        Command = ecEditorBottom
      end
      item
        ShortCut = 24611
        Command = ecSelectEditorBottom
      end
      item
        ShortCut = 45
        Command = ecToggleMode
      end
      item
        ShortCut = 16470
        Command = ecPaste
      end
      item
        ShortCut = 8237
        Command = ecPaste
      end
      item
        ShortCut = 46
        Command = ecDeleteChar
      end
      item
        ShortCut = 8
        Command = ecDeleteLastChar
      end
      item
        ShortCut = 16392
        Command = ecDeleteLastWord
      end
      item
        ShortCut = 16474
        Command = ecUndo
      end
      item
        ShortCut = 32776
        Command = ecUndo
      end
      item
        ShortCut = 24666
        Command = ecRedo
      end
      item
        ShortCut = 40968
        Command = ecRedo
      end
      item
        ShortCut = 13
        Command = ecLineBreak
      end
      item
        ShortCut = 16461
        Command = ecLineBreak
      end
      item
        ShortCut = 16449
        Command = ecSelectAll
      end
      item
        ShortCut = 16451
        Command = ecCopy
      end
      item
        ShortCut = 16429
        Command = ecCopy
      end
      item
        ShortCut = 16472
        Command = ecCut
      end
      item
        ShortCut = 8238
        Command = ecCut
      end
      item
        ShortCut = 24649
        Command = ecBlockIndent
      end
      item
        ShortCut = 16462
        Command = ecInsertLine
      end
      item
        ShortCut = 16468
        Command = ecDeleteWord
      end
      item
        ShortCut = 16430
        Command = ecDeleteWord
      end
      item
        ShortCut = 24661
        Command = ecBlockUnindent
      end
      item
        ShortCut = 16473
        Command = ecDeleteLine
      end
      item
        ShortCut = 24665
        Command = ecDeleteEOL
      end
      item
        ShortCut = 16432
        Command = ecGotoMarker0
      end
      item
        ShortCut = 16433
        Command = ecGotoMarker1
      end
      item
        ShortCut = 16434
        Command = ecGotoMarker2
      end
      item
        ShortCut = 16435
        Command = ecGotoMarker3
      end
      item
        ShortCut = 16436
        Command = ecGotoMarker4
      end
      item
        ShortCut = 16437
        Command = ecGotoMarker5
      end
      item
        ShortCut = 16438
        Command = ecGotoMarker6
      end
      item
        ShortCut = 16439
        Command = ecGotoMarker7
      end
      item
        ShortCut = 16440
        Command = ecGotoMarker8
      end
      item
        ShortCut = 16441
        Command = ecGotoMarker9
      end
      item
        ShortCut = 24624
        Command = ecToggleMarker0
      end
      item
        ShortCut = 24625
        Command = ecToggleMarker1
      end
      item
        ShortCut = 24626
        Command = ecToggleMarker2
      end
      item
        ShortCut = 24627
        Command = ecToggleMarker3
      end
      item
        ShortCut = 24628
        Command = ecToggleMarker4
      end
      item
        ShortCut = 24629
        Command = ecToggleMarker5
      end
      item
        ShortCut = 24630
        Command = ecToggleMarker6
      end
      item
        ShortCut = 24631
        Command = ecToggleMarker7
      end
      item
        ShortCut = 24632
        Command = ecToggleMarker8
      end
      item
        ShortCut = 24633
        Command = ecToggleMarker9
      end>
    LineNumberFont.Charset = DEFAULT_CHARSET
    LineNumberFont.Color = clBlack
    LineNumberFont.Height = -8
    LineNumberFont.Name = 'Terminal'
    LineNumberFont.Style = []
    MaxUndo = 10
    Options = [eoAutoExtendWorkWidth, eoAutoIndent, eoAutoUnindent, eoCursorThroughTabs, eoGroupUndo, eoHideSelection, eoInserting, eoLineNumbers, eoSmartTabs, eoTripleClicks, eoUseSyntaxHighlighting, eoWantTabs]
    ParentColor = False
    ParentFont = False
    RightMargin = -1
    ScrollHintColor.Background = clAppWorkSpace
    ScrollHintColor.Foreground = clInfoText
    ScrollHintColor.FontStyles = []
    ScrollHintColor.ForceFontStyles = False
    SelectedColor.Background = clHighlight
    SelectedColor.Foreground = clHighlightText
    SelectedColor.FontStyles = []
    SelectedColor.ForceFontStyles = False
    TabOrder = 1
    WorkWidth = 596
  end
  object UCESQLHighlighter: TUCESQLHighlighter
    DefaultFilter = 'SQL script files (*.sql)|*.sql'
    CommentAttributes.Background = clWindow
    CommentAttributes.Foreground = clGray
    CommentAttributes.Style = [fsItalic]
    CommentWithCommandAttributes.Background = clWindow
    CommentWithCommandAttributes.Foreground = clWindowText
    CommentWithCommandAttributes.Style = []
    EmbeddedCommandAttributes.Background = clWindow
    EmbeddedCommandAttributes.Foreground = clWindowText
    EmbeddedCommandAttributes.Style = []
    IdentifierAttributes.Background = clWindow
    IdentifierAttributes.Foreground = clWindowText
    IdentifierAttributes.Style = []
    KeyAttributes.Background = clWindow
    KeyAttributes.Foreground = clBlue
    KeyAttributes.Style = [fsBold]
    NumberAttributes.Background = clWindow
    NumberAttributes.Foreground = clFuchsia
    NumberAttributes.Style = []
    SpaceAttributes.Background = clWindow
    SpaceAttributes.Foreground = clWindowText
    SpaceAttributes.Style = []
    StringAttributes.Background = clWindow
    StringAttributes.Foreground = clPurple
    StringAttributes.Style = []
    SymbolAttributes.Background = clWindow
    SymbolAttributes.Foreground = clWindowText
    SymbolAttributes.Style = []
    SystemVariableAttributes.Background = clWindow
    SystemVariableAttributes.Foreground = clWindowText
    SystemVariableAttributes.Style = []
    UserVariableAttributes.Background = clWindow
    UserVariableAttributes.Foreground = clWindowText
    UserVariableAttributes.Style = []
    Left = 512
    Top = 16
  end
end