2007-08-19 00:24:51 +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.
|
|
|
|
|
2007-08-20 14:08:28 +02:00
|
|
|
"""
|
|
|
|
Test the style of toggle and radio buttons inside a palette. The buttons
|
|
|
|
contains only an icon and should be rendered similarly to the toolbar
|
|
|
|
controls. Ticket #2855.
|
|
|
|
"""
|
|
|
|
|
2011-11-15 19:29:07 +01:00
|
|
|
from gi.repository import Gtk
|
2007-08-20 13:24:28 +02:00
|
|
|
|
2011-10-29 10:44:18 +02:00
|
|
|
from sugar3.graphics.palette import Palette
|
|
|
|
from sugar3.graphics.icon import Icon
|
2017-01-11 18:23:08 +01:00
|
|
|
from sugar3.graphics import style
|
2007-08-20 13:24:28 +02:00
|
|
|
|
2007-08-20 12:34:29 +02:00
|
|
|
import common
|
2007-08-19 00:24:51 +02:00
|
|
|
|
2007-08-20 12:34:29 +02:00
|
|
|
test = common.TestPalette()
|
2007-08-19 00:24:51 +02:00
|
|
|
|
2007-08-20 13:24:28 +02:00
|
|
|
palette = Palette('Test radio and toggle')
|
|
|
|
test.set_palette(palette)
|
|
|
|
|
2017-01-11 18:23:08 +01:00
|
|
|
box = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL)
|
2007-08-20 13:24:28 +02:00
|
|
|
|
2011-11-15 19:29:07 +01:00
|
|
|
toggle = Gtk.ToggleButton()
|
2007-08-20 13:24:28 +02:00
|
|
|
|
2017-01-11 18:23:08 +01:00
|
|
|
icon = Icon(icon_name='go-previous', pixel_size=style.STANDARD_ICON_SIZE)
|
2007-08-20 13:24:28 +02:00
|
|
|
toggle.set_image(icon)
|
|
|
|
|
2017-01-11 18:23:08 +01:00
|
|
|
box.pack_start(toggle, False, False, 0)
|
2007-08-20 13:24:28 +02:00
|
|
|
toggle.show()
|
|
|
|
|
2011-11-15 19:29:07 +01:00
|
|
|
radio = Gtk.RadioButton()
|
2007-08-20 13:24:28 +02:00
|
|
|
|
2017-01-11 18:23:08 +01:00
|
|
|
icon = Icon(icon_name='go-next', pixel_size=style.STANDARD_ICON_SIZE)
|
2007-08-20 13:24:28 +02:00
|
|
|
radio.set_image(icon)
|
|
|
|
|
|
|
|
radio.set_mode(False)
|
2017-01-11 18:23:08 +01:00
|
|
|
box.pack_start(radio, False, False, 0)
|
2007-08-20 13:24:28 +02:00
|
|
|
radio.show()
|
|
|
|
|
|
|
|
palette.set_content(box)
|
|
|
|
box.show()
|
|
|
|
|
2010-10-15 21:14:59 +02:00
|
|
|
if __name__ == '__main__':
|
2007-08-20 12:34:29 +02:00
|
|
|
common.main(test)
|