コード例 #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
ファイル: __init__.py プロジェクト: josephsl/nvda4nvda
	def stopMonitoring(self):
		super(DisplayModelLiveText, self).stopMonitoring()
		displayModel.requestTextChangeNotifications(self, False)
コード例 #3
0
ファイル: __init__.py プロジェクト: josephsl/nvda4nvda
	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
ファイル: 10dita.py プロジェクト: albzan/10dita-nvda
	def initOverlayClass(self) :
		displayModel.requestTextChangeNotifications(self, True)