-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
brendanwong
committed
Sep 8, 2017
1 parent
2a70f4e
commit 86aff4c
Showing
13 changed files
with
203 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#include "pagethree.h" | ||
|
||
#include <QLineEdit> | ||
#include <QDateEdit> | ||
#include <QSpinBox> | ||
|
||
PageThree::PageThree(QWidget *parent) : QWidget(parent) | ||
{ | ||
QWidget *widget = new QWidget(this); | ||
buildTemplateEdit(widget); | ||
|
||
} | ||
|
||
void PageThree::buildTemplateEdit(QWidget *widget) | ||
{ | ||
QLineEdit *nameEdit = new QLineEdit; | ||
QDateEdit *dateEdit = new QDateEdit; | ||
QSpinBox *heightEdit = new QSpinBox; | ||
QSpinBox *widthEdit = new QSpinBox; | ||
QSpinBox *positionEdit = new QSpinBox; | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#ifndef PAGETHREE_H | ||
#define PAGETHREE_H | ||
|
||
#include <QWidget> | ||
|
||
class PageThree : public QWidget | ||
{ | ||
public: | ||
PageThree(QWidget *parent = 0); | ||
|
||
void buildTemplateEdit(QWidget *widget); | ||
}; | ||
|
||
#endif // PAGETHREE_H |
Oops, something went wrong.