File: bitbtnform.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 (129 lines) | stat: -rw-r--r-- 2,510 bytes parent folder | download | duplicates (6)
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
object Form1: TForm1
  Left = 270
  Height = 170
  Top = 131
  Width = 335
  Caption = 'TBitBtn Verify'
  ClientHeight = 170
  ClientWidth = 335
  OnCreate = FormCreate
  LCLVersion = '2.3.0.0'
  object Button1: TBitBtn
    Left = 12
    Height = 120
    Top = 12
    Width = 120
    Caption = 'Button1'
    TabOrder = 0
  end
  object GroupBox1: TGroupBox
    Left = 144
    Height = 120
    Top = 12
    Width = 80
    Caption = 'Kind'
    ClientHeight = 100
    ClientWidth = 76
    TabOrder = 1
    object RadioButton1: TRadioButton
      Left = 8
      Height = 19
      Top = 6
      Width = 47
      Caption = 'Close'
      Checked = True
      OnChange = RadioButton1Change
      TabOrder = 3
      TabStop = True
    end
    object RadioButton2: TRadioButton
      Left = 8
      Height = 19
      Top = 28
      Width = 34
      Caption = 'OK'
      OnChange = RadioButton2Change
      TabOrder = 0
    end
    object RadioButton3: TRadioButton
      Left = 8
      Height = 19
      Top = 50
      Width = 54
      Caption = 'Cancel'
      OnChange = RadioButton3Change
      TabOrder = 1
    end
    object RadioButton4: TRadioButton
      Left = 8
      Height = 19
      Top = 72
      Width = 43
      Caption = 'Help'
      OnChange = RadioButton4Change
      TabOrder = 2
    end
  end
  object GroupBox2: TGroupBox
    Left = 240
    Height = 120
    Top = 12
    Width = 80
    Caption = 'Type'
    ClientHeight = 100
    ClientWidth = 76
    TabOrder = 2
    object RadioButton5: TRadioButton
      Left = 8
      Height = 19
      Top = 6
      Width = 38
      Caption = 'Left'
      Checked = True
      OnChange = RadioButton5Change
      TabOrder = 0
      TabStop = True
    end
    object RadioButton6: TRadioButton
      Left = 8
      Height = 19
      Top = 28
      Width = 38
      Caption = 'Top'
      OnChange = RadioButton6Change
      TabOrder = 1
    end
    object RadioButton7: TRadioButton
      Left = 8
      Height = 19
      Top = 50
      Width = 46
      Caption = 'Right'
      OnChange = RadioButton7Change
      TabOrder = 2
    end
    object RadioButton8: TRadioButton
      Left = 8
      Height = 19
      Top = 72
      Width = 58
      Caption = 'Bottom'
      OnChange = RadioButton8Change
      TabOrder = 3
    end
  end
  object Label1: TLabel
    Left = 144
    Height = 15
    Top = 144
    Width = 34
    Caption = 'Label1'
  end
  object Label2: TLabel
    Left = 240
    Height = 15
    Top = 144
    Width = 34
    Caption = 'Label2'
  end
end