Started adding code for writing the main project file.

This commit is contained in:
Veronica K. B. Olsen
2018-10-14 23:19:54 +02:00
parent 39044818ca
commit 1154513710
3 changed files with 70 additions and 6 deletions
+4 -4
View File
@@ -42,10 +42,10 @@ class GuiProjectEditor(QWidget):
self.saveBox.addWidget(self.savePath)
self.saveBox.addWidget(self.saveButton)
self.mainForm.addRow("Working Name", self.editName)
self.mainForm.addRow("Book Title", self.editTitle)
self.mainForm.addRow("Book Authors", self.editAuthors)
self.mainForm.addRow("Save Path", self.saveBox)
self.mainForm.addRow("Working Title", self.editName)
self.mainForm.addRow("Book Title", self.editTitle)
self.mainForm.addRow("Book Authors", self.editAuthors)
self.mainForm.addRow("Save Path", self.saveBox)
self.mainGroup.setLayout(self.mainForm)
self.outerBox.addWidget(self.mainGroup)