File: projectwizarddlg.lfm

package info (click to toggle)
lazarus 4.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 275,760 kB
  • sloc: pascal: 2,341,904; xml: 509,420; makefile: 348,726; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (123 lines) | stat: -rw-r--r-- 3,074 bytes parent folder | download
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
object ProjectWizardDialog: TProjectWizardDialog
  Left = 298
  Height = 294
  Top = 322
  Width = 572
  ActiveControl = btnNewProject
  BorderIcons = [biSystemMenu]
  Caption = 'Project Wizard '
  ClientHeight = 294
  ClientWidth = 572
  Position = poScreenCenter
  LCLVersion = '3.99.0.0'
  object btnNewProject: TBitBtn
    AnchorSideTop.Control = Owner
    AnchorSideRight.Side = asrBottom
    Left = 7
    Height = 29
    Top = 11
    Width = 558
    Anchors = [akTop, akLeft, akRight]
    AutoSize = True
    BorderSpacing.Around = 11
    Caption = 'New Project'
    ModalResult = 1
    TabOrder = 0
    OnClick = btnNewProjectClick
  end
  object btnOpenProject: TBitBtn
    AnchorSideTop.Control = gbRecent
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Side = asrBottom
    Left = 7
    Height = 29
    Top = 126
    Width = 558
    Anchors = [akTop, akLeft, akRight]
    AutoSize = True
    BorderSpacing.Around = 11
    Caption = 'Open Project'
    ModalResult = 1
    TabOrder = 2
    OnClick = btnOpenProjectClick
  end
  object btnConvertProject: TBitBtn
    AnchorSideTop.Control = btnExamples
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Side = asrBottom
    Left = 7
    Height = 29
    Top = 206
    Width = 558
    Anchors = [akTop, akLeft, akRight]
    AutoSize = True
    BorderSpacing.Around = 11
    Caption = 'Convert Delphi Project'
    ModalResult = 1
    TabOrder = 4
    OnClick = btnConvertProjectClick
  end
  object btnCloseIDE: TBitBtn
    AnchorSideRight.Side = asrBottom
    AnchorSideBottom.Control = Owner
    AnchorSideBottom.Side = asrBottom
    Left = 7
    Height = 29
    Top = 254
    Width = 558
    Anchors = [akLeft, akRight, akBottom]
    AutoSize = True
    BorderSpacing.Around = 11
    Caption = 'Close Lazarus'
    ModalResult = 1
    TabOrder = 5
    OnClick = btnCloseIDEClick
  end
  object gbRecent: TGroupBox
    AnchorSideTop.Control = btnNewProject
    Left = 7
    Height = 56
    Top = 53
    Width = 558
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Top = 25
    BorderSpacing.Around = 17
    Caption = 'Open Recent Project'
    ClientHeight = 26
    ClientWidth = 554
    TabOrder = 1
    object cbRecentProjects: TComboBox
      AnchorSideLeft.Control = gbRecent
      AnchorSideTop.Control = gbRecent
      AnchorSideTop.Side = asrBottom
      AnchorSideRight.Control = gbRecent
      AnchorSideRight.Side = asrBottom
      Left = 1
      Height = 32
      Top = -1
      Width = 552
      Anchors = [akLeft, akRight]
      BorderSpacing.Around = 1
      ItemHeight = 18
      Style = csDropDownList
      TabOrder = 0
      OnSelect = cbRecentProjectsSelect
    end
  end
  object btnExamples: TBitBtn
    AnchorSideTop.Control = btnOpenProject
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Side = asrBottom
    Left = 8
    Height = 29
    Top = 166
    Width = 558
    Anchors = [akTop, akLeft, akRight]
    AutoSize = True
    BorderSpacing.Around = 11
    Caption = 'View Example Projects'
    ModalResult = 1
    TabOrder = 3
    OnClick = btnExamplesClick
  end
end