summaryrefslogtreecommitdiff
path: root/ext/gtk/test9.rb
blob: 014971803247ebba9a5cc195ad859312e7b807ec (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
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
require 'gtk'

def create_bbox_window(horizontal, title, pos, spacing, cw, ch, layout)
  window = Gtk::Window::new(Gtk::WINDOW_TOPLEVEL)
  window.set_title(title)
  window.signal_connect("delete_event") do
    window.hide
    window.destroy
  end
  if horizontal
    window.set_usize(550, 60)
    window.set_uposition(150, pos)
  else
    window.set_usize(150, 400)
    window.set_uposition(pos, 200)
  end
  box1 = Gtk::VBox::new(FALSE, 0)
  window.add box1
  box1.show
  if horizontal
    bbox = Gtk::HButtonBox::new()
  else
    bbox = Gtk::VButtonBox::new()
  end
  bbox.set_layout layout
  bbox.set_spacing spacing
  bbox.set_child_size cw, ch
  bbox.show
  box1.border_width 25
  box1.pack_start(bbox, TRUE, TRUE, 0)
  button = Gtk::Button::new("OK")
  bbox.add button
  button.signal_connect("clicked") do
    window.hide
    window.destroy
  end
  button.show

  button = Gtk::Button::new("Cancel")
  bbox.add button
  button.signal_connect("clicked") do
    window.hide
    window.destroy
  end
  button.show

  button = Gtk::Button::new("Help")
  bbox.add button
  button.show

  window.show
end

def test_hbbox
  create_bbox_window(TRUE, "Spread", 50, 40, 85, 25, Gtk::BUTTONBOX_SPREAD);
  create_bbox_window(TRUE, "Edge", 250, 40, 85, 28, Gtk::BUTTONBOX_EDGE);
  create_bbox_window(TRUE, "Start", 450, 40, 85, 25, Gtk::BUTTONBOX_START);
  create_bbox_window(TRUE, "End", 650, 15, 30, 25, Gtk::BUTTONBOX_END);
end

def test_vbbox
  create_bbox_window(FALSE, "Spread", 50, 40, 85, 25, Gtk::BUTTONBOX_SPREAD);
  create_bbox_window(FALSE, "Edge", 250, 40, 85, 28, Gtk::BUTTONBOX_EDGE);
  create_bbox_window(FALSE, "Start", 450, 40, 85, 25, Gtk::BUTTONBOX_START);
  create_bbox_window(FALSE, "End", 650, 15, 30, 25, Gtk::BUTTONBOX_END);
end

window = Gtk::Window::new(Gtk::WINDOW_TOPLEVEL)
window.signal_connect("delete_event") do
  window.destroy
  exit
end
window.set_title("button box")
window.border_width(20)

bbox = Gtk::HButtonBox::new()
window.add(bbox)
bbox.show

button = Gtk::Button::new("Horizontal")
def button.clicked(*args)
  test_hbbox
end
bbox.add button
button.show

button = Gtk::Button::new("Vertical")
def button.clicked(*args)
  test_vbbox
end
bbox.add button
button.show
window.show

Gtk::main()