~ubuntu-branches/ubuntu/vivid/lazarus/vivid

« back to all changes in this revision

Viewing changes to ide/examplemanager.lfm

  • Committer: Package Import Robot
  • Author(s): Paul Gevers, Abou Al Montacir, Paul Gevers
  • Date: 2014-02-22 10:25:57 UTC
  • mfrom: (1.1.11)
  • Revision ID: package-import@ubuntu.com-20140222102557-ors9d31r84nz31jq
Tags: 1.2~rc2+dfsg-1
[ Abou Al Montacir ]
* New upstream pre-release.
  + Moved ideintf to components directory.
  + Added new package cairocanvas.
* Remove usage of depreciated parameters form of find. (Closes: Bug#724776)
* Bumped standard version to 3.9.5.
* Clean the way handling make files generation and removal.

[ Paul Gevers ]
* Remove nearly obsolete bzip compression for binary packages
  (See https://lists.debian.org/debian-devel/2014/01/msg00542.html)
* Update d/copyright for newly added dir in examples and components
* Update Vcs-* fields with new packaging location
* Update d/watch file to properly (Debian way) change upstreams versions
* Prevent 46MB of package size by sym linking duplicate files
* Patches
  - refresh to remove fuzz
  - add more Lintian found spelling errors
  - new patch to add shbang to two scripts in lazarus-src
* Drop lcl-# from Provides list of lcl-units-#
* Make lazarus-ide-qt4-# an arch all until it really contains stuff
* Make all metapackages arch all as the usecase for arch any doesn't
  seem to warrant the addition archive hit
* Fix permissions of non-scripts in lazarus-src-#

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
object ExampleManagerForm: TExampleManagerForm
 
2
  Left = 356
 
3
  Height = 495
 
4
  Top = 130
 
5
  Width = 870
 
6
  Caption = 'ExampleManagerForm'
 
7
  ClientHeight = 495
 
8
  ClientWidth = 870
 
9
  OnClose = FormClose
 
10
  OnCreate = FormCreate
 
11
  Position = poScreenCenter
 
12
  LCLVersion = '1.1'
 
13
  object ProjectsGroupBox: TGroupBox
 
14
    Left = 0
 
15
    Height = 326
 
16
    Top = 123
 
17
    Width = 457
 
18
    Align = alClient
 
19
    BorderSpacing.Top = 3
 
20
    Caption = 'Projects'
 
21
    ClientHeight = 308
 
22
    ClientWidth = 453
 
23
    TabOrder = 0
 
24
    object ProjectsListBox: TListBox
 
25
      AnchorSideLeft.Control = ProjectsGroupBox
 
26
      AnchorSideTop.Control = ProjectFilter
 
27
      AnchorSideTop.Side = asrBottom
 
28
      AnchorSideRight.Control = ProjectsGroupBox
 
29
      AnchorSideRight.Side = asrBottom
 
30
      AnchorSideBottom.Control = ProjectsGroupBox
 
31
      AnchorSideBottom.Side = asrBottom
 
32
      Left = 6
 
33
      Height = 274
 
34
      Top = 28
 
35
      Width = 441
 
36
      Anchors = [akTop, akLeft, akRight, akBottom]
 
37
      BorderSpacing.Around = 6
 
38
      ItemHeight = 0
 
39
      MultiSelect = True
 
40
      OnSelectionChange = ProjectsListBoxSelectionChange
 
41
      TabOrder = 0
 
42
    end
 
43
    object ProjectFilter: TListFilterEdit
 
44
      AnchorSideLeft.Control = ProjectsListBox
 
45
      Left = 6
 
46
      Height = 21
 
47
      Top = 1
 
48
      Width = 221
 
49
      OnAfterFilter = ProjectFilterAfterFilter
 
50
      ButtonWidth = 23
 
51
      NumGlyphs = 1
 
52
      MaxLength = 0
 
53
      TabOrder = 1
 
54
      FilteredListbox = ProjectsListBox
 
55
    end
 
56
    object cbRelativePath: TCheckBox
 
57
      AnchorSideLeft.Control = ProjectFilter
 
58
      AnchorSideLeft.Side = asrBottom
 
59
      AnchorSideTop.Control = ProjectFilter
 
60
      AnchorSideTop.Side = asrCenter
 
61
      Left = 277
 
62
      Height = 17
 
63
      Top = 3
 
64
      Width = 87
 
65
      BorderSpacing.Left = 50
 
66
      Caption = 'Relative paths'
 
67
      OnClick = cbRelativePathClick
 
68
      TabOrder = 2
 
69
    end
 
70
  end
 
71
  object ButtonPanel1: TButtonPanel
 
72
    Left = 6
 
73
    Height = 34
 
74
    Top = 455
 
75
    Width = 858
 
76
    OKButton.Name = 'OKButton'
 
77
    OKButton.DefaultCaption = True
 
78
    HelpButton.Name = 'HelpButton'
 
79
    HelpButton.DefaultCaption = True
 
80
    CloseButton.Name = 'CloseButton'
 
81
    CloseButton.DefaultCaption = True
 
82
    CancelButton.Name = 'CancelButton'
 
83
    CancelButton.DefaultCaption = True
 
84
    TabOrder = 1
 
85
    ShowButtons = [pbClose, pbHelp]
 
86
  end
 
87
  object ActionGroupBox: TGroupBox
 
88
    AnchorSideLeft.Side = asrBottom
 
89
    Left = 465
 
90
    Height = 326
 
91
    Top = 123
 
92
    Width = 405
 
93
    Align = alRight
 
94
    Anchors = []
 
95
    BorderSpacing.Left = 3
 
96
    BorderSpacing.Top = 3
 
97
    Caption = 'Action'
 
98
    ClientHeight = 308
 
99
    ClientWidth = 401
 
100
    TabOrder = 2
 
101
    object OpenSelectedButton: TBitBtn
 
102
      AnchorSideLeft.Control = ActionGroupBox
 
103
      AnchorSideTop.Control = ActionGroupBox
 
104
      AnchorSideRight.Control = lblCenter
 
105
      Left = 6
 
106
      Height = 25
 
107
      Top = 6
 
108
      Width = 188
 
109
      Anchors = [akTop, akLeft, akRight]
 
110
      BorderSpacing.Around = 6
 
111
      Caption = 'Open First Selected'
 
112
      Enabled = False
 
113
      OnClick = OpenSelectedButtonClick
 
114
      TabOrder = 0
 
115
    end
 
116
    object BuildAllSelectedButton: TBitBtn
 
117
      AnchorSideLeft.Control = ActionGroupBox
 
118
      AnchorSideTop.Control = OpenSelectedButton
 
119
      AnchorSideTop.Side = asrBottom
 
120
      AnchorSideRight.Control = lblCenter
 
121
      AnchorSideRight.Side = asrBottom
 
122
      Left = 6
 
123
      Height = 25
 
124
      Top = 43
 
125
      Width = 189
 
126
      Anchors = [akTop, akLeft, akRight]
 
127
      BorderSpacing.Top = 6
 
128
      BorderSpacing.Around = 6
 
129
      Caption = 'Build All Selected'
 
130
      Enabled = False
 
131
      OnClick = BuildAllSelectedButtonClick
 
132
      TabOrder = 1
 
133
      Visible = False
 
134
    end
 
135
    object SelectAllButton: TBitBtn
 
136
      AnchorSideLeft.Control = lblCenter
 
137
      AnchorSideLeft.Side = asrBottom
 
138
      AnchorSideTop.Control = ActionGroupBox
 
139
      AnchorSideRight.Control = ActionGroupBox
 
140
      AnchorSideRight.Side = asrBottom
 
141
      Left = 207
 
142
      Height = 25
 
143
      Top = 6
 
144
      Width = 188
 
145
      Anchors = [akTop, akLeft, akRight]
 
146
      BorderSpacing.Around = 6
 
147
      Caption = 'Select All'
 
148
      OnClick = SelectAllButtonClick
 
149
      TabOrder = 2
 
150
    end
 
151
    object SelectNoneButton: TBitBtn
 
152
      AnchorSideLeft.Control = lblCenter
 
153
      AnchorSideLeft.Side = asrBottom
 
154
      AnchorSideTop.Control = SelectAllButton
 
155
      AnchorSideTop.Side = asrBottom
 
156
      AnchorSideRight.Control = ActionGroupBox
 
157
      AnchorSideRight.Side = asrBottom
 
158
      Left = 207
 
159
      Height = 25
 
160
      Top = 43
 
161
      Width = 188
 
162
      Anchors = [akTop, akLeft, akRight]
 
163
      BorderSpacing.Top = 6
 
164
      BorderSpacing.Around = 6
 
165
      Caption = 'Select None'
 
166
      Enabled = False
 
167
      OnClick = SelectNoneButtonClick
 
168
      TabOrder = 3
 
169
    end
 
170
    object DescriptionMemo: TMemo
 
171
      AnchorSideLeft.Control = ActionGroupBox
 
172
      AnchorSideTop.Control = SelectNoneButton
 
173
      AnchorSideTop.Side = asrBottom
 
174
      AnchorSideRight.Control = ActionGroupBox
 
175
      AnchorSideRight.Side = asrBottom
 
176
      AnchorSideBottom.Control = ActionGroupBox
 
177
      AnchorSideBottom.Side = asrBottom
 
178
      Left = 6
 
179
      Height = 228
 
180
      Top = 74
 
181
      Width = 389
 
182
      Anchors = [akTop, akLeft, akRight, akBottom]
 
183
      BorderSpacing.Around = 6
 
184
      ReadOnly = True
 
185
      ScrollBars = ssAutoBoth
 
186
      TabOrder = 4
 
187
    end
 
188
    object lblCenter: TLabel
 
189
      AnchorSideLeft.Control = ActionGroupBox
 
190
      AnchorSideLeft.Side = asrCenter
 
191
      AnchorSideTop.Control = ActionGroupBox
 
192
      Left = 200
 
193
      Height = 1
 
194
      Top = 0
 
195
      Width = 1
 
196
      ParentColor = False
 
197
    end
 
198
  end
 
199
  object SelectPanel: TPanel
 
200
    Left = 0
 
201
    Height = 120
 
202
    Top = 0
 
203
    Width = 870
 
204
    Align = alTop
 
205
    ClientHeight = 120
 
206
    ClientWidth = 870
 
207
    TabOrder = 3
 
208
    object cbIncludeAllDirs: TCheckBox
 
209
      AnchorSideTop.Side = asrBottom
 
210
      AnchorSideRight.Control = edRootDirectory
 
211
      AnchorSideRight.Side = asrBottom
 
212
      Left = 328
 
213
      Height = 17
 
214
      Top = 56
 
215
      Width = 136
 
216
      Anchors = [akTop, akRight]
 
217
      BorderSpacing.Top = 3
 
218
      Caption = 'Include all subdirectories'
 
219
      OnClick = cbIncludeAllDirsClick
 
220
      TabOrder = 0
 
221
    end
 
222
    object edRootDirectory: TDirectoryEdit
 
223
      AnchorSideLeft.Control = lbRootDirectory
 
224
      AnchorSideTop.Side = asrBottom
 
225
      AnchorSideRight.Side = asrBottom
 
226
      Left = 8
 
227
      Height = 21
 
228
      Top = 24
 
229
      Width = 456
 
230
      ShowHidden = False
 
231
      ButtonWidth = 23
 
232
      NumGlyphs = 1
 
233
      Anchors = [akTop, akLeft, akRight]
 
234
      BorderSpacing.Top = 7
 
235
      MaxLength = 0
 
236
      TabOrder = 1
 
237
      OnChange = edRootDirectoryChange
 
238
    end
 
239
    object cgIncludedDirs: TCheckGroup
 
240
      AnchorSideBottom.Control = SelectPanel
 
241
      AnchorSideBottom.Side = asrBottom
 
242
      Left = 496
 
243
      Height = 114
 
244
      Top = 5
 
245
      Width = 369
 
246
      Anchors = [akTop, akRight, akBottom]
 
247
      AutoFill = True
 
248
      Caption = 'Include subdirectories'
 
249
      ChildSizing.LeftRightSpacing = 6
 
250
      ChildSizing.TopBottomSpacing = 6
 
251
      ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
 
252
      ChildSizing.EnlargeVertical = crsHomogenousChildResize
 
253
      ChildSizing.ShrinkHorizontal = crsScaleChilds
 
254
      ChildSizing.ShrinkVertical = crsScaleChilds
 
255
      ChildSizing.Layout = cclLeftToRightThenTopToBottom
 
256
      ChildSizing.ControlsPerLine = 4
 
257
      ClientHeight = 96
 
258
      ClientWidth = 365
 
259
      Columns = 4
 
260
      Items.Strings = (
 
261
        'example'
 
262
        'sample'
 
263
        'demo'
 
264
        'test'
 
265
        'examples'
 
266
        'samples'
 
267
        'demos'
 
268
        'tests'
 
269
      )
 
270
      OnItemClick = cgIncludedDirsItemClick
 
271
      TabOrder = 2
 
272
      Data = {
 
273
        080000000202020202020202
 
274
      }
 
275
    end
 
276
    object lbRootDirectory: TLabel
 
277
      Left = 8
 
278
      Height = 13
 
279
      Top = 8
 
280
      Width = 70
 
281
      Caption = 'Root Directory'
 
282
      ParentColor = False
 
283
    end
 
284
    object lbProjectCount: TLabel
 
285
      AnchorSideLeft.Control = edRootDirectory
 
286
      AnchorSideBottom.Control = SelectPanel
 
287
      AnchorSideBottom.Side = asrBottom
 
288
      Left = 8
 
289
      Height = 13
 
290
      Top = 95
 
291
      Width = 71
 
292
      Anchors = [akLeft, akBottom]
 
293
      BorderSpacing.Bottom = 11
 
294
      Caption = 'lbProjectCount'
 
295
      ParentColor = False
 
296
    end
 
297
  end
 
298
  object Splitter1: TSplitter
 
299
    Left = 457
 
300
    Height = 329
 
301
    Top = 120
 
302
    Width = 5
 
303
    Align = alRight
 
304
    ResizeAnchor = akRight
 
305
  end
 
306
end