Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
enable / savage / trait_defs / ui / svg_button.py
Size: Mime:
# (C) Copyright 2005-2022 Enthought, Inc., Austin, TX
# All rights reserved.
#
# This software is provided without warranty under the terms of the BSD
# license included in LICENSE.txt and may be redistributed only under
# the conditions described in the aforementioned license. The license
# is also available online at http://www.enthought.com/licenses/BSD.txt
#
# Thanks for using Enthought open source!

# ETS imports
from traits.api import Event

# Local imports
from .svg_button_editor import SVGButtonEditor


class SVGButton(Event):
    """ Defines a trait whose UI editor is a button.
    """

    def __init__(self, label="", filename=None, tooltip="", toggle=False,
                 toggle_state=False, toggle_filename=None, toggle_label="",
                 toggle_tooltip="", width=32, height=32,
                 orientation="vertical", width_padding=4,
                 height_padding=1, view=None, **metadata):
        """ Returns a trait event whose editor is a button.

            Parameters
            ----------
            label : string
                The label for the button
            filename : string
                Path to SVG file to be displayed on the button
            orientation : one of: 'horizontal', 'vertical'
                The orientation of the label relative to the image
            width_padding : integer between 0 and 31
                Extra padding (in pixels) added to the left and right sides of
                the button
            height_padding : integer between 0 and 31
                Extra padding (in pixels) added to the top and bottom of the
                button
            tooltip : string
                What to display when the mouse hovers over the button. An
                empty string implies no tooltip
            toggle : boolean
                Whether the button is a toggle with 2 states, or a regular
                button with 1 state
            toggle_filename : string
                Path to SVG file to be displayed on the button
            toggle_label:
                Label to display when button is in toggled state
            toggle_tooltip:
                Tooltip to display when button is in toggled state

            Default Value
            -------------
            No default value because events do not store values.
        """

        self.editor = SVGButtonEditor(
            label=label,
            filename=filename,
            tooltip=tooltip,
            toggle=toggle,
            toggle_state=toggle_state,
            toggle_filename=toggle_filename,
            toggle_tooltip=toggle_tooltip,
            toggle_label=toggle_label,
            orientation=orientation,
            width_padding=width_padding,
            height_padding=height_padding,
            width=width,
            height=height,
            view=view,
        )

        super().__init__(**metadata)