Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests/graphics/ticket2855.py
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpg@redhat.com>2007-08-20 11:24:28 (GMT)
committer Marco Pesenti Gritti <mpg@redhat.com>2007-08-20 11:24:28 (GMT)
commit1b2c9f9f28872500dc365b49330710c9e6fca270 (patch)
treeb070a2ce98a8cac0d88c7f22a1fae380972bffd7 /tests/graphics/ticket2855.py
parentdb4e502de5a0d37c54bc74d3d1d0d69a0d157e54 (diff)
Finish up test for 2855.
Diffstat (limited to 'tests/graphics/ticket2855.py')
-rw-r--r--tests/graphics/ticket2855.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/graphics/ticket2855.py b/tests/graphics/ticket2855.py
index a54add9..66d59bf 100644
--- a/tests/graphics/ticket2855.py
+++ b/tests/graphics/ticket2855.py
@@ -15,9 +15,39 @@
# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
# Boston, MA 02111-1307, USA.
+import gtk
+
+from sugar.graphics.palette import Palette
+from sugar.graphics.icon import Icon
+
import common
test = common.TestPalette()
+palette = Palette('Test radio and toggle')
+test.set_palette(palette)
+
+box = gtk.HBox()
+
+toggle = gtk.ToggleButton()
+
+icon = Icon('go-previous', icon_size=gtk.ICON_SIZE_LARGE_TOOLBAR)
+toggle.set_image(icon)
+
+box.pack_start(toggle, False)
+toggle.show()
+
+radio = gtk.RadioButton()
+
+icon = Icon('go-next', icon_size=gtk.ICON_SIZE_LARGE_TOOLBAR)
+radio.set_image(icon)
+
+radio.set_mode(False)
+box.pack_start(radio, False)
+radio.show()
+
+palette.set_content(box)
+box.show()
+
if __name__ == "__main__":
common.main(test)