add new skin stuff
[enigma2.git] / lib / python / Components / Sources / Source.py
1 class Source(object):
2
3         def execBegin(self):
4                 pass
5         
6         def execEnd(self):
7                 pass
8         
9         def onShow(self):
10                 pass
11
12         def onHide(self):
13                 pass
14         
15         def destroy(self):
16                 self.__dict__.clear()