コード例 #1
0
 def open_project_properties(self):
     proj = project_properties_widget.ProjectProperties(self.project, self)
     print("open_project_properties", proj)
     if not proj:
         QMessageBox.information(self, translations.TR_INFO_TITLE_PROJECT_PROPERTIES,
             translations.TR_INFO_MESSAGE_PROJECT_PROPERTIES)
         return
     proj.show()
コード例 #2
0
 def open_project_properties(self):
     print("open_project_properties-.-.-.-.-")
     _prj = self.current_project
     if _prj:
         proj = project_properties_widget.ProjectProperties(_prj, self)
         proj.show()
         return
     
     QMessageBox.information(self, translations.TR_INFO_TITLE_PROJECT_PROPERTIES,
             translations.TR_INFO_MESSAGE_PROJECT_PROPERTIES)
コード例 #3
0
 def open_project_properties(self):
     proj = project_properties_widget.ProjectProperties(self.project, self)
     proj.show()
コード例 #4
0
 def open_project_properties(self):
     item = self._get_project_root()
     proj = project_properties_widget.ProjectProperties(item, self)
     proj.show()