74 """ |
74 """ |
75 Public slot to retrieve the dialogs data. |
75 Public slot to retrieve the dialogs data. |
76 |
76 |
77 @return tuple of four values (string, string, boolean, string) giving the |
77 @return tuple of four values (string, string, boolean, string) giving the |
78 project name, the name of the project file, a flag telling, whether |
78 project name, the name of the project file, a flag telling, whether |
79 the project shall be the master project and a short description |
79 the project shall be the main project and a short description |
80 for the project |
80 for the project |
81 """ |
81 """ |
82 return (self.nameEdit.text(), self.filenameEdit.text(), |
82 return (self.nameEdit.text(), self.filenameEdit.text(), |
83 self.masterCheckBox.isChecked(), |
83 self.masterCheckBox.isChecked(), |
84 self.descriptionEdit.toPlainText()) |
84 self.descriptionEdit.toPlainText()) |