Beispiel #1
0
    def __init__(self, app, data, storage, payload, instclass):
        TUIObject.__init__(self, app, data)
        common.Hub.__init__(self, data, storage, payload, instclass)

        self._spokes = {}  # holds spokes referenced by their class name
        self._keys = {}  # holds spokes referenced by their user input key
        self._spoke_count = 0
Beispiel #2
0
    def __init__(self, app, data, storage, payload, instclass):
        if self.__class__ is TUISpoke:
            raise TypeError("TUISpoke is an abstract class")

        TUIObject.__init__(self, app, data)
        tui.Widget.__init__(self)
        Spoke.__init__(self, storage, payload, instclass)
Beispiel #3
0
    def __init__(self, app, data, storage, payload, instclass):
        if self.__class__ is TUISpoke:
            raise TypeError("TUISpoke is an abstract class")

        TUIObject.__init__(self, app, data)
        tui.Widget.__init__(self)
        Spoke.__init__(self, storage, payload, instclass)
Beispiel #4
0
    def __init__(self, app, data, storage, payload, instclass):
        TUIObject.__init__(self, app, data)
        common.Hub.__init__(self, storage, payload, instclass)

        self._spokes = {}     # holds spokes referenced by their class name
        self._keys = {}       # holds spokes referenced by their user input key
        self._spoke_count = 0
Beispiel #5
0
    def __init__(self, data, storage, payload):
        if self.__class__ is TUISpoke:
            raise TypeError("TUISpoke is an abstract class")

        TUIObject.__init__(self, data)
        Widget.__init__(self)
        Spoke.__init__(self, storage, payload)

        self.input_required = True
        self.title = N_("Default spoke title")
Beispiel #6
0
    def __init__(self, data, storage, payload, instclass):
        if self.__class__ is TUISpoke:
            raise TypeError("TUISpoke is an abstract class")

        TUIObject.__init__(self, data)
        Widget.__init__(self)
        Spoke.__init__(self, storage, payload, instclass)

        self.input_required = True
        self.title = N_("Default spoke title")
Beispiel #7
0
    def __init__(self, data, storage, payload):
        TUIObject.__init__(self, data)
        common.Hub.__init__(self, storage, payload)
        self.title = N_("Default HUB title")
        self._container = None

        self._spokes_map = []  # hold all the spokes in the right ordering
        self._spokes = {}  # holds spokes referenced by their class name
        self._spoke_count = 0

        # we want user input
        self.input_required = True
Beispiel #8
0
    def __init__(self, data, storage, payload, instclass):
        TUIObject.__init__(self, data)
        common.Hub.__init__(self, storage, payload, instclass)
        self.title = N_("Default HUB title")
        self._container = None

        self._spokes_map = []  # hold all the spokes in the right ordering
        self._spokes = {}      # holds spokes referenced by their class name
        self._spoke_count = 0

        # we want user input
        self.input_required = True
 def __init__(self, app, data, storage, payload, instclass):
     TUIObject.__init__(self, app, data)
     tui.Widget.__init__(self)
     Spoke.__init__(self, data, storage, payload, instclass)
 def __init__(self, app, data, storage, payload, instclass):
     TUIObject.__init__(self, app, data)
     tui.Widget.__init__(self)
     Spoke.__init__(self, data, storage, payload, instclass)