1object BuildProfileManagerForm: TBuildProfileManagerForm
2  Left = 221
3  Height = 435
4  Top = 176
5  Width = 360
6  BorderIcons = [biSystemMenu]
7  Caption = 'Build Profiles'
8  ClientHeight = 435
9  ClientWidth = 360
10  OnCreate = FormCreate
11  OnDestroy = FormDestroy
12  Position = poScreenCenter
13  LCLVersion = '1.5'
14  object ProfilesPanel: TPanel
15    Left = 0
16    Height = 435
17    Top = 0
18    Width = 360
19    Align = alClient
20    BevelOuter = bvNone
21    ClientHeight = 435
22    ClientWidth = 360
23    TabOrder = 0
24    object ProfilesToolBar: TToolBar
25      Left = 0
26      Height = 92
27      Top = 0
28      Width = 360
29      AutoSize = True
30      ButtonHeight = 46
31      ButtonWidth = 47
32      Caption = 'ProfilesToolBar'
33      EdgeBorders = []
34      ParentShowHint = False
35      ShowCaptions = True
36      ShowHint = True
37      TabOrder = 1
38      object MoveDownButton: TToolButton
39        Left = 1
40        Top = 46
41        Caption = 'MoveDownButton'
42        ImageIndex = 4
43        OnClick = MoveDownButtonClick
44      end
45      object MoveUpButton: TToolButton
46        Left = 223
47        Top = 0
48        Caption = 'MoveUpButton'
49        ImageIndex = 3
50        OnClick = MoveUpButtonClick
51      end
52      object EditButton: TToolButton
53        Left = 154
54        Top = 0
55        Caption = 'EditButton'
56        ImageIndex = 2
57        OnClick = EditButtonClick
58      end
59      object RemoveButton: TToolButton
60        Left = 67
61        Top = 0
62        Caption = 'RemoveButton'
63        ImageIndex = 1
64        OnClick = RemoveButtonClick
65      end
66      object AddButton: TToolButton
67        Left = 1
68        Top = 0
69        Caption = 'AddButton'
70        ImageIndex = 0
71        OnClick = AddButtonClick
72      end
73      object tbSeparator: TToolButton
74        Left = 218
75        Height = 46
76        Top = 0
77        Width = 5
78        Caption = 'tbSeparator'
79        Style = tbsDivider
80      end
81    end
82    object ProfilesListBox: TListBox
83      Left = 0
84      Height = 305
85      Top = 92
86      Width = 360
87      Align = alClient
88      ItemHeight = 0
89      OnClick = ProfilesListboxClick
90      ScrollWidth = 354
91      TabOrder = 0
92    end
93    object ButtonPanel: TButtonPanel
94      Left = 6
95      Height = 26
96      Top = 403
97      Width = 348
98      OKButton.Name = 'OKButton'
99      OKButton.DefaultCaption = True
100      HelpButton.Name = 'HelpButton'
101      HelpButton.DefaultCaption = True
102      HelpButton.OnClick = HelpButtonClick
103      CloseButton.Name = 'CloseButton'
104      CloseButton.DefaultCaption = True
105      CloseButton.Enabled = False
106      CancelButton.Name = 'CancelButton'
107      CancelButton.DefaultCaption = True
108      TabOrder = 2
109      ShowButtons = [pbOK, pbCancel, pbHelp]
110      ShowBevel = False
111    end
112  end
113end
114