#
# Kiwi: a Framework and Enhanced Widgets for Python
#
# Copyright (C) 2003-2005 Async Open Source
#
# 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.1 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
#
# Author(s): Christian Reis <kiko@async.com.br>
# Gustavo Rahal <gustavo@async.com.br>
# Johan Dahlin <jdahlin@async.com.br>
# Lorenzo Gil Sanchez <lgs@sicem.biz>
#
"""GtkCheckButton support for the Kiwi Framework"""
import gobject
import gtk
from kiwi import ValueUnset
from kiwi.python import deprecationwarn
from kiwi.ui.proxywidget import ProxyWidgetMixin
from kiwi.utils import gsignal, type_register
[docs]class ProxyCheckButton(gtk.CheckButton, ProxyWidgetMixin):
__gtype_name__ = 'ProxyCheckButton'
data_type = gobject.property(
getter=ProxyWidgetMixin.get_data_type,
setter=ProxyWidgetMixin.set_data_type,
type=str, blurb='Data Type')
model_attribute = gobject.property(type=str, blurb='Model attribute')
gsignal('content-changed')
gsignal('validation-changed', bool)
gsignal('validate', object, retval=object)
# changed allowed data types because checkbuttons can only
# accept bool values
allowed_data_types = bool,
def __init__(self, label=None, use_underline=True):
gtk.CheckButton.__init__(self, label=label,
use_underline=use_underline)
ProxyWidgetMixin.__init__(self)
self.props.data_type = bool
gsignal('toggled', 'override')
[docs] def update(self, data):
if data is None or data is ValueUnset:
self.set_active(False);
return
# No conversion to string needed, we only accept bool
self.set_active(data)
[docs]class CheckButton(ProxyCheckButton):
def __init__(self):
deprecationwarn(
'CheckButton is deprecated, use ProxyCheckButton instead',
stacklevel=3)
ProxyCheckButton.__init__(self)
type_register(CheckButton)