How to use the scc.gui.ae.AEComponent.__init__ function in scc

To help you get started, we’ve selected a few scc examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github kozec / sc-controller / python / scc / gui / ae / axis_action.py View on Github external
def __init__(self, app, editor):
		AEComponent.__init__(self, app, editor)
		TimerManager.__init__(self)
		self._recursing = False
		self.relative_area = False
		self.osd_area_instance = None
		self.on_wayland = False
		self.circular_axis = MouseAction(Rels.REL_WHEEL)
		self.circular_buttons = [ None, None ]
		self.button = None
		self.parser = GuiActionParser()
github kozec / sc-controller / scc / gui / ae / trigger.py View on Github external
def __init__(self, app, editor):
		AEComponent.__init__(self, app, editor)
		BindingEditor.__init__(self, app)
		self._recursing = False
		self.half = NoAction()
		self.full = NoAction()
		self.analog = NoAction()
github kozec / sc-controller / scc / gui / ae / recent_list.py View on Github external
def __init__(self, app, editor):
		AEComponent.__init__(self, app, editor)
github kozec / sc-controller / python / scc / gui / ae / osk_action.py View on Github external
def __init__(self, app, editor):
		AEComponent.__init__(self, app, editor)
		self._recursing = False
github kozec / sc-controller / scc / gui / ae / axis.py View on Github external
def __init__(self, app, editor):
		AEComponent.__init__(self, app, editor)
		Chooser.__init__(self, app)
		self.full = None
github kozec / sc-controller / python / scc / gui / ae / menu_only.py View on Github external
def __init__(self, app, editor):
		AEComponent.__init__(self, app, editor)
		MenuActionCofC.__init__(self)
		self._userdata_load_started = False
		self._recursing = False
github kozec / sc-controller / scc / gui / ae / menu_only.py View on Github external
def __init__(self, app, editor):
		AEComponent.__init__(self, app, editor)
		MenuActionCofC.__init__(self)
		self._userdata_load_started = False
		self._recursing = False
github kozec / sc-controller / scc / gui / ae / gyro.py View on Github external
def __init__(self, app, editor):
		AEComponent.__init__(self, app, editor)
		self._recursing = False
		self.axes = [ None, None, None ]
github kozec / sc-controller / python / scc / gui / ae / trigger.py View on Github external
def __init__(self, app, editor):
		AEComponent.__init__(self, app, editor)
		BindingEditor.__init__(self, app)
		self._recursing = False
		self.half = NoAction()
		self.full = NoAction()
		self.analog = NoAction()