1 | object CDCustomizeForm: TCDCustomizeForm
|
---|
2 | Left = 431
|
---|
3 | Height = 321
|
---|
4 | Top = 139
|
---|
5 | Width = 397
|
---|
6 | Caption = 'Customize docking'
|
---|
7 | ClientHeight = 321
|
---|
8 | ClientWidth = 397
|
---|
9 | FormStyle = fsStayOnTop
|
---|
10 | OnShow = FormShow
|
---|
11 | LCLVersion = '0.9.31'
|
---|
12 | object PageControl1: TPageControl
|
---|
13 | Left = 8
|
---|
14 | Height = 276
|
---|
15 | Top = 8
|
---|
16 | Width = 383
|
---|
17 | ActivePage = TabSheetLayouts
|
---|
18 | Anchors = [akTop, akLeft, akRight, akBottom]
|
---|
19 | TabIndex = 1
|
---|
20 | TabOrder = 0
|
---|
21 | object TabSheetSetting: TTabSheet
|
---|
22 | Caption = 'Options'
|
---|
23 | ClientHeight = 252
|
---|
24 | ClientWidth = 385
|
---|
25 | object Label1: TLabel
|
---|
26 | Left = 7
|
---|
27 | Height = 14
|
---|
28 | Top = 13
|
---|
29 | Width = 104
|
---|
30 | Caption = 'Default tabs position:'
|
---|
31 | ParentColor = False
|
---|
32 | end
|
---|
33 | object ComboBox1: TComboBox
|
---|
34 | Left = 164
|
---|
35 | Height = 21
|
---|
36 | Top = 10
|
---|
37 | Width = 100
|
---|
38 | ItemHeight = 13
|
---|
39 | Items.Strings = (
|
---|
40 | 'Auto'
|
---|
41 | 'Left'
|
---|
42 | 'Top'
|
---|
43 | 'Right'
|
---|
44 | 'Bottom'
|
---|
45 | )
|
---|
46 | Style = csDropDownList
|
---|
47 | TabOrder = 0
|
---|
48 | end
|
---|
49 | object Label2: TLabel
|
---|
50 | Left = 7
|
---|
51 | Height = 14
|
---|
52 | Top = 41
|
---|
53 | Width = 117
|
---|
54 | Caption = 'Default header position:'
|
---|
55 | ParentColor = False
|
---|
56 | end
|
---|
57 | object ComboBox2: TComboBox
|
---|
58 | Left = 164
|
---|
59 | Height = 21
|
---|
60 | Top = 38
|
---|
61 | Width = 100
|
---|
62 | ItemHeight = 13
|
---|
63 | Items.Strings = (
|
---|
64 | 'Auto'
|
---|
65 | 'Left'
|
---|
66 | 'Top'
|
---|
67 | 'Right'
|
---|
68 | 'Bottom'
|
---|
69 | )
|
---|
70 | Style = csDropDownList
|
---|
71 | TabOrder = 1
|
---|
72 | end
|
---|
73 | object Label3: TLabel
|
---|
74 | Left = 7
|
---|
75 | Height = 14
|
---|
76 | Top = 67
|
---|
77 | Width = 101
|
---|
78 | Caption = 'Hide/unhide duration'
|
---|
79 | ParentColor = False
|
---|
80 | end
|
---|
81 | object SpinEdit1: TSpinEdit
|
---|
82 | Left = 164
|
---|
83 | Height = 21
|
---|
84 | Top = 64
|
---|
85 | Width = 100
|
---|
86 | MaxValue = 10000
|
---|
87 | TabOrder = 2
|
---|
88 | end
|
---|
89 | object Label4: TLabel
|
---|
90 | Left = 270
|
---|
91 | Height = 14
|
---|
92 | Top = 67
|
---|
93 | Width = 14
|
---|
94 | Caption = 'ms'
|
---|
95 | ParentColor = False
|
---|
96 | end
|
---|
97 | end
|
---|
98 | object TabSheetLayouts: TTabSheet
|
---|
99 | Caption = 'Layouts'
|
---|
100 | ClientHeight = 250
|
---|
101 | ClientWidth = 375
|
---|
102 | object ListBox1: TListBox
|
---|
103 | Left = 12
|
---|
104 | Height = 229
|
---|
105 | Top = 11
|
---|
106 | Width = 258
|
---|
107 | Anchors = [akTop, akLeft, akRight, akBottom]
|
---|
108 | ItemHeight = 0
|
---|
109 | OnSelectionChange = ListBox1SelectionChange
|
---|
110 | TabOrder = 0
|
---|
111 | end
|
---|
112 | object ButtonLayoutNew: TButton
|
---|
113 | Left = 282
|
---|
114 | Height = 25
|
---|
115 | Top = 10
|
---|
116 | Width = 75
|
---|
117 | Anchors = [akTop, akRight]
|
---|
118 | Caption = 'New...'
|
---|
119 | OnClick = ButtonLayoutNewClick
|
---|
120 | TabOrder = 1
|
---|
121 | end
|
---|
122 | object ButtonLayoutSave: TButton
|
---|
123 | Left = 282
|
---|
124 | Height = 25
|
---|
125 | Top = 50
|
---|
126 | Width = 75
|
---|
127 | Anchors = [akTop, akRight]
|
---|
128 | Caption = 'Save'
|
---|
129 | Enabled = False
|
---|
130 | TabOrder = 2
|
---|
131 | end
|
---|
132 | object ButtonLayoutRename: TButton
|
---|
133 | Left = 282
|
---|
134 | Height = 25
|
---|
135 | Top = 90
|
---|
136 | Width = 75
|
---|
137 | Anchors = [akTop, akRight]
|
---|
138 | Caption = 'Rename'
|
---|
139 | Enabled = False
|
---|
140 | OnClick = ButtonLayoutRenameClick
|
---|
141 | TabOrder = 3
|
---|
142 | end
|
---|
143 | object ButtonLayoutDelete: TButton
|
---|
144 | Left = 282
|
---|
145 | Height = 25
|
---|
146 | Top = 130
|
---|
147 | Width = 75
|
---|
148 | Anchors = [akTop, akRight]
|
---|
149 | Caption = 'Delete'
|
---|
150 | Enabled = False
|
---|
151 | OnClick = ButtonLayoutDeleteClick
|
---|
152 | TabOrder = 4
|
---|
153 | end
|
---|
154 | object ButtonLayoutApply: TButton
|
---|
155 | Left = 282
|
---|
156 | Height = 25
|
---|
157 | Top = 170
|
---|
158 | Width = 75
|
---|
159 | Anchors = [akTop, akRight]
|
---|
160 | Caption = 'Restore'
|
---|
161 | Enabled = False
|
---|
162 | OnClick = ButtonLayoutApplyClick
|
---|
163 | TabOrder = 5
|
---|
164 | end
|
---|
165 | end
|
---|
166 | end
|
---|
167 | object ButtonClose: TButton
|
---|
168 | Left = 314
|
---|
169 | Height = 22
|
---|
170 | Top = 292
|
---|
171 | Width = 75
|
---|
172 | Anchors = [akRight, akBottom]
|
---|
173 | Caption = 'Close'
|
---|
174 | OnClick = ButtonCloseClick
|
---|
175 | TabOrder = 1
|
---|
176 | end
|
---|
177 | end
|
---|