From cb141505fbb0278ecf6fab170d4691f93e59f6e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Qui=C3=B1ones?= Date: Mon, 27 Aug 2012 14:41:48 -0300 Subject: [PATCH] Add testcase for Gtk buttons MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Manuel QuiƱones Acked-by: Simon Schampijer --- tests/graphics/buttons.py | 57 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 57 insertions(+) create mode 100644 tests/graphics/buttons.py diff --git a/tests/graphics/buttons.py b/tests/graphics/buttons.py new file mode 100644 index 00000000..6e6969a2 --- /dev/null +++ b/tests/graphics/buttons.py @@ -0,0 +1,57 @@ +from gi.repository import Gtk + +import common + + +test = common.Test() +test.show() + +vbox = Gtk.VBox() +test.pack_start(vbox, True, True, 0) +vbox.show() + +# test Gtk.SpinButton: + +adj = Gtk.Adjustment(0, 0, 10, 1, 32, 0) +spin = Gtk.SpinButton() +spin.set_adjustment(adj) +vbox.pack_start(spin, False, False, 1) +spin.show() + +# test Gtk.RadioButton: + +radio_1 = Gtk.RadioButton.new_with_label_from_widget(None, 'Radio 1') +vbox.pack_start(radio_1, False, False, 1) +radio_1.show() +radio_2 = Gtk.RadioButton.new_with_label_from_widget(radio_1, 'Radio 2') +vbox.pack_start(radio_2, False, False, 1) +radio_2.show() +radio_3 = Gtk.RadioButton.new_with_label_from_widget(radio_1, 'Radio 3') +vbox.pack_start(radio_3, False, False, 1) +radio_3.show() + +# test Gtk.CheckButton: + +check_1 = Gtk.CheckButton('Check 1') +vbox.pack_start(check_1, False, False, 1) +check_1.show() + +check_2 = Gtk.CheckButton('Check 2') +vbox.pack_start(check_2, False, False, 1) +check_2.show() + +# test Gtk.Button: + +button = Gtk.Button('Button') +vbox.pack_start(button, False, False, 1) +button.show() + +# test Gtk.ToggleButton: + +toggle_button = Gtk.ToggleButton('ToggleButton') +vbox.pack_start(toggle_button, False, False, 1) +toggle_button.show() + + +if __name__ == '__main__': + common.main(test)