1object ExternalToolDialog: TExternalToolDialog
2  Left = 334
3  Height = 347
4  Top = 226
5  Width = 451
6  ActiveControl = ListBox
7  BorderIcons = [biSystemMenu]
8  Caption = 'ExternalToolDialog'
9  ClientHeight = 347
10  ClientWidth = 451
11  Position = poScreenCenter
12  LCLVersion = '1.5'
13  object ToolBar: TToolBar
14    Left = 0
15    Height = 94
16    Top = 0
17    Width = 451
18    AutoSize = True
19    ButtonHeight = 46
20    ButtonWidth = 47
21    Caption = 'ToolBar'
22    ParentShowHint = False
23    ShowCaptions = True
24    ShowHint = True
25    TabOrder = 0
26    object MoveDownButton: TToolButton
27      Left = 312
28      Top = 2
29      Caption = 'MoveDownButton'
30      ImageIndex = 4
31      OnClick = MoveDownButtonClick
32    end
33    object MoveUpButton: TToolButton
34      Left = 223
35      Top = 2
36      Caption = 'MoveUpButton'
37      ImageIndex = 3
38      OnClick = MoveUpButtonClick
39    end
40    object EditButton: TToolButton
41      Left = 154
42      Top = 2
43      Caption = 'EditButton'
44      ImageIndex = 2
45      OnClick = EditButtonClick
46    end
47    object RemoveButton: TToolButton
48      Left = 67
49      Top = 2
50      Caption = 'RemoveButton'
51      ImageIndex = 1
52      OnClick = RemoveButtonClick
53    end
54    object AddButton: TToolButton
55      Left = 1
56      Top = 2
57      Caption = 'AddButton'
58      ImageIndex = 0
59      OnClick = AddButtonClick
60    end
61    object tbSeparator: TToolButton
62      Left = 218
63      Height = 46
64      Top = 2
65      Width = 5
66      Caption = 'tbSeparator'
67      Style = tbsDivider
68    end
69    object tbSeparator2: TToolButton
70      Left = 417
71      Height = 46
72      Top = 2
73      Width = 5
74      Caption = 'tbSeparator2'
75      Style = tbsDivider
76    end
77    object ExtraButton: TToolButton
78      Left = 1
79      Top = 48
80      Caption = 'ExtraButton'
81      DropdownMenu = PopupDropdownMenu
82    end
83  end
84  object ListBox: TListBox
85    Left = 0
86    Height = 215
87    Top = 94
88    Width = 451
89    Align = alClient
90    BorderSpacing.Bottom = 6
91    ItemHeight = 0
92    OnClick = ListboxClick
93    TabOrder = 1
94  end
95  object ButtonPanel: TButtonPanel
96    Left = 6
97    Height = 26
98    Top = 315
99    Width = 439
100    OKButton.Name = 'OKButton'
101    OKButton.DefaultCaption = True
102    HelpButton.Name = 'HelpButton'
103    HelpButton.DefaultCaption = True
104    CloseButton.Name = 'CloseButton'
105    CloseButton.DefaultCaption = True
106    CancelButton.Name = 'CancelButton'
107    CancelButton.DefaultCaption = True
108    TabOrder = 2
109    ShowButtons = [pbOK, pbCancel, pbHelp]
110    ShowBevel = False
111  end
112  object PopupDropdownMenu: TPopupMenu
113    left = 224
114    top = 48
115    object MenuItemClone: TMenuItem
116      Caption = 'MenuItemClone'
117      OnClick = MenuItemCloneClick
118    end
119    object MenuItemSeparator: TMenuItem
120      Caption = '-'
121    end
122    object MenuItemExport: TMenuItem
123      Caption = 'MenuItemExport'
124      OnClick = MenuItemExportClick
125    end
126    object MenuItemImport: TMenuItem
127      Caption = 'MenuItemImport'
128      OnClick = MenuItemImportClick
129    end
130  end
131  object SaveDialog1: TSaveDialog
132    Filter = 'XML configuration file (*.xml)|*.xml|All files (*.*)|*.*'
133    Options = [ofOverwritePrompt, ofPathMustExist, ofEnableSizing, ofViewDetail]
134    left = 312
135    top = 40
136  end
137  object OpenDialog1: TOpenDialog
138    Filter = 'XML configuration file (*.xml)|*.xml|All files (*.*)|*.*'
139    Options = [ofFileMustExist, ofEnableSizing, ofViewDetail]
140    left = 384
141    top = 48
142  end
143end
144