2007-08-25 18:26:59 +02:00
|
|
|
# Copyright (C) 2007, Red Hat, Inc.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
"""
|
2011-10-29 10:44:18 +02:00
|
|
|
Test the sugar3.graphics.icon.Icon widget.
|
2007-08-25 18:26:59 +02:00
|
|
|
"""
|
|
|
|
|
2011-11-15 19:29:07 +01:00
|
|
|
from gi.repository import Gtk
|
2007-08-25 18:26:59 +02:00
|
|
|
|
2011-10-29 10:44:18 +02:00
|
|
|
from sugar3.graphics.icon import Icon
|
|
|
|
from sugar3.graphics.xocolor import XoColor
|
2007-08-25 18:26:59 +02:00
|
|
|
|
|
|
|
import common
|
|
|
|
|
|
|
|
test = common.Test()
|
|
|
|
|
2011-11-15 19:29:07 +01:00
|
|
|
hbox = Gtk.HBox()
|
|
|
|
test.pack_start(hbox, True, True, 0)
|
|
|
|
sensitive_box = Gtk.VBox()
|
|
|
|
insensitive_box = Gtk.VBox()
|
2007-12-14 20:44:22 +01:00
|
|
|
|
2011-11-15 19:29:07 +01:00
|
|
|
hbox.pack_start(sensitive_box, True, True, 0)
|
|
|
|
hbox.pack_start(insensitive_box, True, True, 0)
|
2007-12-14 20:44:22 +01:00
|
|
|
hbox.show_all()
|
|
|
|
|
|
|
|
|
|
|
|
def create_icon_widgets(box, sensitive=True):
|
|
|
|
icon = Icon(icon_name='go-previous')
|
2011-11-15 19:29:07 +01:00
|
|
|
icon.props.icon_size = Gtk.IconSize.LARGE_TOOLBAR
|
|
|
|
box.pack_start(icon, True, True, 0)
|
2007-12-14 20:44:22 +01:00
|
|
|
icon.set_sensitive(sensitive)
|
|
|
|
icon.show()
|
|
|
|
|
2010-10-15 19:45:11 +02:00
|
|
|
icon = Icon(icon_name='computer-xo',
|
2011-11-15 19:29:07 +01:00
|
|
|
icon_size=Gtk.IconSize.LARGE_TOOLBAR,
|
2007-12-14 20:44:22 +01:00
|
|
|
xo_color=XoColor())
|
2011-11-15 19:29:07 +01:00
|
|
|
box.pack_start(icon, True, True, 0)
|
2007-12-14 20:44:22 +01:00
|
|
|
icon.set_sensitive(sensitive)
|
|
|
|
icon.show()
|
|
|
|
|
|
|
|
icon = Icon(icon_name='battery-000',
|
2011-11-15 19:29:07 +01:00
|
|
|
icon_size=Gtk.IconSize.LARGE_TOOLBAR,
|
2007-12-14 20:44:22 +01:00
|
|
|
badge_name='emblem-busy')
|
2011-11-15 19:29:07 +01:00
|
|
|
box.pack_start(icon, True, True, 0)
|
2007-12-14 20:44:22 +01:00
|
|
|
icon.set_sensitive(sensitive)
|
|
|
|
icon.show()
|
|
|
|
|
|
|
|
icon = Icon(icon_name='gtk-new',
|
2011-11-15 19:29:07 +01:00
|
|
|
icon_size=Gtk.IconSize.LARGE_TOOLBAR,
|
2007-12-14 20:44:22 +01:00
|
|
|
badge_name='gtk-cancel')
|
2011-11-15 19:29:07 +01:00
|
|
|
box.pack_start(icon, True, True, 0)
|
2007-12-14 20:44:22 +01:00
|
|
|
icon.set_sensitive(sensitive)
|
|
|
|
icon.show()
|
|
|
|
|
|
|
|
|
|
|
|
create_icon_widgets(sensitive_box, True)
|
|
|
|
create_icon_widgets(insensitive_box, False)
|
2007-08-26 00:26:11 +02:00
|
|
|
|
2007-08-25 18:26:59 +02:00
|
|
|
test.show()
|
|
|
|
|
2007-12-14 20:44:22 +01:00
|
|
|
# This can be used to test for leaks by setting the LRU cache size
|
|
|
|
# in icon.py to 1.
|
|
|
|
#def idle_cb():
|
|
|
|
# import gc
|
|
|
|
# gc.collect()
|
|
|
|
# test.queue_draw()
|
|
|
|
# return True
|
|
|
|
#
|
2011-11-15 19:29:07 +01:00
|
|
|
#from gi.repository import GObject
|
|
|
|
#GObject.idle_add(idle_cb)
|
2007-12-14 20:44:22 +01:00
|
|
|
|
2010-10-15 21:14:59 +02:00
|
|
|
if __name__ == '__main__':
|
2007-08-25 18:26:59 +02:00
|
|
|
common.main(test)
|