Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/graphics/common.py9
-rw-r--r--tests/graphics/ticket2855.py30
2 files changed, 36 insertions, 3 deletions
diff --git a/tests/graphics/common.py b/tests/graphics/common.py
index d6ca869..2f00099 100644
--- a/tests/graphics/common.py
+++ b/tests/graphics/common.py
@@ -29,13 +29,16 @@ class TestPalette(Test):
toolbar = gtk.Toolbar()
- button = ToolButton('stop')
- toolbar.insert(button, -1)
- button.show()
+ self._invoker = ToolButton('go-previous')
+ toolbar.insert(self._invoker, -1)
+ self._invoker.show()
self.pack_start(toolbar, False)
toolbar.show()
+ def set_palette(self, palette):
+ self._invoker.set_palette(palette)
+
class TestRunner(object):
def run(self, test):
window = gtk.Window()
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)