Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/radio_btn_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'radio_btn_test.py')
-rw-r--r--radio_btn_test.py26
1 files changed, 26 insertions, 0 deletions
diff --git a/radio_btn_test.py b/radio_btn_test.py
new file mode 100644
index 0000000..b966054
--- /dev/null
+++ b/radio_btn_test.py
@@ -0,0 +1,26 @@
+from gi.repository import Gtk
+
+class TestRadioButton(Gtk.Window):
+
+ def __init__(self):
+ super(TestRadioButton, self).__init__()
+ self.set_size_request(400, 400)
+ self.connect("destroy", Gtk.main_quit)
+ vbox = Gtk.VBox()
+ r0 = Gtk.RadioButton()
+ r1 = Gtk.RadioButton.new_with_label_from_widget(r0, "Test 1!")
+ r1.set_active(False)
+ vbox.pack_start(r1, True, False, 10)
+ r2 = Gtk.RadioButton.new_with_label_from_widget(r0, "Test 2!")
+ r1.set_active(False)
+ vbox.pack_start(r2, True, False, 10)
+ r3 = Gtk.RadioButton.new_with_label_from_widget(r0, "Test 3!")
+ r3.set_active(False)
+ vbox.pack_start(r3, True, False, 10)
+
+ self.add(vbox)
+ self.show_all()
+
+
+TestRadioButton()
+Gtk.main()