File: frmtemplatevariables.lfm

package info (click to toggle)
lazarus 1.6.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 172,444 kB
  • ctags: 124,173
  • sloc: pascal: 1,528,777; xml: 260,232; sh: 3,008; java: 603; makefile: 512; perl: 297; sql: 222; ansic: 137
file content (107 lines) | stat: -rw-r--r-- 2,642 bytes parent folder | download | duplicates (2)
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
object ProjectVariablesForm: TProjectVariablesForm
  Left = 505
  Height = 350
  Top = 306
  Width = 584
  Caption = 'New project from template'
  ClientHeight = 350
  ClientWidth = 584
  OnCreate = FormCreate
  OnShow = ProjectVariablesFormShow
  Position = poScreenCenter
  LCLVersion = '1.5'
  object Label1: TLabel
    Left = 8
    Height = 15
    Top = 16
    Width = 118
    Alignment = taRightJustify
    Caption = '&Name for new project:'
    Layout = tlCenter
    ParentColor = False
  end
  object Label2: TLabel
    Left = 8
    Height = 15
    Top = 48
    Width = 100
    Alignment = taRightJustify
    Caption = 'Create in &directory:'
    Layout = tlCenter
    ParentColor = False
  end
  object PDescription: TPanel
    Left = 8
    Height = 58
    Top = 80
    Width = 570
    Anchors = [akTop, akLeft, akRight]
    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
    Left = 10
    Height = 162
    Top = 144
    Width = 568
    Anchors = [akTop, akLeft, akRight, akBottom]
    AutoFillColumns = True
    ColCount = 3
    DefaultColWidth = 120
    Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goRangeSelect, goColSizing, goEditing, goAlwaysShowEditor, goDblClickAutoSize, goSmoothScroll]
    TabOrder = 3
    ColWidths = (
      120
      222
      222
    )
  end
  object EProjectName: TEdit
    AnchorSideLeft.Control = Label1
    AnchorSideLeft.Side = asrBottom
    AnchorSideRight.Control = Owner
    AnchorSideRight.Side = asrBottom
    Left = 132
    Height = 23
    Top = 16
    Width = 446
    Anchors = [akTop, akLeft, akRight]
    BorderSpacing.Left = 6
    BorderSpacing.Right = 6
    TabOrder = 1
  end
  object DEProject: TDirectoryEdit
    AnchorSideLeft.Control = EProjectName
    AnchorSideRight.Side = asrBottom
    Left = 132
    Height = 23
    Top = 48
    Width = 444
    ShowHidden = False
    ButtonWidth = 23
    NumGlyphs = 1
    Anchors = [akTop, akLeft, akRight]
    MaxLength = 0
    TabOrder = 2
  end
  object ButtonPanel1: TButtonPanel
    Left = 6
    Height = 34
    Top = 310
    Width = 572
    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