99 @return tuple giving the scaffold (string), the project name (string), |
99 @return tuple giving the scaffold (string), the project name (string), |
100 a flag indicating to overwrite existing files (boolean) and a flag |
100 a flag indicating to overwrite existing files (boolean) and a flag |
101 indicating to simulate the creation (boolean) |
101 indicating to simulate the creation (boolean) |
102 """ |
102 """ |
103 return ( |
103 return ( |
104 self.scaffoldCombo.currentText().split(":")[0], |
104 self.scaffoldCombo.currentText().split(":")[0], |
105 self.nameEdit.text(), |
105 self.nameEdit.text(), |
106 self.overwriteCheckBox.isChecked(), |
106 self.overwriteCheckBox.isChecked(), |
107 self.simulateCheckBox.isChecked() |
107 self.simulateCheckBox.isChecked() |
108 ) |
108 ) |