File: addassignmethoddlg.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 (268 lines) | stat: -rw-r--r-- 7,145 bytes parent folder | download | duplicates (10)
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
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
object AddAssignMethodDialog: TAddAssignMethodDialog
  Left = 173
  Height = 484
  Top = 217
  Width = 569
  Caption = 'AddAssignMethodDialog'
  ClientHeight = 484
  ClientWidth = 569
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  Position = poScreenCenter
  LCLVersion = '0.9.31'
  object ButtonPanel1: TButtonPanel
    Left = 6
    Height = 42
    Top = 436
    Width = 557
    OKButton.Name = 'OKButton'
    OKButton.OnClick = OkButtonClick
    HelpButton.Name = 'HelpButton'
    HelpButton.OnClick = HelpButtonClick
    CloseButton.Name = 'CloseButton'
    CancelButton.Name = 'CancelButton'
    TabOrder = 3
    ShowButtons = [pbOK, pbCancel, pbHelp]
  end
  object MembersGroupBox: TGroupBox
    AnchorSideTop.Control = InheritedGroupBox
    AnchorSideTop.Side = asrBottom
    Left = 6
    Height = 142
    Top = 288
    Width = 557
    Align = alBottom
    Anchors = [akTop, akLeft, akRight, akBottom]
    BorderSpacing.Around = 6
    Caption = 'MembersGroupBox'
    ClientHeight = 121
    ClientWidth = 549
    TabOrder = 2
    object MembersTreeView: TCodyTreeView
      Left = 0
      Height = 121
      Top = 0
      Width = 549
      Align = alClient
      DefaultItemHeight = 19
      Images = ImageList1
      ReadOnly = True
      TabOrder = 0
      OnMouseDown = MembersTreeViewMouseDown
      Options = [tvoAutoItemHeight, tvoHideSelection, tvoKeepCollapsedNodes, tvoReadOnly, tvoShowButtons, tvoShowLines, tvoShowRoot, tvoToolTips, tvoThemedDraw]
    end
  end
  object InheritedGroupBox: TGroupBox
    Left = 6
    Height = 144
    Top = 138
    Width = 557
    Align = alTop
    AutoSize = True
    BorderSpacing.Around = 6
    Caption = 'InheritedGroupBox'
    ClientHeight = 123
    ClientWidth = 549
    TabOrder = 1
    object InheritedLabel: TLabel
      AnchorSideLeft.Control = InheritedGroupBox
      AnchorSideTop.Control = InheritedEdit
      AnchorSideTop.Side = asrCenter
      Left = 6
      Height = 18
      Top = 10
      Width = 100
      BorderSpacing.Left = 6
      BorderSpacing.Top = 6
      Caption = 'InheritedLabel'
      ParentColor = False
    end
    object InheritedEdit: TEdit
      AnchorSideLeft.Control = InheritedLabel
      AnchorSideLeft.Side = asrBottom
      AnchorSideTop.Control = InheritedGroupBox
      AnchorSideRight.Control = InheritedGroupBox
      AnchorSideRight.Side = asrBottom
      Left = 112
      Height = 27
      Top = 6
      Width = 431
      Anchors = [akTop, akLeft, akRight]
      BorderSpacing.Left = 6
      BorderSpacing.Top = 6
      BorderSpacing.Right = 6
      TabOrder = 0
      Text = 'InheritedEdit'
    end
    object InhOverrideCheckBox: TCheckBox
      AnchorSideLeft.Control = InheritedLabel
      AnchorSideTop.Control = InheritedEdit
      AnchorSideTop.Side = asrBottom
      Left = 12
      Height = 22
      Top = 39
      Width = 174
      BorderSpacing.Around = 6
      Caption = 'InhOverrideCheckBox'
      TabOrder = 1
    end
    object InhCallCheckBox: TCheckBox
      AnchorSideLeft.Control = InheritedLabel
      AnchorSideTop.Control = InhOverrideCheckBox
      AnchorSideTop.Side = asrBottom
      Left = 12
      Height = 22
      Top = 67
      Width = 140
      BorderSpacing.Around = 6
      Caption = 'InhCallCheckBox'
      TabOrder = 2
    end
    object InhCallOnlyInElseCheckBox: TCheckBox
      AnchorSideLeft.Control = InheritedLabel
      AnchorSideTop.Control = InhCallCheckBox
      AnchorSideTop.Side = asrBottom
      Left = 12
      Height = 22
      Top = 95
      Width = 209
      BorderSpacing.Around = 6
      Caption = 'InhCallOnlyInElseCheckBox'
      TabOrder = 3
    end
  end
  object DeclGroupBox: TGroupBox
    Left = 6
    Height = 126
    Top = 6
    Width = 557
    Align = alTop
    AutoSize = True
    BorderSpacing.Around = 6
    Caption = 'DeclGroupBox'
    ClientHeight = 105
    ClientWidth = 549
    TabOrder = 0
    object ParamTypeLabel: TLabel
      AnchorSideLeft.Control = ProcNameLabel
      AnchorSideTop.Control = ParamTypeEdit
      AnchorSideTop.Side = asrCenter
      Left = 6
      Height = 18
      Top = 76
      Width = 115
      Caption = 'ParamTypeLabel'
      ParentColor = False
    end
    object ParamTypeEdit: TEdit
      AnchorSideLeft.Control = ParamTypeLabel
      AnchorSideLeft.Side = asrBottom
      AnchorSideTop.Control = ParamNameEdit
      AnchorSideTop.Side = asrBottom
      Left = 127
      Height = 27
      Top = 72
      Width = 141
      BorderSpacing.Around = 6
      OnChange = ParamTypeEditChange
      TabOrder = 2
      Text = 'ParamTypeEdit'
    end
    object ParamNameEdit: TEdit
      AnchorSideLeft.Control = ParamNameLabel
      AnchorSideLeft.Side = asrBottom
      AnchorSideTop.Control = ProcNameEdit
      AnchorSideTop.Side = asrBottom
      Left = 135
      Height = 27
      Top = 39
      Width = 136
      BorderSpacing.Around = 6
      OnChange = ParamNameEditChange
      TabOrder = 1
      Text = 'ParamNameEdit'
    end
    object ParamNameLabel: TLabel
      AnchorSideLeft.Control = ProcNameLabel
      AnchorSideTop.Control = ParamNameEdit
      AnchorSideTop.Side = asrCenter
      Left = 6
      Height = 18
      Top = 43
      Width = 123
      Caption = 'ParamNameLabel'
      ParentColor = False
    end
    object ProcNameEdit: TEdit
      AnchorSideLeft.Control = ProcNameLabel
      AnchorSideLeft.Side = asrBottom
      AnchorSideTop.Control = DeclGroupBox
      Left = 122
      Height = 27
      Top = 6
      Width = 147
      BorderSpacing.Around = 6
      OnChange = ProcNameEditChange
      TabOrder = 0
      Text = 'ProcNameEdit'
    end
    object ProcNameLabel: TLabel
      AnchorSideLeft.Control = DeclGroupBox
      AnchorSideTop.Control = ProcNameEdit
      AnchorSideTop.Side = asrCenter
      Left = 6
      Height = 18
      Top = 10
      Width = 110
      BorderSpacing.Left = 6
      Caption = 'ProcNameLabel'
      ParentColor = False
    end
    object ProcNameErrorLabel: TLabel
      AnchorSideLeft.Control = ProcNameEdit
      AnchorSideLeft.Side = asrBottom
      AnchorSideTop.Control = ProcNameEdit
      AnchorSideTop.Side = asrCenter
      Left = 275
      Height = 18
      Top = 10
      Width = 145
      Caption = 'ProcNameErrorLabel'
      Font.Color = clRed
      ParentColor = False
      ParentFont = False
    end
    object ParamNameErrorLabel: TLabel
      AnchorSideLeft.Control = ParamNameEdit
      AnchorSideLeft.Side = asrBottom
      AnchorSideTop.Control = ParamNameEdit
      AnchorSideTop.Side = asrCenter
      Left = 277
      Height = 18
      Top = 43
      Width = 158
      Caption = 'ParamNameErrorLabel'
      Font.Color = clRed
      ParentColor = False
      ParentFont = False
    end
    object ParamTypeErrorLabel: TLabel
      AnchorSideLeft.Control = ParamTypeEdit
      AnchorSideLeft.Side = asrBottom
      AnchorSideTop.Control = ParamTypeEdit
      AnchorSideTop.Side = asrCenter
      Left = 274
      Height = 18
      Top = 76
      Width = 150
      Caption = 'ParamTypeErrorLabel'
      Font.Color = clRed
      ParentColor = False
      ParentFont = False
    end
  end
  object ImageList1: TImageList
    left = 306
    top = 288
  end
end