コード例 #1
0
ファイル: mainwindow.py プロジェクト: hsorby/mapclient
 def _show_annotation_tool(self):
     from mapclient.tools.annotation.annotationdialog import AnnotationDialog
     location = self._model.workflowManager().location()
     dlg = AnnotationDialog(location, DEFAULT_WORKFLOW_ANNOTATION_FILENAME,
                            self)
     dlg.setModal(True)
     dlg.exec_()
コード例 #2
0
 def annotateMe(self):
     dlg = AnnotationDialog(self._getStepLocation())
     dlg.setModal(True)
     dlg.exec_()
 def annotateMe(self):
     dlg = AnnotationDialog(self._getStepLocation())
     dlg.setModal(True)
     dlg.exec_()
コード例 #4
0
 def annotationTool(self):
     from mapclient.tools.annotation.annotationdialog import AnnotationDialog
     location = self._model.workflowManager().location()
     dlg = AnnotationDialog(location, DEFAULT_WORKFLOW_ANNOTATION_FILENAME, self)
     dlg.setModal(True)
     dlg.exec_()