File: buildprojectdlg.lfm

package info (click to toggle)
lazarus 2.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 214,460 kB
  • sloc: pascal: 1,862,622; xml: 265,709; cpp: 56,595; sh: 3,008; java: 609; makefile: 535; perl: 297; sql: 222; ansic: 137
file content (204 lines) | stat: -rw-r--r-- 5,657 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
object CleanBuildProjectDialog: TCleanBuildProjectDialog
  Left = 275
  Height = 545
  Top = 250
  Width = 537
  BorderIcons = [biSystemMenu, biMaximize]
  Caption = 'CleanBuildProjectDialog'
  ClientHeight = 545
  ClientWidth = 537
  OnClose = FormClose
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  OnResize = FormResize
  Position = poScreenCenter
  LCLVersion = '1.7'
  object ButtonPanel1: TButtonPanel
    Left = 6
    Height = 36
    Top = 503
    Width = 525
    OKButton.Name = 'OKButton'
    OKButton.DefaultCaption = True
    OKButton.OnClick = ButtonPanel1OKButtonClick
    HelpButton.Name = 'HelpButton'
    HelpButton.DefaultCaption = True
    HelpButton.OnClick = HelpButtonClick
    CloseButton.Name = 'CloseButton'
    CloseButton.DefaultCaption = True
    CancelButton.Name = 'CancelButton'
    CancelButton.DefaultCaption = True
    TabOrder = 10
    ShowButtons = [pbOK, pbCancel, pbHelp]
  end
  object ProjOutCheckBox: TCheckBox
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = ProjOutMaskComboBox
    AnchorSideTop.Side = asrCenter
    Left = 10
    Height = 21
    Top = 15
    Width = 137
    BorderSpacing.Left = 10
    Caption = 'ProjOutCheckBox'
    Checked = True
    OnChange = ProjOutCheckBoxChange
    State = cbChecked
    TabOrder = 0
  end
  object ProjSrcCheckBox: TCheckBox
    AnchorSideLeft.Control = ProjOutCheckBox
    AnchorSideTop.Control = ProjSrcMaskComboBox
    AnchorSideTop.Side = asrCenter
    Left = 10
    Height = 21
    Top = 49
    Width = 133
    Caption = 'ProjSrcCheckBox'
    Checked = True
    OnChange = ProjSrcCheckBoxChange
    State = cbChecked
    TabOrder = 1
  end
  object PkgOutCheckBox: TCheckBox
    AnchorSideLeft.Control = ProjOutCheckBox
    AnchorSideTop.Control = PkgOutMaskComboBox
    AnchorSideTop.Side = asrCenter
    Left = 10
    Height = 21
    Top = 83
    Width = 134
    Caption = 'PkgOutCheckBox'
    Checked = True
    OnChange = PkgOutCheckBoxChange
    State = cbChecked
    TabOrder = 2
  end
  object PkgSrcCheckBox: TCheckBox
    AnchorSideLeft.Control = ProjOutCheckBox
    AnchorSideTop.Control = PkgSrcMaskComboBox
    AnchorSideTop.Side = asrCenter
    Left = 10
    Height = 21
    Top = 117
    Width = 130
    Caption = 'PkgSrcCheckBox'
    Checked = True
    OnChange = PkgSrcCheckBoxChange
    State = cbChecked
    TabOrder = 3
  end
  object ProjOutMaskComboBox: TComboBox
    AnchorSideTop.Control = Owner
    AnchorSideRight.Control = Owner
    AnchorSideRight.Side = asrBottom
    Left = 232
    Height = 31
    Top = 10
    Width = 299
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Top = 10
    BorderSpacing.Right = 6
    ItemHeight = 23
    OnChange = ProjOutMaskComboBoxChange
    TabOrder = 4
    Text = 'ProjOutMaskComboBox'
  end
  object ProjSrcMaskComboBox: TComboBox
    AnchorSideLeft.Control = ProjOutMaskComboBox
    AnchorSideTop.Control = ProjOutMaskComboBox
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = ProjOutMaskComboBox
    AnchorSideRight.Side = asrBottom
    Left = 232
    Height = 31
    Top = 44
    Width = 299
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Top = 3
    ItemHeight = 23
    OnChange = ProjOutMaskComboBoxChange
    TabOrder = 5
    Text = 'ProjSrcMaskComboBox'
  end
  object PkgOutMaskComboBox: TComboBox
    AnchorSideLeft.Control = ProjOutMaskComboBox
    AnchorSideTop.Control = ProjSrcMaskComboBox
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = ProjOutMaskComboBox
    AnchorSideRight.Side = asrBottom
    Left = 232
    Height = 31
    Top = 78
    Width = 299
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Top = 3
    ItemHeight = 23
    OnChange = ProjOutMaskComboBoxChange
    TabOrder = 6
    Text = 'PkgOutMaskComboBox'
  end
  object PkgSrcMaskComboBox: TComboBox
    AnchorSideLeft.Control = ProjOutMaskComboBox
    AnchorSideTop.Control = PkgOutMaskComboBox
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = ProjOutMaskComboBox
    AnchorSideRight.Side = asrBottom
    Left = 232
    Height = 31
    Top = 112
    Width = 299
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Top = 3
    ItemHeight = 23
    OnChange = ProjOutMaskComboBoxChange
    TabOrder = 7
    Text = 'PkgSrcMaskComboBox'
  end
  object DeleteButton: TButton
    AnchorSideRight.Control = ProjOutMaskComboBox
    AnchorSideRight.Side = asrBottom
    AnchorSideBottom.Control = ButtonPanel1
    Left = 438
    Height = 27
    Top = 470
    Width = 93
    Anchors = [akRight, akBottom]
    AutoSize = True
    BorderSpacing.Top = 6
    BorderSpacing.Bottom = 6
    Caption = 'DeleteButton'
    OnClick = DeleteButtonClick
    TabOrder = 9
  end
  object FilesTreeView: TTreeView
    AnchorSideLeft.Control = PreviewLabel
    AnchorSideTop.Control = PreviewLabel
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = ProjOutMaskComboBox
    AnchorSideRight.Side = asrBottom
    AnchorSideBottom.Control = DeleteButton
    Left = 10
    Height = 292
    Top = 172
    Width = 521
    Anchors = [akTop, akLeft, akRight, akBottom]
    ReadOnly = True
    TabOrder = 8
    OnMouseDown = FilesTreeViewMouseDown
    Options = [tvoAutoItemHeight, tvoHideSelection, tvoKeepCollapsedNodes, tvoReadOnly, tvoShowButtons, tvoShowLines, tvoShowRoot, tvoToolTips, tvoThemedDraw]
  end
  object PreviewLabel: TLabel
    AnchorSideLeft.Control = PkgSrcCheckBox
    AnchorSideTop.Control = PkgSrcMaskComboBox
    AnchorSideTop.Side = asrBottom
    Left = 10
    Height = 17
    Top = 149
    Width = 79
    BorderSpacing.Top = 6
    BorderSpacing.Bottom = 6
    Caption = 'PreviewLabel'
    ParentColor = False
  end
end