Finish the Qt main menu

This commit is contained in:
Cacodemon345
2021-12-12 01:16:27 +06:00
parent 975ea07b45
commit 457751d108
9 changed files with 375 additions and 5 deletions

View File

@@ -0,0 +1,25 @@
#ifndef QT_SPECIFYDIMENSIONS_H
#define QT_SPECIFYDIMENSIONS_H
#include <QDialog>
namespace Ui {
class SpecifyDimensions;
}
class SpecifyDimensions : public QDialog
{
Q_OBJECT
public:
explicit SpecifyDimensions(QWidget *parent = nullptr);
~SpecifyDimensions();
private slots:
void on_SpecifyDimensions_accepted();
private:
Ui::SpecifyDimensions *ui;
};
#endif // QT_SPECIFYDIMENSIONS_H