示例#1
0
 def startMonitoring(self):
     # Force the window to be redrawn, as our display model might be out of date.
     # Do not catch exceptions caused by redraw, as when redrawing fails,
     # it is most likely that the window died, and we don't want to monitor in that case.
     self.redraw()
     displayModel.requestTextChangeNotifications(self, True)
     super(DisplayModelLiveText, self).startMonitoring()
示例#2
0
	def stopMonitoring(self):
		super(DisplayModelLiveText, self).stopMonitoring()
		displayModel.requestTextChangeNotifications(self, False)
示例#3
0
	def startMonitoring(self):
		# Force the window to be redrawn, as our display model might be out of date.
		self.redraw()
		displayModel.requestTextChangeNotifications(self, True)
		super(DisplayModelLiveText, self).startMonitoring()
示例#4
0
文件: __init__.py 项目: vgjh2005/nvda
	def stopMonitoring(self):
		super(DisplayModelLiveText, self).stopMonitoring()
		displayModel.requestTextChangeNotifications(self, False)
示例#5
0
文件: __init__.py 项目: vgjh2005/nvda
	def startMonitoring(self):
		# Force the window to be redrawn, as our display model might be out of date.
		self.redraw()
		displayModel.requestTextChangeNotifications(self, True)
		super(DisplayModelLiveText, self).startMonitoring()
示例#6
0
	def stopMonitoring(self):
		displayModel.requestTextChangeNotifications(self, False)
示例#7
0
	def startMonitoring(self):
		displayModel.requestTextChangeNotifications(self, True)
示例#8
0
	def startMonitoring(self):
		self.oldMessageCount = None
		self.update(initial=True)
		displayModel.requestTextChangeNotifications(self, True)
示例#9
0
	def initOverlayClass(self) :
		displayModel.requestTextChangeNotifications(self, True)