Still doing controllers, but missed this one

bzr-revno: 369
This commit is contained in:
Martin Thompson 2009-03-04 21:54:00 +00:00
parent f1f235efac
commit b662b16c6f

View File

@ -17,19 +17,24 @@ You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc., 59 Temple this program; if not, write to the Free Software Foundation, Inc., 59 Temple
Place, Suite 330, Boston, MA 02111-1307 USA Place, Suite 330, Boston, MA 02111-1307 USA
""" """
from PyQt4.QtCore import *
from PyQt4.QtGui import *
class ServiceItem(): class ServiceItem(QAbstractItemModel):
""" """
The service item is a base class for the plugins to use to interact with The service item is a base class for the plugins to use to interact with
the service manager, the slide controller, and the projection screen the service manager, the slide controller, and the projection screen
compositor. compositor.
""" """
def __init__(self): def __init__(self, hostplugin):
""" """
Init Method Init Method
""" """
pass self.plugin=hostplugin
self.shortname=hostplugin.name
self.items=[]
self.iconic_representation=None
def render(self): def render(self):
""" """
@ -63,3 +68,4 @@ class ServiceItem():
""" """
Takes data from the plugin media chooser Takes data from the plugin media chooser
""" """
pass