File: apiwizard.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 (214 lines) | stat: -rw-r--r-- 4,844 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
object ApiWizForm: TApiWizForm
  Left = 303
  Height = 518
  Top = 154
  Width = 872
  HorzScrollBar.Page = 582
  VertScrollBar.Page = 382
  ActiveControl = txtLazarus
  Caption = 'ApiWiZZ'
  ClientHeight = 518
  ClientWidth = 872
  OnCreate = ApiWizFormCreate
  OnDestroy = FormDestroy
  Position = poDefaultPosOnly
  LCLVersion = '1.1'
  object lblDeclare: TLabel
    AnchorSideTop.Side = asrBottom
    Left = 4
    Height = 17
    Top = 289
    Width = 424
    Anchors = [akLeft, akRight, akBottom]
    Caption = 'Declaration (each line is a separate entry):'
    ParentColor = False
  end
  object lblLazarus: TLabel
    Left = 4
    Height = 17
    Top = 8
    Width = 74
    Caption = 'Lazarus dir:'
    ParentColor = False
  end
  object cmdGenerate: TButton
    Left = 700
    Height = 28
    Top = 482
    Width = 167
    Anchors = [akRight, akBottom]
    BorderSpacing.InnerBorder = 4
    Caption = 'Generate'
    OnClick = cmdGenerateClick
    TabOrder = 1
  end
  object txtLazarus: TEdit
    Tag = 493
    Left = 4
    Height = 25
    Top = 24
    Width = 693
    Anchors = [akTop, akLeft, akRight]
    TabOrder = 0
  end
  object rdgApiType: TRadioGroup
    Left = 519
    Height = 72
    Top = 438
    Width = 178
    Anchors = [akRight, akBottom]
    AutoFill = True
    Caption = 'Api type'
    ChildSizing.LeftRightSpacing = 6
    ChildSizing.TopBottomSpacing = 6
    ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
    ChildSizing.EnlargeVertical = crsHomogenousChildResize
    ChildSizing.ShrinkHorizontal = crsScaleChilds
    ChildSizing.ShrinkVertical = crsScaleChilds
    ChildSizing.Layout = cclLeftToRightThenTopToBottom
    ChildSizing.ControlsPerLine = 1
    ClientHeight = 51
    ClientWidth = 170
    ItemIndex = 0
    Items.Strings = (
      'win32 compatibility'
      'LCL interface'
    )
    OnClick = rdgApiTypeClick
    TabOrder = 2
  end
  object Groupbox1: TGroupBox
    Left = 519
    Height = 144
    Top = 288
    Width = 348
    Anchors = [akRight, akBottom]
    Caption = 'LCL Widgetset'
    ClientHeight = 123
    ClientWidth = 340
    TabOrder = 3
    object rbIndependent: TRadioButton
      Left = 10
      Height = 22
      Top = 3
      Width = 107
      Caption = 'Independent'
      Checked = True
      OnClick = rbPlatformDependencyClick
      TabOrder = 0
      TabStop = True
    end
    object cbgLCLPlatform: TCheckGroup
      Left = 26
      Height = 77
      Top = 43
      Width = 308
      AutoFill = True
      ChildSizing.LeftRightSpacing = 6
      ChildSizing.TopBottomSpacing = 6
      ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
      ChildSizing.EnlargeVertical = crsHomogenousChildResize
      ChildSizing.ShrinkHorizontal = crsScaleChilds
      ChildSizing.ShrinkVertical = crsScaleChilds
      ChildSizing.Layout = cclTopToBottomThenLeftToRight
      ChildSizing.ControlsPerLine = 3
      ClientHeight = 56
      ClientWidth = 300
      ColumnLayout = clVerticalThenHorizontal
      Columns = 3
      Enabled = False
      Items.Strings = (
        'carbon'
        'cocoa'
        'fpgui'
        'gtk'
        'gtk2'
        'nogui'
        'qt'
        'win32'
        'wince'
      )
      TabOrder = 2
      Data = {
        09000000020202020202020202
      }
    end
    object rbDependent: TRadioButton
      Left = 10
      Height = 22
      Top = 23
      Width = 98
      Caption = 'Dependent'
      OnClick = rbPlatformDependencyClick
      TabOrder = 1
    end
  end
  object txtDeclarations: TMemo
    AnchorSideTop.Side = asrBottom
    Left = 4
    Height = 199
    Top = 311
    Width = 509
    Anchors = [akLeft, akRight, akBottom]
    ScrollBars = ssBoth
    TabOrder = 4
    WordWrap = False
  end
  object cmdScan: TButton
    Left = 700
    Height = 25
    Top = 24
    Width = 167
    Anchors = [akTop, akRight]
    Caption = 'Scan'
    OnClick = cmdScanClick
    TabOrder = 5
  end
  object lvExisting: TListView
    Left = 4
    Height = 232
    Top = 52
    Width = 863
    Anchors = [akTop, akLeft, akRight, akBottom]
    Columns = <    
      item
        AutoSize = True
        Caption = 'name'
        MinWidth = 250
        Width = 100
      end    
      item
        Alignment = taCenter
        AutoSize = True
        Caption = 'api'
        Width = 100
      end    
      item
        Alignment = taCenter
        AutoSize = True
        Caption = 'indep'
        Width = 100
      end    
      item
        Alignment = taCenter
        AutoSize = True
        Caption = 'base'
        Width = 100
      end>
    ReadOnly = True
    RowSelect = True
    SortType = stText
    TabOrder = 6
    ViewStyle = vsReport
  end
  object cmdCopy: TButton
    Left = 436
    Height = 25
    Top = 284
    Width = 75
    Anchors = [akRight, akBottom]
    Caption = 'Copy'
    OnClick = cmdCopyClick
    TabOrder = 7
  end
end