Esempio n. 1
0
 def __init__(self, navcore, eventmap):
     GUIComponent.__init__(self)
     VariableValue.__init__(self)
     PerServiceBase.__init__(self, navcore, eventmap)
     self.eventmap = eventmap
     self.navcore = navcore
     self.navcore.event.append(self.event)
     self.event(iPlayableService.evEnd)
Esempio n. 2
0
    def __init__(self, navcore, eventmap):
        GUIComponent.__init__(self)
        VariableValue.__init__(self)
        PerServiceBase.__init__(self, navcore, eventmap)
        self.eventmap = eventmap
        self.navcore = navcore
        self.navcore.event.append(self.event)

        # start with stopped state, so simulate that
        self.event(iPlayableService.evEnd)
Esempio n. 3
0
	def __init__(self, navcore, eventmap):
		GUIComponent.__init__(self)
		VariableValue.__init__(self)
		PerServiceBase.__init__(self, navcore, eventmap)
		self.eventmap = eventmap
		self.navcore = navcore
		self.navcore.event.append(self.event)

		# start with stopped state, so simulate that
		self.event(iPlayableService.evEnd)
Esempio n. 4
0
	def __init__(self):
		GUIComponent.__init__(self)
		VariableValue.__init__(self)
		self.__start = 0
		self.__end = 100
Esempio n. 5
0
 def __init__(self):
     VariableValue.__init__(self)
     GUIComponent.__init__(self)
Esempio n. 6
0
    def __init__(self, min, max):
        VariableValue.__init__(self)
        GUIComponent.__init__(self)

        self.min = min
        self.max = max
Esempio n. 7
0
 def __init__(self):
     VariableValue.__init__(self)
     GUIComponent.__init__(self)
Esempio n. 8
0
 def __init__(self):
     GUIComponent.__init__(self)
     VariableValue.__init__(self)
     self.__start = 0
     self.__end = 100
Esempio n. 9
0
 def __init__(self, min, max):
     VariableValue.__init__(self)
     GUIComponent.__init__(self)
     self.min = min
     self.max = max