1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
#------------------------------------------------------------------------------
# Copyright (c) 2013-2025, Nucleic Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
# The full license is in the file LICENSE, distributed with this software.
#------------------------------------------------------------------------------
from atom.api import Bool, Typed, ForwardTyped
from enaml.core.declarative import d_, observe
from .abstract_button import AbstractButton, ProxyAbstractButton
from .menu import Menu
class ProxyPushButton(ProxyAbstractButton):
""" The abstract definition of a proxy PushButton object.
"""
#: A reference to the PushButton declaration.
declaration = ForwardTyped(lambda: PushButton)
def set_default(self, default):
raise NotImplementedError
class PushButton(AbstractButton):
""" A button control represented by a standard push button widget.
"""
#: Whether this button is the default action button in a dialog.
default = d_(Bool(False))
#: A reference to the ProxyPushButton object.
proxy = Typed(ProxyPushButton)
def menu(self):
""" Get the menu defined for the PushButton, if any.
"""
for child in reversed(self.children):
if isinstance(child, Menu):
return child
#--------------------------------------------------------------------------
# Observers
#--------------------------------------------------------------------------
@observe('default')
def _update_proxy(self, change):
""" Send the member state change to the proxy.
"""
# The superclass implementation is sufficient
super(PushButton, self)._update_proxy(change)
|