interface.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 
3 from python_qt_binding.QtCore import QObject
4 
5 class Interface(QObject):
6 
7  def __init__(self, frame_editor):
8  super(QObject, self).__init__()
9 
10  def update(self, editor, level, elements):
11  pass
12 
13  def broadcast(self, editor):
14  pass
15 
16 # eof
frame_editor.interface.Interface.update
def update(self, editor, level, elements)
Definition: interface.py:10
frame_editor.interface.Interface.__init__
def __init__(self, frame_editor)
Definition: interface.py:7
frame_editor.interface.Interface.broadcast
def broadcast(self, editor)
Definition: interface.py:13
frame_editor.interface.Interface
Definition: interface.py:5


frame_editor
Author(s): ipa-lth , ipa-frn
autogenerated on Thu May 15 2025 02:17:25