Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
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
parentdb4e502de5a0d37c54bc74d3d1d0d69a0d157e54 (diff)
Finish up test for 2855.
-rwxr-xr-xsugar-emulator1
-rw-r--r--tests/graphics/common.py9
-rw-r--r--tests/graphics/ticket2855.py30
3 files changed, 36 insertions, 4 deletions
diff --git a/sugar-emulator b/sugar-emulator
index cba0d52..3a96a8a 100755
--- a/sugar-emulator
+++ b/sugar-emulator
@@ -148,7 +148,6 @@ def main():
os.environ['SUGAR_XO_STYLE'] = 'no'
os.environ['GTK2_RC_FILES'] = env.get_data_path(gtkrc_filename)
- print os.environ['GTK2_RC_FILES']
command = ['dbus-launch', 'dbus-launch', '--exit-with-session']
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)