예제 #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)
예제 #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)
예제 #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)
예제 #4
0
	def __init__(self):
		GUIComponent.__init__(self)
		VariableValue.__init__(self)
		self.__start = 0
		self.__end = 100
예제 #5
0
파일: Gauge.py 프로젝트: kingvuplus/Bh-E2
 def __init__(self):
     VariableValue.__init__(self)
     GUIComponent.__init__(self)
예제 #6
0
파일: Slider.py 프로젝트: linuxbox10/e2-vix
    def __init__(self, min, max):
        VariableValue.__init__(self)
        GUIComponent.__init__(self)

        self.min = min
        self.max = max
예제 #7
0
 def __init__(self):
     VariableValue.__init__(self)
     GUIComponent.__init__(self)
예제 #8
0
 def __init__(self):
     GUIComponent.__init__(self)
     VariableValue.__init__(self)
     self.__start = 0
     self.__end = 100
예제 #9
0
파일: Slider.py 프로젝트: sodo13/EG-gui
 def __init__(self, min, max):
     VariableValue.__init__(self)
     GUIComponent.__init__(self)
     self.min = min
     self.max = max