~ubuntu-branches/ubuntu/saucy/lazarus/saucy

« back to all changes in this revision

Viewing changes to ide/patheditordlg.lfm

  • Committer: Package Import Robot
  • Author(s): Paul Gevers, Abou Al Montacir, Bart Martens, Paul Gevers
  • Date: 2013-06-08 14:12:17 UTC
  • mfrom: (1.1.9)
  • Revision ID: package-import@ubuntu.com-20130608141217-7k0cy9id8ifcnutc
Tags: 1.0.8+dfsg-1
[ Abou Al Montacir ]
* New upstream major release and multiple maintenace release offering many
  fixes and new features marking a new milestone for the Lazarus development
  and its stability level.
  - The detailed list of changes can be found here:
    http://wiki.lazarus.freepascal.org/Lazarus_1.0_release_notes
    http://wiki.lazarus.freepascal.org/Lazarus_1.0_fixes_branch
* LCL changes:
  - LCL is now a normal package.
      + Platform independent parts of the LCL are now in the package LCLBase
      + LCL is automatically recompiled when switching the target platform,
        unless pre-compiled binaries for this target are already installed.
      + No impact on existing projects.
      + Linker options needed by LCL are no more added to projects that do
        not use the LCL package.
  - Minor changes in LCL basic classes behaviour
      + TCustomForm.Create raises an exception if a form resource is not
        found.
      + TNotebook and TPage: a new implementation of these classes was added.
      + TDBNavigator: It is now possible to have focusable buttons by setting
        Options = [navFocusableButtons] and TabStop = True, useful for
        accessibility and for devices with neither mouse nor touch screen.
      + Names of TControlBorderSpacing.GetSideSpace and GetSpace were swapped
        and are now consistent. GetSideSpace = Around + GetSpace.
      + TForm.WindowState=wsFullscreen was added
      + TCanvas.TextFitInfo was added to calculate how many characters will
        fit into a specified Width. Useful for word-wrapping calculations.
      + TControl.GetColorResolvingParent and
        TControl.GetRGBColorResolvingParent were added, simplifying the work
        to obtain the final color of the control while resolving clDefault
        and the ParentColor.
      + LCLIntf.GetTextExtentExPoint now has a good default implementation
        which works in any platform not providing a specific implementation.
        However, Widgetset specific implementation is better, when available.
      + TTabControl was reorganized. Now it has the correct class hierarchy
        and inherits from TCustomTabControl as it should.
  - New unit in the LCL:
      + lazdialogs.pas: adds non-native versions of various native dialogs,
        for example TLazOpenDialog, TLazSaveDialog, TLazSelectDirectoryDialog.
        It is used by widgetsets which either do not have a native dialog, or
        do not wish to use it because it is limited. These dialogs can also be
        used by user applications directly.
      + lazdeviceapis.pas: offers an interface to more hardware devices such
        as the accelerometer, GPS, etc. See LazDeviceAPIs
      + lazcanvas.pas: provides a TFPImageCanvas descendent implementing
        drawing in a LCL-compatible way, but 100% in Pascal.
      + lazregions.pas. LazRegions is a wholly Pascal implementation of
        regions for canvas clipping, event clipping, finding in which control
        of a region tree one an event should reach, for drawing polygons, etc.
      + customdrawncontrols.pas, customdrawndrawers.pas,
        customdrawn_common.pas, customdrawn_android.pas and
        customdrawn_winxp.pas: are the Lazarus Custom Drawn Controls -controls
        which imitate the standard LCL ones, but with the difference that they
        are non-native and support skinning.
  - New APIs added to the LCL to improve support of accessibility software
    such as screen readers.
* IDE changes:
  - Many improvments.
  - The detailed list of changes can be found here:
    http://wiki.lazarus.freepascal.org/New_IDE_features_since#v1.0_.282012-08-29.29
    http://wiki.lazarus.freepascal.org/Lazarus_1.0_release_notes#IDE_Changes
* Debugger / Editor changes:
  - Added pascal sources and breakpoints to the disassembler
  - Added threads dialog.
* Components changes:
  - TAChart: many fixes and new features
  - CodeTool: support Delphi style generics and new syntax extensions.
  - AggPas: removed to honor free licencing. (Closes: Bug#708695)
[Bart Martens]
* New debian/watch file fixing issues with upstream RC release.
[Abou Al Montacir]
* Avoid changing files in .pc hidden directory, these are used by quilt for
  internal purpose and could lead to surprises during build.
[Paul Gevers]
* Updated get-orig-source target and it compinion script orig-tar.sh so that they
  repack the source file, allowing bug 708695 to be fixed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
object PathEditorDialog: TPathEditorDialog
2
 
  Left = 295
3
 
  Height = 400
4
 
  Top = 158
5
 
  Width = 500
6
 
  ActiveControl = PathEdit
 
2
  Left = 420
 
3
  Height = 446
 
4
  Top = 156
 
5
  Width = 553
7
6
  AutoSize = True
8
7
  Caption = 'PathEditorDialog'
9
 
  ClientHeight = 400
10
 
  ClientWidth = 500
 
8
  ClientHeight = 446
 
9
  ClientWidth = 553
11
10
  Constraints.MinHeight = 400
12
11
  Constraints.MinWidth = 500
13
12
  OnCreate = FormCreate
14
13
  OnResize = FormResize
15
14
  Position = poScreenCenter
16
 
  LCLVersion = '0.9.29'
 
15
  LCLVersion = '0.9.31'
17
16
  object PathGroupBox: TGroupBox
18
 
    AnchorSideRight.Side = asrBottom
19
17
    Left = 6
20
 
    Height = 194
 
18
    Height = 221
21
19
    Top = 6
22
 
    Width = 488
 
20
    Width = 541
23
21
    Align = alClient
24
22
    Anchors = [akTop, akLeft, akRight]
25
23
    AutoSize = True
26
24
    BorderSpacing.Around = 6
27
25
    Caption = 'PathGroupBox'
28
 
    ClientHeight = 175
29
 
    ClientWidth = 484
 
26
    ClientHeight = 203
 
27
    ClientWidth = 537
30
28
    Constraints.MinHeight = 194
31
29
    Constraints.MinWidth = 488
32
30
    TabOrder = 0
33
 
    inline PathEdit: TSynEdit
 
31
    object MoveUpButton: TBitBtn
34
32
      AnchorSideLeft.Control = PathGroupBox
35
 
      AnchorSideTop.Control = PathGroupBox
36
33
      AnchorSideRight.Control = PathGroupBox
37
34
      AnchorSideRight.Side = asrBottom
38
 
      AnchorSideBottom.Control = MoveUpButton
39
 
      Left = 6
40
 
      Height = 128
41
 
      Top = 6
42
 
      Width = 472
43
 
      BorderSpacing.Around = 6
44
 
      Anchors = [akTop, akLeft, akRight, akBottom]
45
 
      Font.Height = -16
46
 
      Font.Name = 'courier'
47
 
      Font.Pitch = fpFixed
48
 
      Font.Quality = fqNonAntialiased
49
 
      ParentColor = False
50
 
      ParentFont = False
51
 
      TabOrder = 0
52
 
      BookMarkOptions.Xoffset = -18
53
 
      Gutter.Visible = False
54
 
      Gutter.Width = 0
55
 
      Gutter.MouseActions = <      
56
 
        item
57
 
          Shift = []
58
 
          ShiftMask = []
59
 
          Button = mbLeft
60
 
          ClickCount = ccAny
61
 
          ClickDir = cdDown
62
 
          Command = 13
63
 
          MoveCaret = False
64
 
          Option = 0
65
 
          Priority = 0
66
 
        end      
67
 
        item
68
 
          Shift = []
69
 
          ShiftMask = []
70
 
          Button = mbRight
71
 
          ClickCount = ccSingle
72
 
          ClickDir = cdUp
73
 
          Command = 12
74
 
          MoveCaret = False
75
 
          Option = 0
76
 
          Priority = 0
77
 
        end>
78
 
      Keystrokes = <      
79
 
        item
80
 
          Command = ecUp
81
 
          ShortCut = 38
82
 
        end      
83
 
        item
84
 
          Command = ecSelUp
85
 
          ShortCut = 8230
86
 
        end      
87
 
        item
88
 
          Command = ecScrollUp
89
 
          ShortCut = 16422
90
 
        end      
91
 
        item
92
 
          Command = ecDown
93
 
          ShortCut = 40
94
 
        end      
95
 
        item
96
 
          Command = ecSelDown
97
 
          ShortCut = 8232
98
 
        end      
99
 
        item
100
 
          Command = ecScrollDown
101
 
          ShortCut = 16424
102
 
        end      
103
 
        item
104
 
          Command = ecLeft
105
 
          ShortCut = 37
106
 
        end      
107
 
        item
108
 
          Command = ecSelLeft
109
 
          ShortCut = 8229
110
 
        end      
111
 
        item
112
 
          Command = ecWordLeft
113
 
          ShortCut = 16421
114
 
        end      
115
 
        item
116
 
          Command = ecSelWordLeft
117
 
          ShortCut = 24613
118
 
        end      
119
 
        item
120
 
          Command = ecRight
121
 
          ShortCut = 39
122
 
        end      
123
 
        item
124
 
          Command = ecSelRight
125
 
          ShortCut = 8231
126
 
        end      
127
 
        item
128
 
          Command = ecWordRight
129
 
          ShortCut = 16423
130
 
        end      
131
 
        item
132
 
          Command = ecSelWordRight
133
 
          ShortCut = 24615
134
 
        end      
135
 
        item
136
 
          Command = ecPageDown
137
 
          ShortCut = 34
138
 
        end      
139
 
        item
140
 
          Command = ecSelPageDown
141
 
          ShortCut = 8226
142
 
        end      
143
 
        item
144
 
          Command = ecPageBottom
145
 
          ShortCut = 16418
146
 
        end      
147
 
        item
148
 
          Command = ecSelPageBottom
149
 
          ShortCut = 24610
150
 
        end      
151
 
        item
152
 
          Command = ecPageUp
153
 
          ShortCut = 33
154
 
        end      
155
 
        item
156
 
          Command = ecSelPageUp
157
 
          ShortCut = 8225
158
 
        end      
159
 
        item
160
 
          Command = ecPageTop
161
 
          ShortCut = 16417
162
 
        end      
163
 
        item
164
 
          Command = ecSelPageTop
165
 
          ShortCut = 24609
166
 
        end      
167
 
        item
168
 
          Command = ecLineStart
169
 
          ShortCut = 36
170
 
        end      
171
 
        item
172
 
          Command = ecSelLineStart
173
 
          ShortCut = 8228
174
 
        end      
175
 
        item
176
 
          Command = ecEditorTop
177
 
          ShortCut = 16420
178
 
        end      
179
 
        item
180
 
          Command = ecSelEditorTop
181
 
          ShortCut = 24612
182
 
        end      
183
 
        item
184
 
          Command = ecLineEnd
185
 
          ShortCut = 35
186
 
        end      
187
 
        item
188
 
          Command = ecSelLineEnd
189
 
          ShortCut = 8227
190
 
        end      
191
 
        item
192
 
          Command = ecEditorBottom
193
 
          ShortCut = 16419
194
 
        end      
195
 
        item
196
 
          Command = ecSelEditorBottom
197
 
          ShortCut = 24611
198
 
        end      
199
 
        item
200
 
          Command = ecToggleMode
201
 
          ShortCut = 45
202
 
        end      
203
 
        item
204
 
          Command = ecCopy
205
 
          ShortCut = 16429
206
 
        end      
207
 
        item
208
 
          Command = ecPaste
209
 
          ShortCut = 8237
210
 
        end      
211
 
        item
212
 
          Command = ecDeleteChar
213
 
          ShortCut = 46
214
 
        end      
215
 
        item
216
 
          Command = ecCut
217
 
          ShortCut = 8238
218
 
        end      
219
 
        item
220
 
          Command = ecDeleteLastChar
221
 
          ShortCut = 8
222
 
        end      
223
 
        item
224
 
          Command = ecDeleteLastChar
225
 
          ShortCut = 8200
226
 
        end      
227
 
        item
228
 
          Command = ecDeleteLastWord
229
 
          ShortCut = 16392
230
 
        end      
231
 
        item
232
 
          Command = ecUndo
233
 
          ShortCut = 32776
234
 
        end      
235
 
        item
236
 
          Command = ecRedo
237
 
          ShortCut = 40968
238
 
        end      
239
 
        item
240
 
          Command = ecLineBreak
241
 
          ShortCut = 13
242
 
        end      
243
 
        item
244
 
          Command = ecSelectAll
245
 
          ShortCut = 16449
246
 
        end      
247
 
        item
248
 
          Command = ecCopy
249
 
          ShortCut = 16451
250
 
        end      
251
 
        item
252
 
          Command = ecBlockIndent
253
 
          ShortCut = 24649
254
 
        end      
255
 
        item
256
 
          Command = ecLineBreak
257
 
          ShortCut = 16461
258
 
        end      
259
 
        item
260
 
          Command = ecInsertLine
261
 
          ShortCut = 16462
262
 
        end      
263
 
        item
264
 
          Command = ecDeleteWord
265
 
          ShortCut = 16468
266
 
        end      
267
 
        item
268
 
          Command = ecBlockUnindent
269
 
          ShortCut = 24661
270
 
        end      
271
 
        item
272
 
          Command = ecPaste
273
 
          ShortCut = 16470
274
 
        end      
275
 
        item
276
 
          Command = ecCut
277
 
          ShortCut = 16472
278
 
        end      
279
 
        item
280
 
          Command = ecDeleteLine
281
 
          ShortCut = 16473
282
 
        end      
283
 
        item
284
 
          Command = ecDeleteEOL
285
 
          ShortCut = 24665
286
 
        end      
287
 
        item
288
 
          Command = ecUndo
289
 
          ShortCut = 16474
290
 
        end      
291
 
        item
292
 
          Command = ecRedo
293
 
          ShortCut = 24666
294
 
        end      
295
 
        item
296
 
          Command = ecGotoMarker0
297
 
          ShortCut = 16432
298
 
        end      
299
 
        item
300
 
          Command = ecGotoMarker1
301
 
          ShortCut = 16433
302
 
        end      
303
 
        item
304
 
          Command = ecGotoMarker2
305
 
          ShortCut = 16434
306
 
        end      
307
 
        item
308
 
          Command = ecGotoMarker3
309
 
          ShortCut = 16435
310
 
        end      
311
 
        item
312
 
          Command = ecGotoMarker4
313
 
          ShortCut = 16436
314
 
        end      
315
 
        item
316
 
          Command = ecGotoMarker5
317
 
          ShortCut = 16437
318
 
        end      
319
 
        item
320
 
          Command = ecGotoMarker6
321
 
          ShortCut = 16438
322
 
        end      
323
 
        item
324
 
          Command = ecGotoMarker7
325
 
          ShortCut = 16439
326
 
        end      
327
 
        item
328
 
          Command = ecGotoMarker8
329
 
          ShortCut = 16440
330
 
        end      
331
 
        item
332
 
          Command = ecGotoMarker9
333
 
          ShortCut = 16441
334
 
        end      
335
 
        item
336
 
          Command = ecSetMarker0
337
 
          ShortCut = 24624
338
 
        end      
339
 
        item
340
 
          Command = ecSetMarker1
341
 
          ShortCut = 24625
342
 
        end      
343
 
        item
344
 
          Command = ecSetMarker2
345
 
          ShortCut = 24626
346
 
        end      
347
 
        item
348
 
          Command = ecSetMarker3
349
 
          ShortCut = 24627
350
 
        end      
351
 
        item
352
 
          Command = ecSetMarker4
353
 
          ShortCut = 24628
354
 
        end      
355
 
        item
356
 
          Command = ecSetMarker5
357
 
          ShortCut = 24629
358
 
        end      
359
 
        item
360
 
          Command = ecSetMarker6
361
 
          ShortCut = 24630
362
 
        end      
363
 
        item
364
 
          Command = ecSetMarker7
365
 
          ShortCut = 24631
366
 
        end      
367
 
        item
368
 
          Command = ecSetMarker8
369
 
          ShortCut = 24632
370
 
        end      
371
 
        item
372
 
          Command = ecSetMarker9
373
 
          ShortCut = 24633
374
 
        end      
375
 
        item
376
 
          Command = ecNormalSelect
377
 
          ShortCut = 24654
378
 
        end      
379
 
        item
380
 
          Command = ecColumnSelect
381
 
          ShortCut = 24643
382
 
        end      
383
 
        item
384
 
          Command = ecLineSelect
385
 
          ShortCut = 24652
386
 
        end      
387
 
        item
388
 
          Command = ecTab
389
 
          ShortCut = 9
390
 
        end      
391
 
        item
392
 
          Command = ecShiftTab
393
 
          ShortCut = 8201
394
 
        end      
395
 
        item
396
 
          Command = ecMatchBracket
397
 
          ShortCut = 24642
398
 
        end>
399
 
      MouseActions = <      
400
 
        item
401
 
          Shift = []
402
 
          ShiftMask = [ssShift, ssAlt]
403
 
          Button = mbLeft
404
 
          ClickCount = ccSingle
405
 
          ClickDir = cdDown
406
 
          Command = 1
407
 
          MoveCaret = True
408
 
          Option = 0
409
 
          Priority = 0
410
 
        end      
411
 
        item
412
 
          Shift = [ssShift]
413
 
          ShiftMask = [ssShift, ssAlt]
414
 
          Button = mbLeft
415
 
          ClickCount = ccSingle
416
 
          ClickDir = cdDown
417
 
          Command = 1
418
 
          MoveCaret = True
419
 
          Option = 1
420
 
          Priority = 0
421
 
        end      
422
 
        item
423
 
          Shift = [ssAlt]
424
 
          ShiftMask = [ssShift, ssAlt]
425
 
          Button = mbLeft
426
 
          ClickCount = ccSingle
427
 
          ClickDir = cdDown
428
 
          Command = 3
429
 
          MoveCaret = True
430
 
          Option = 0
431
 
          Priority = 0
432
 
        end      
433
 
        item
434
 
          Shift = [ssShift, ssAlt]
435
 
          ShiftMask = [ssShift, ssAlt]
436
 
          Button = mbLeft
437
 
          ClickCount = ccSingle
438
 
          ClickDir = cdDown
439
 
          Command = 3
440
 
          MoveCaret = True
441
 
          Option = 1
442
 
          Priority = 0
443
 
        end      
444
 
        item
445
 
          Shift = []
446
 
          ShiftMask = []
447
 
          Button = mbRight
448
 
          ClickCount = ccSingle
449
 
          ClickDir = cdUp
450
 
          Command = 12
451
 
          MoveCaret = False
452
 
          Option = 0
453
 
          Priority = 0
454
 
        end      
455
 
        item
456
 
          Shift = []
457
 
          ShiftMask = []
458
 
          Button = mbLeft
459
 
          ClickCount = ccDouble
460
 
          ClickDir = cdDown
461
 
          Command = 6
462
 
          MoveCaret = True
463
 
          Option = 0
464
 
          Priority = 0
465
 
        end      
466
 
        item
467
 
          Shift = []
468
 
          ShiftMask = []
469
 
          Button = mbLeft
470
 
          ClickCount = ccTriple
471
 
          ClickDir = cdDown
472
 
          Command = 7
473
 
          MoveCaret = True
474
 
          Option = 0
475
 
          Priority = 0
476
 
        end      
477
 
        item
478
 
          Shift = []
479
 
          ShiftMask = []
480
 
          Button = mbLeft
481
 
          ClickCount = ccQuad
482
 
          ClickDir = cdDown
483
 
          Command = 8
484
 
          MoveCaret = True
485
 
          Option = 0
486
 
          Priority = 0
487
 
        end      
488
 
        item
489
 
          Shift = []
490
 
          ShiftMask = []
491
 
          Button = mbMiddle
492
 
          ClickCount = ccSingle
493
 
          ClickDir = cdDown
494
 
          Command = 10
495
 
          MoveCaret = True
496
 
          Option = 0
497
 
          Priority = 0
498
 
        end      
499
 
        item
500
 
          Shift = [ssCtrl]
501
 
          ShiftMask = [ssShift, ssAlt, ssCtrl]
502
 
          Button = mbLeft
503
 
          ClickCount = ccSingle
504
 
          ClickDir = cdUp
505
 
          Command = 11
506
 
          MoveCaret = False
507
 
          Option = 0
508
 
          Priority = 0
509
 
        end>
510
 
      MouseSelActions = <      
511
 
        item
512
 
          Shift = []
513
 
          ShiftMask = []
514
 
          Button = mbLeft
515
 
          ClickCount = ccSingle
516
 
          ClickDir = cdDown
517
 
          Command = 9
518
 
          MoveCaret = False
519
 
          Option = 0
520
 
          Priority = 0
521
 
        end      
522
 
        item
523
 
          Shift = []
524
 
          ShiftMask = []
525
 
          Button = mbLeft
526
 
          ClickCount = ccSingle
527
 
          ClickDir = cdDown
528
 
          Command = 9
529
 
          MoveCaret = False
530
 
          Option = 0
531
 
          Priority = 0
532
 
        end>
533
 
      Lines.Strings = (
534
 
        'PathEdit'
535
 
      )
536
 
      Options = [eoDragDropEditing, eoHalfPageScroll, eoScrollByOneLess, eoScrollPastEol, eoSmartTabs, eoTabsToSpaces, eoTrimTrailingSpaces, eoBracketHighlight, eoHideRightMargin]
537
 
      BracketHighlightStyle = sbhsBoth
538
 
      inline TSynGutterPartList
539
 
        object TSynGutterMarks
540
 
          Width = 23
541
 
        end
542
 
        object TSynGutterLineNumber
543
 
          Width = 25
544
 
          MouseActions = <>
545
 
          MarkupInfo.Background = clBtnFace
546
 
          MarkupInfo.Foreground = clNone
547
 
          DigitCount = 2
548
 
          ShowOnlyLineNumbersMultiplesOf = 1
549
 
          ZeroStart = False
550
 
          LeadingZeros = False
551
 
        end
552
 
        object TSynGutterChanges
553
 
          Width = 4
554
 
          ModifiedColor = 59900
555
 
          SavedColor = clGreen
556
 
        end
557
 
        object TSynGutterSeparator
558
 
          Width = 2
559
 
        end
560
 
        object TSynGutterCodeFolding
561
 
          MouseActions = <          
562
 
            item
563
 
              Shift = []
564
 
              ShiftMask = []
565
 
              Button = mbRight
566
 
              ClickCount = ccSingle
567
 
              ClickDir = cdUp
568
 
              Command = 16
569
 
              MoveCaret = False
570
 
              Option = 0
571
 
              Priority = 0
572
 
            end          
573
 
            item
574
 
              Shift = []
575
 
              ShiftMask = [ssShift]
576
 
              Button = mbMiddle
577
 
              ClickCount = ccAny
578
 
              ClickDir = cdDown
579
 
              Command = 14
580
 
              MoveCaret = False
581
 
              Option = 0
582
 
              Priority = 0
583
 
            end          
584
 
            item
585
 
              Shift = [ssShift]
586
 
              ShiftMask = [ssShift]
587
 
              Button = mbMiddle
588
 
              ClickCount = ccAny
589
 
              ClickDir = cdDown
590
 
              Command = 14
591
 
              MoveCaret = False
592
 
              Option = 1
593
 
              Priority = 0
594
 
            end          
595
 
            item
596
 
              Shift = []
597
 
              ShiftMask = []
598
 
              Button = mbLeft
599
 
              ClickCount = ccAny
600
 
              ClickDir = cdDown
601
 
              Command = 0
602
 
              MoveCaret = False
603
 
              Option = 0
604
 
              Priority = 0
605
 
            end>
606
 
          MarkupInfo.Background = clNone
607
 
          MarkupInfo.Foreground = clGray
608
 
          MouseActionsExpanded = <          
609
 
            item
610
 
              Shift = []
611
 
              ShiftMask = []
612
 
              Button = mbLeft
613
 
              ClickCount = ccAny
614
 
              ClickDir = cdDown
615
 
              Command = 14
616
 
              MoveCaret = False
617
 
              Option = 0
618
 
              Priority = 0
619
 
            end>
620
 
          MouseActionsCollapsed = <          
621
 
            item
622
 
              Shift = [ssCtrl]
623
 
              ShiftMask = [ssCtrl]
624
 
              Button = mbLeft
625
 
              ClickCount = ccAny
626
 
              ClickDir = cdDown
627
 
              Command = 15
628
 
              MoveCaret = False
629
 
              Option = 0
630
 
              Priority = 0
631
 
            end          
632
 
            item
633
 
              Shift = []
634
 
              ShiftMask = [ssCtrl]
635
 
              Button = mbLeft
636
 
              ClickCount = ccAny
637
 
              ClickDir = cdDown
638
 
              Command = 15
639
 
              MoveCaret = False
640
 
              Option = 1
641
 
              Priority = 0
642
 
            end>
643
 
        end
644
 
      end
645
 
    end
646
 
    object MoveUpButton: TBitBtn
647
 
      AnchorSideLeft.Control = PathGroupBox
648
35
      AnchorSideBottom.Control = PathGroupBox
649
36
      AnchorSideBottom.Side = asrBottom
650
 
      Left = 6
651
 
      Height = 29
652
 
      Top = 140
653
 
      Width = 110
654
 
      Anchors = [akLeft, akBottom]
655
 
      AutoSize = True
 
37
      Left = 506
 
38
      Height = 25
 
39
      Top = 47
 
40
      Width = 25
 
41
      Anchors = [akRight]
656
42
      BorderSpacing.Around = 6
657
 
      Caption = 'MoveUpButton'
 
43
      GlyphShowMode = gsmAlways
658
44
      NumGlyphs = 0
659
45
      OnClick = MoveUpButtonClick
 
46
      ParentShowHint = False
 
47
      ShowHint = True
660
48
      TabOrder = 1
661
49
    end
662
50
    object MoveDownButton: TBitBtn
663
51
      AnchorSideLeft.Control = MoveUpButton
664
 
      AnchorSideLeft.Side = asrBottom
 
52
      AnchorSideLeft.Side = asrCenter
 
53
      AnchorSideTop.Control = MoveUpButton
 
54
      AnchorSideTop.Side = asrBottom
665
55
      AnchorSideBottom.Control = PathGroupBox
666
56
      AnchorSideBottom.Side = asrBottom
667
 
      Left = 122
668
 
      Height = 29
669
 
      Top = 140
670
 
      Width = 127
671
 
      Anchors = [akLeft, akBottom]
672
 
      AutoSize = True
673
 
      BorderSpacing.Around = 6
674
 
      Caption = 'MoveDownButton'
 
57
      Left = 506
 
58
      Height = 25
 
59
      Top = 86
 
60
      Width = 25
 
61
      BorderSpacing.Around = 14
 
62
      GlyphShowMode = gsmAlways
675
63
      NumGlyphs = 0
676
64
      OnClick = MoveDownButtonClick
 
65
      ParentShowHint = False
 
66
      ShowHint = True
677
67
      TabOrder = 2
678
68
    end
679
 
    object BrowseButton: TBitBtn
680
 
      AnchorSideLeft.Control = MoveDownButton
681
 
      AnchorSideLeft.Side = asrBottom
682
 
      AnchorSideTop.Control = MoveDownButton
683
 
      AnchorSideBottom.Control = PathGroupBox
684
 
      AnchorSideBottom.Side = asrBottom
685
 
      Left = 255
686
 
      Height = 29
687
 
      Top = 140
688
 
      Width = 104
689
 
      Anchors = [akTop, akLeft, akBottom]
690
 
      AutoSize = True
691
 
      BorderSpacing.Left = 6
692
 
      BorderSpacing.Right = 6
693
 
      BorderSpacing.Bottom = 6
694
 
      Caption = 'BrowseButton'
695
 
      NumGlyphs = 0
696
 
      OnClick = BrowseButtonClick
697
 
      TabOrder = 3
698
 
    end
699
69
    object DeleteButton: TBitBtn
700
 
      AnchorSideLeft.Control = BrowseButton
 
70
      AnchorSideLeft.Control = AddButton
701
71
      AnchorSideLeft.Side = asrBottom
702
72
      AnchorSideBottom.Control = PathGroupBox
703
73
      AnchorSideBottom.Side = asrBottom
704
 
      Left = 365
705
 
      Height = 29
706
 
      Top = 140
707
 
      Width = 100
 
74
      Left = 191
 
75
      Height = 23
 
76
      Top = 174
 
77
      Width = 89
708
78
      Anchors = [akLeft, akBottom]
709
79
      AutoSize = True
710
80
      BorderSpacing.Around = 6
711
81
      Caption = 'DeleteButton'
 
82
      Enabled = False
712
83
      NumGlyphs = 0
713
84
      OnClick = DeleteButtonClick
 
85
      ParentShowHint = False
 
86
      ShowHint = True
 
87
      TabOrder = 6
 
88
    end
 
89
    object PathListBox: TListBox
 
90
      AnchorSideLeft.Control = PathGroupBox
 
91
      AnchorSideTop.Control = PathGroupBox
 
92
      AnchorSideRight.Control = MoveUpButton
 
93
      AnchorSideBottom.Control = DirectoryEdit
 
94
      Left = 6
 
95
      Height = 135
 
96
      Top = 6
 
97
      Width = 494
 
98
      Anchors = [akTop, akLeft, akRight, akBottom]
 
99
      BorderSpacing.Around = 6
 
100
      ItemHeight = 0
 
101
      OnDrawItem = PathListBoxDrawItem
 
102
      OnKeyDown = PathListBoxKeyDown
 
103
      OnSelectionChange = PathListBoxSelectionChange
 
104
      Style = lbOwnerDrawFixed
 
105
      TabOrder = 0
 
106
    end
 
107
    object DirectoryEdit: TDirectoryEdit
 
108
      AnchorSideLeft.Control = ReplaceButton
 
109
      AnchorSideRight.Control = PathListBox
 
110
      AnchorSideRight.Side = asrBottom
 
111
      AnchorSideBottom.Control = ReplaceButton
 
112
      Left = 6
 
113
      Height = 21
 
114
      Top = 147
 
115
      Width = 494
 
116
      ShowHidden = False
 
117
      ButtonWidth = 23
 
118
      NumGlyphs = 0
 
119
      Anchors = [akLeft, akRight, akBottom]
 
120
      MaxLength = 0
 
121
      TabOrder = 3
 
122
      OnChange = DirectoryEditChange
 
123
    end
 
124
    object ReplaceButton: TBitBtn
 
125
      AnchorSideLeft.Control = PathGroupBox
 
126
      AnchorSideBottom.Control = PathGroupBox
 
127
      AnchorSideBottom.Side = asrBottom
 
128
      Left = 6
 
129
      Height = 23
 
130
      Top = 174
 
131
      Width = 96
 
132
      Anchors = [akLeft, akBottom]
 
133
      AutoSize = True
 
134
      BorderSpacing.Around = 6
 
135
      Caption = 'ReplaceButton'
 
136
      Enabled = False
 
137
      NumGlyphs = 0
 
138
      OnClick = ReplaceButtonClick
 
139
      ParentShowHint = False
 
140
      ShowHint = True
714
141
      TabOrder = 4
715
142
    end
 
143
    object AddButton: TBitBtn
 
144
      AnchorSideLeft.Control = ReplaceButton
 
145
      AnchorSideLeft.Side = asrBottom
 
146
      AnchorSideBottom.Control = PathGroupBox
 
147
      AnchorSideBottom.Side = asrBottom
 
148
      Left = 108
 
149
      Height = 23
 
150
      Top = 174
 
151
      Width = 77
 
152
      Anchors = [akLeft, akBottom]
 
153
      AutoSize = True
 
154
      BorderSpacing.Around = 6
 
155
      Caption = 'AddButton'
 
156
      Enabled = False
 
157
      NumGlyphs = 0
 
158
      OnClick = AddButtonClick
 
159
      ParentShowHint = False
 
160
      ShowHint = True
 
161
      TabOrder = 5
 
162
    end
 
163
    object DeleteInvalidPathsButton: TBitBtn
 
164
      AnchorSideLeft.Control = DeleteButton
 
165
      AnchorSideLeft.Side = asrBottom
 
166
      AnchorSideBottom.Control = PathGroupBox
 
167
      AnchorSideBottom.Side = asrBottom
 
168
      Left = 286
 
169
      Height = 23
 
170
      Top = 174
 
171
      Width = 148
 
172
      Anchors = [akLeft, akBottom]
 
173
      AutoSize = True
 
174
      BorderSpacing.Around = 6
 
175
      Caption = 'DeleteInvalidPathsButton'
 
176
      Enabled = False
 
177
      NumGlyphs = 0
 
178
      OnClick = DeleteInvalidPathsButtonClick
 
179
      ParentShowHint = False
 
180
      ShowHint = True
 
181
      TabOrder = 7
 
182
    end
716
183
  end
717
184
  object TemplateGroupBox: TGroupBox
718
185
    AnchorSideTop.Side = asrBottom
719
 
    AnchorSideRight.Side = asrBottom
720
186
    Left = 6
721
 
    Height = 150
722
 
    Top = 206
723
 
    Width = 488
 
187
    Height = 164
 
188
    Top = 244
 
189
    Width = 541
724
190
    Align = alBottom
725
 
    Anchors = [akTop, akLeft, akRight, akBottom]
 
191
    Anchors = []
726
192
    BorderSpacing.Around = 6
727
193
    Caption = 'TemplateGroupBox'
728
 
    ClientHeight = 131
729
 
    ClientWidth = 484
 
194
    ClientHeight = 146
 
195
    ClientWidth = 537
730
196
    TabOrder = 1
731
197
    object TemplatesListBox: TListBox
732
198
      AnchorSideLeft.Control = TemplateGroupBox
735
201
      AnchorSideRight.Side = asrBottom
736
202
      AnchorSideBottom.Control = AddTemplateButton
737
203
      Left = 6
738
 
      Height = 84
 
204
      Height = 105
739
205
      Top = 6
740
 
      Width = 472
 
206
      Width = 525
741
207
      Anchors = [akTop, akLeft, akRight, akBottom]
742
208
      BorderSpacing.Around = 6
743
209
      ItemHeight = 0
744
210
      MultiSelect = True
745
211
      OnDblClick = TemplatesListBoxDblClick
 
212
      OnSelectionChange = TemplatesListBoxSelectionChange
746
213
      TabOrder = 0
747
 
      TopIndex = -1
748
214
    end
749
215
    object AddTemplateButton: TBitBtn
750
216
      AnchorSideLeft.Control = TemplateGroupBox
751
217
      AnchorSideBottom.Control = TemplateGroupBox
752
218
      AnchorSideBottom.Side = asrBottom
753
219
      Left = 6
754
 
      Height = 29
755
 
      Top = 96
756
 
      Width = 141
 
220
      Height = 23
 
221
      Top = 117
 
222
      Width = 121
757
223
      Anchors = [akLeft, akBottom]
758
224
      AutoSize = True
759
225
      BorderSpacing.Around = 6
760
226
      Caption = 'AddTemplateButton'
761
227
      NumGlyphs = 0
762
228
      OnClick = AddTemplateButtonClick
 
229
      ParentShowHint = False
 
230
      ShowHint = True
763
231
      TabOrder = 1
764
232
    end
765
233
  end
766
234
  object ButtonPanel1: TButtonPanel
767
235
    Left = 6
768
 
    Height = 32
769
 
    Top = 362
770
 
    Width = 488
 
236
    Height = 26
 
237
    Top = 414
 
238
    Width = 541
 
239
    OKButton.Name = 'OKButton'
 
240
    OKButton.DefaultCaption = True
 
241
    HelpButton.Name = 'HelpButton'
 
242
    HelpButton.DefaultCaption = True
 
243
    CloseButton.Name = 'CloseButton'
 
244
    CloseButton.DefaultCaption = True
 
245
    CancelButton.Name = 'CancelButton'
 
246
    CancelButton.DefaultCaption = True
771
247
    TabOrder = 2
772
248
    ShowButtons = [pbOK, pbCancel]
773
249
    ShowBevel = False
774
250
  end
 
251
  object Splitter1: TSplitter
 
252
    Cursor = crVSplit
 
253
    Left = 0
 
254
    Height = 5
 
255
    Top = 233
 
256
    Width = 553
 
257
    Align = alBottom
 
258
    ResizeAnchor = akBottom
 
259
  end
775
260
  object BrowseDialog: TSelectDirectoryDialog
776
261
    Options = [ofFileMustExist, ofEnableSizing, ofViewDetail]
777
 
    left = 355
778
 
    top = 80
 
262
    left = 504
 
263
    top = 32
779
264
  end
780
265
end