File: frmtemplatevariables.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 (125 lines) | stat: -rw-r--r-- 3,350 bytes parent folder | download | duplicates (4)
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
object ProjectVariablesForm: TProjectVariablesForm
  Left = 505
  Height = 345
  Top = 306
  Width = 539
  Caption = 'New project from template'
  ClientHeight = 345
  ClientWidth = 539
  OnCreate = FormCreate
  OnShow = ProjectVariablesFormShow
  Position = poScreenCenter
  LCLVersion = '2.3.0.0'
  object ProjNameLabel: TLabel
    AnchorSideTop.Control = EProjectName
    AnchorSideTop.Side = asrCenter
    Left = 8
    Height = 15
    Top = 20
    Width = 118
    Alignment = taRightJustify
    Caption = '&Name for new project:'
    Layout = tlCenter
  end
  object DEDestDirLabel: TLabel
    AnchorSideTop.Control = DEDestDir
    AnchorSideTop.Side = asrCenter
    Left = 8
    Height = 15
    Top = 52
    Width = 100
    Alignment = taRightJustify
    Caption = 'Create in &directory:'
    Layout = tlCenter
  end
  object PDescription: TPanel
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = DEDestDir
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = Owner
    AnchorSideRight.Side = asrBottom
    Left = 6
    Height = 58
    Top = 77
    Width = 527
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Around = 6
    BevelInner = bvRaised
    BevelOuter = bvLowered
    Caption = 'This project contains some additional variables. Please provide values for these variables'
    FullRepaint = False
    TabOrder = 0
  end
  object SGVariables: TStringGrid
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = PDescription
    AnchorSideTop.Side = asrBottom
    AnchorSideRight.Control = Owner
    AnchorSideRight.Side = asrBottom
    AnchorSideBottom.Control = ButtonPanel1
    Left = 6
    Height = 158
    Top = 141
    Width = 527
    Anchors = [akTop, akLeft, akRight, akBottom]
    AutoFillColumns = True
    BorderSpacing.Around = 6
    ColCount = 3
    DefaultColWidth = 120
    Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goColSizing, goEditing, goAlwaysShowEditor, goDblClickAutoSize, goSmoothScroll]
    TabOrder = 3
    OnSelectEditor = SGVariablesSelectEditor
    ColWidths = (
      120
      201
      202
    )
  end
  object EProjectName: TEdit
    AnchorSideLeft.Control = ProjNameLabel
    AnchorSideLeft.Side = asrBottom
    AnchorSideRight.Control = Owner
    AnchorSideRight.Side = asrBottom
    Left = 132
    Height = 23
    Top = 16
    Width = 401
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Left = 6
    BorderSpacing.Right = 6
    OnChange = EssentialDataChange
    TabOrder = 1
  end
  object DEDestDir: TDirectoryEdit
    AnchorSideLeft.Control = EProjectName
    AnchorSideRight.Side = asrBottom
    Left = 132
    Height = 23
    Top = 48
    Width = 399
    ShowHidden = False
    ButtonWidth = 23
    NumGlyphs = 1
    Anchors = [akTop, akLeft, akRight]
    MaxLength = 0
    TabOrder = 2
    OnChange = EssentialDataChange
  end
  object ButtonPanel1: TButtonPanel
    Left = 6
    Height = 34
    Top = 305
    Width = 527
    OKButton.Name = 'OKButton'
    OKButton.DefaultCaption = True
    OKButton.OnClick = BOKClick
    HelpButton.Name = 'HelpButton'
    HelpButton.DefaultCaption = True
    CloseButton.Name = 'CloseButton'
    CloseButton.DefaultCaption = True
    CancelButton.Name = 'CancelButton'
    CancelButton.DefaultCaption = True
    TabOrder = 4
    ShowButtons = [pbOK, pbCancel]
  end
end