Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorManuel QuiƱones <manuq@laptop.org>2013-01-16 17:36:24 (GMT)
committer Ajay Garg <ajay@activitycentral.com>2013-01-18 08:50:25 (GMT)
commit4daf5764187fe704de249aea9767c70f535ddf85 (patch)
tree416e1042b8b81363ce601b4fde7c29ecdcb654b3 /tests
parent0c5de83f68eeb62370c11d819348e7630766511c (diff)
New ProgressIcon widget - SL #4384
A new icon widget useful to display progress. It is compatible with sugar3.graphics.icon.Icon . The progress is represented filling the icon. Signed-off-by: Manuel QuiƱones <manuq@laptop.org> Acked-by: Simon Schampijer <simon@laptop.org> Signed-off-by: Ajay Garg <ajay@activitycentral.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/graphics/progressicon.py66
1 files changed, 66 insertions, 0 deletions
diff --git a/tests/graphics/progressicon.py b/tests/graphics/progressicon.py
new file mode 100644
index 0000000..3dbd4b1
--- /dev/null
+++ b/tests/graphics/progressicon.py
@@ -0,0 +1,66 @@
+# Copyright (C) 2013, One Laptop Per Child
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+
+"""
+Test the sugar3.graphics.progressicon.ProgressIcon widget.
+"""
+
+
+from gi.repository import GObject
+
+from sugar3.graphics.progressicon import ProgressIcon
+from sugar3.graphics.icon import Icon, get_surface
+from sugar3.graphics import style
+
+import common
+
+test = common.Test()
+test.show()
+
+icon = ProgressIcon(
+ pixel_size=style.LARGE_ICON_SIZE,
+ icon_name='computer-xo',
+ stroke_color=style.COLOR_BUTTON_GREY.get_svg(),
+ fill_color=style.COLOR_WHITE.get_svg())
+test.pack_start(icon, True, True, 0)
+icon.show()
+
+icon2 = ProgressIcon(
+ pixel_size=style.LARGE_ICON_SIZE,
+ icon_name='computer-xo',
+ stroke_color=style.COLOR_BUTTON_GREY.get_svg(),
+ fill_color=style.COLOR_WHITE.get_svg(),
+ direction='horizontal')
+test.pack_start(icon2, True, True, 0)
+icon2.show()
+
+progress = 0
+
+
+def timeout_cb():
+ global progress
+ progress += 0.05
+ icon.update(progress)
+ icon2.update(progress)
+ if progress >= 1:
+ return False
+ return True
+
+GObject.timeout_add(50, timeout_cb)
+
+if __name__ == '__main__':
+ common.main(test)