summaryrefslogtreecommitdiff
path: root/examples/gui/widgettest/groupboxform.frm
blob: 85ddff8f36bb352051889478edd6678f77827bdc (plain)
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
object GroupBoxForm: TGroupBoxForm
  BorderWidth = 8
  Text = 'Group box test'
  object HorzBox: TBoxLayout
    VertAlign = vertTop
    object GroupBox1: TGroupBox
      Text = 'Group box #1'
      object VertBox1: TBoxLayout
        Orientation = Vertical
        object GrayCheckBox: TCheckBox
          Text = 'Gray other group box'
	  OnClick = GrayCheckBoxClick
        end
        object Button: TButton
	  Enabled = False
          Text = 'Reset radio buttons'
	  OnClick = ButtonClick
	end
      end
    end
    object GroupBox2: TGroupBox
      Text = 'Group box #2'
      object VertBox2: TBoxLayout
        Orientation = Vertical
	object Radio1: TRadioButton
	  Checked = True
	  Text = 'Option 1'
	  OnClick = RadioButtonClick
	end
	object Radio2: TRadioButton
	  Text = 'Option 2'
	  OnClick = RadioButtonClick
	end
	object Radio3: TRadioButton
	  Text = 'Option 3'
	  OnClick = RadioButtonClick
	end
	object Radio4: TRadioButton
	  Text = 'Option 4'
	  OnClick = RadioButtonClick
	end
	object Radio5: TRadioButton
	  Text = 'Option 5'
	  OnClick = RadioButtonClick
	end
      end
    end
  end
end