2007-03-09 11:22:51 +01:00
|
|
|
# Copyright (C) 2007, Red Hat
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
|
|
|
import gobject
|
2007-03-09 13:12:52 +01:00
|
|
|
import hippo
|
2007-03-09 11:22:51 +01:00
|
|
|
|
|
|
|
from sugar.graphics.iconbutton import IconButton
|
|
|
|
from sugar.graphics import color
|
|
|
|
|
2007-03-09 13:12:52 +01:00
|
|
|
class ToggleIconButton(IconButton, hippo.CanvasItem):
|
2007-03-09 11:22:51 +01:00
|
|
|
__gtype_name__ = 'SugarToggleIconButton'
|
|
|
|
|
|
|
|
__gproperties__ = {
|
|
|
|
'toggled' : (bool, None, None, False,
|
|
|
|
gobject.PARAM_READWRITE)
|
|
|
|
}
|
|
|
|
|
|
|
|
def __init__(self, **kwargs):
|
|
|
|
self._toggled = False
|
|
|
|
|
|
|
|
IconButton.__init__(self, **kwargs)
|
|
|
|
|
|
|
|
def _get_bg_color(self):
|
|
|
|
if self._toggled:
|
|
|
|
col = color.TOGGLE_BUTTON_BACKGROUND
|
|
|
|
else:
|
|
|
|
col = color.BUTTON_BACKGROUND_NORMAL
|
|
|
|
|
|
|
|
return col.get_int()
|
|
|
|
|
|
|
|
def _set_toggled(self, toggled):
|
|
|
|
self._toggled = toggled
|
|
|
|
self.props.background_color = self._get_bg_color()
|
|
|
|
|
|
|
|
def do_set_property(self, pspec, value):
|
|
|
|
if pspec.name == 'toggled':
|
|
|
|
self._set_toggled(value)
|
|
|
|
else:
|
|
|
|
IconButton.do_set_property(self, pspec, value)
|
|
|
|
|
|
|
|
def do_get_property(self, pspec):
|
|
|
|
if pspec.name == 'toggled':
|
|
|
|
return self._toggled
|
|
|
|
|
|
|
|
return IconButton.do_get_property(self, pspec)
|
|
|
|
|
2007-03-09 13:12:52 +01:00
|
|
|
def do_button_press_event(self, event):
|
2007-03-09 11:22:51 +01:00
|
|
|
self.props.toggled = not self._toggled
|
|
|
|
return True
|
|
|
|
|
|
|
|
def prelight(self, enter):
|
|
|
|
if enter:
|
|
|
|
IconButton.prelight(self, enter)
|
|
|
|
else:
|
|
|
|
self.props.background_color = self._get_bg_color()
|