Linenverwaltung

This commit is contained in:
AshBastian
2020-01-08 16:41:56 +01:00
parent 6d4a4e52b5
commit c321a181b1
14 changed files with 65 additions and 88 deletions

View File

@@ -436,9 +436,11 @@ void IntelliPhotoGui::createGui(){
// create Gui elements
paintingArea = new PaintingArea();
Push
// set gui elements
mainLayout->addWidget(paintingArea);
mainLayout->addWidget(paintingArea,1,1,10,10);
mainLayout->addWiget();
}
void IntelliPhotoGui::setIntelliStyle(){

View File

@@ -86,6 +86,8 @@ bool saveFile(const QByteArray &fileFormat);
// What we'll draw on
PaintingArea* paintingArea;
QPushButton* PushButton;
// The menu widgets
QMenu*saveAsMenu;
QMenu*fileMenu;
@@ -135,7 +137,7 @@ QList<QAction*> actionSaveAs;
// main GUI elements
QWidget* centralGuiWidget;
QGridLayout*mainLayout;
QGridLayout* mainLayout;
};
#endif