mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-27 06:19:51 -05:00
Forgot to add filesupport.h
This commit is contained in:
@@ -43,6 +43,7 @@ set(HEADER_FILES
|
||||
include/profile/profileedit.h
|
||||
include/profile/propertiesdialog.h
|
||||
include/sgctedit/display.h
|
||||
include/sgctedit/filesupport.h
|
||||
include/sgctedit/monitorbox.h
|
||||
include/sgctedit/orientation.h
|
||||
include/sgctedit/orientationdialog.h
|
||||
@@ -92,6 +93,7 @@ set(HEADER_SOURCE
|
||||
include/profile/profileedit.h
|
||||
include/profile/propertiesdialog.h
|
||||
include/sgctedit/display.h
|
||||
include/sgctedit/filesupport.h
|
||||
include/sgctedit/monitorbox.h
|
||||
include/sgctedit/orientation.h
|
||||
include/sgctedit/orientationdialog.h
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
#ifndef FILE_SUPPORT_H
|
||||
#define FILE_SUPPORT_H
|
||||
|
||||
#include <QFrame>
|
||||
#include <QLabel>
|
||||
#include <QLayout>
|
||||
#include <QPushButton>
|
||||
#include <QVector>
|
||||
#include <QWidget>
|
||||
|
||||
#include <vector>
|
||||
#include <iostream>
|
||||
|
||||
|
||||
class FileSupport : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit FileSupport(QVBoxLayout* parentLayout);
|
||||
~FileSupport();
|
||||
|
||||
private slots:
|
||||
void cancel();
|
||||
|
||||
private:
|
||||
QHBoxLayout* _layoutButtonBox = nullptr;
|
||||
QPushButton* _saveButton = nullptr;
|
||||
QPushButton* _cancelButton = nullptr;
|
||||
};
|
||||
|
||||
#endif // FILE_SUPPORT_H
|
||||
Reference in New Issue
Block a user