本文整理匯總了Python中kiwi.ui.proxywidget.ProxyWidgetMixin類的典型用法代碼示例。如果您正苦於以下問題:Python ProxyWidgetMixin類的具體用法?Python ProxyWidgetMixin怎麽用?Python ProxyWidgetMixin使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
在下文中一共展示了ProxyWidgetMixin類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: __init__
def __init__(self):
gtk.ComboBox.__init__(self)
ProxyWidgetMixin.__init__(self)
PropertyObject.__init__(self)
self._helper = _EasyComboBoxHelper(self)
self.connect('changed', self._on__changed)
renderer = gtk.CellRendererText()
self.pack_start(renderer)
self.add_attribute(renderer, 'text', ComboColumn.LABEL)
示例2: __init__
def __init__(self, action=gtk.FILE_CHOOSER_ACTION_OPEN, backend=None):
"""
Create a new ProxyFileChooserWidget object.
:param action:
:param backend:
"""
ProxyWidgetMixin.__init__(self)
self.props.data_type = str
gtk.FileChooserWidget.__init__(self, action=action, backend=backend)
示例3: __init__
def __init__(self, action=Gtk.FileChooserAction.OPEN, backend=None):
"""
Create a new ProxyFileChooserWidget object.
:param action:
:param backend:
"""
ProxyWidgetMixin.__init__(self)
self.props.data_type = str
Gtk.FileChooserWidget.__init__(self, action=action, backend=backend)
示例4: __init__
def __init__(self):
self._color_attribute = None
gtk.ComboBox.__init__(self)
ProxyWidgetMixin.__init__(self)
self._helper = _EasyComboBoxHelper(self)
self.connect('changed', self._on__changed)
self._text_renderer = gtk.CellRendererText()
self.pack_start(self._text_renderer)
self.add_attribute(self._text_renderer, 'text', ComboColumn.LABEL)
示例5: _set_data_type
def _set_data_type(self, data_type):
if not ProxyWidgetMixin.set_data_type(self, data_type):
return
conv = converter.get_converter(data_type)
if conv.align == Alignment.RIGHT:
self.set_property('xalign', 1.0)
示例6: __init__
def __init__(self, label='', data_type=None):
"""
Create a new ProxyLabel object.
@param label: initial text
@param data_type: data type of label
"""
gtk.Label.__init__(self, label)
ProxyWidgetMixin.__init__(self)
self.props.data_type = data_type
self.set_use_markup(True)
self._attr_dic = { "style": None,
"weight": None,
"size": None,
"underline": None }
self._size_list = ('xx-small', 'x-small',
'small', 'medium',
'large', 'x-large',
'xx-large')
self.connect("notify::label", self._on_label_changed)
self._block_notify_label = False
示例7: _set_data_type
def _set_data_type(self, data_type):
if not ProxyWidgetMixin.set_data_type(self, data_type):
return
# Numbers and dates should be right aligned
conv = converter.get_converter(data_type)
if conv.align == Alignment.RIGHT:
self.set_property('xalign', 1.0)
# Apply a mask for the data types, some types like
# dates has a default mask
try:
self.set_mask_for_data_type(data_type)
except MaskError:
pass
示例8: __init__
def __init__(self, color=gtk.gdk.Color(0, 0, 0)):
ProxyWidgetMixin.__init__(self)
gtk.ColorButton.__init__(self, color)
示例9: __init__
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
示例10: __init__
def __init__(self):
ProxyWidgetMixin.__init__(self)
PropertyObject.__init__(self, data_type=float)
gtk.VScale.__init__(self)
示例11: __init__
def __init__(self, color=gtk.gdk.Color(0, 0, 0)):
ProxyWidgetMixin.__init__(self)
PropertyObject.__init__(self, data_type=str)
gtk.ColorButton.__init__(self, color)
示例12: _set_data_type
def _set_data_type(self, data_type):
if not ProxyWidgetMixin.set_data_type(self, data_type):
return
示例13: __init__
def __init__(self, label=None, use_underline=True):
ProxyWidgetMixin.__init__(self)
PropertyObject.__init__(self, data_type=bool)
gtk.CheckButton.__init__(self, label=label,
use_underline=use_underline)
示例14: __init__
def __init__(self, fontname=None):
ProxyWidgetMixin.__init__(self)
gtk.FontButton.__init__(self, fontname)
self.props.data_type = str
示例15: __init__
def __init__(self, **kwargs):
ProxyWidgetMixin.__init__(self)
MultiCombo.__init__(self, **kwargs)
self.connect('item-added', self._on_combo__item_added)
self.connect('item-removed', self._on_combo__item_removed)