File: projectwizarddlg.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 (127 lines) | stat: -rw-r--r-- 3,129 bytes parent folder | download | duplicates (7)
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
object ProjectWizardDialog: TProjectWizardDialog
  Left = 298
  Height = 294
  Top = 322
  Width = 382
  ActiveControl = btnNewProject
  BorderIcons = [biSystemMenu]
  Caption = 'Project Wizard '
  ClientHeight = 294
  ClientWidth = 382
  Position = poScreenCenter
  LCLVersion = '1.1'
  object btnNewProject: TBitBtn
    AnchorSideTop.Control = Owner
    AnchorSideRight.Side = asrBottom
    Left = 7
    Height = 25
    Top = 11
    Width = 368
    Anchors = [akTop, akLeft, akRight]
    AutoSize = True
    BorderSpacing.Around = 11
    Caption = 'New Project'
    ModalResult = 1
    NumGlyphs = 0
    OnClick = btnNewProjectClick
    TabOrder = 0
  end
  object btnOpenProject: TBitBtn
    AnchorSideTop.Control = gbRecent
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Side = asrBottom
    Left = 7
    Height = 25
    Top = 126
    Width = 368
    Anchors = [akTop, akLeft, akRight]
    AutoSize = True
    BorderSpacing.Around = 11
    Caption = 'Open Project'
    ModalResult = 1
    NumGlyphs = 0
    OnClick = btnOpenProjectClick
    TabOrder = 2
  end
  object btnConvertProject: TBitBtn
    AnchorSideTop.Control = btnExamples
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Side = asrBottom
    Left = 7
    Height = 25
    Top = 198
    Width = 368
    Anchors = [akTop, akLeft, akRight]
    AutoSize = True
    BorderSpacing.Around = 11
    Caption = 'Convert Delphi Project'
    ModalResult = 1
    NumGlyphs = 0
    OnClick = btnConvertProjectClick
    TabOrder = 4
  end
  object btnCloseIDE: TBitBtn
    AnchorSideRight.Side = asrBottom
    AnchorSideBottom.Control = Owner
    AnchorSideBottom.Side = asrBottom
    Left = 7
    Height = 25
    Top = 258
    Width = 368
    Anchors = [akLeft, akRight, akBottom]
    AutoSize = True
    BorderSpacing.Around = 11
    Caption = 'Close Lazarus'
    ModalResult = 1
    NumGlyphs = 0
    OnClick = btnCloseIDEClick
    TabOrder = 5
  end
  object gbRecent: TGroupBox
    AnchorSideTop.Control = btnNewProject
    Left = 7
    Height = 56
    Top = 53
    Width = 368
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Top = 25
    BorderSpacing.Around = 17
    Caption = 'Open Recent Project'
    ClientHeight = 38
    ClientWidth = 364
    TabOrder = 1
    object cbRecentProjects: TComboBox
      AnchorSideLeft.Control = gbRecent
      AnchorSideTop.Control = gbRecent
      AnchorSideTop.Side = asrBottom
      AnchorSideRight.Control = gbRecent
      AnchorSideRight.Side = asrBottom
      Left = 1
      Height = 24
      Top = 10
      Width = 362
      Anchors = [akLeft, akRight]
      BorderSpacing.Around = 1
      ItemHeight = 0
      OnSelect = cbRecentProjectsSelect
      TabOrder = 0
    end
  end
  object btnExamples: TBitBtn
    AnchorSideTop.Control = btnOpenProject
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Side = asrBottom
    Left = 8
    Height = 25
    Top = 162
    Width = 368
    Anchors = [akTop, akLeft, akRight]
    AutoSize = True
    BorderSpacing.Around = 11
    Caption = 'View Example Projects'
    ModalResult = 1
    NumGlyphs = 0
    OnClick = btnExamplesClick
    TabOrder = 3
  end
end