27 lines
425 B
C
27 lines
425 B
C
|
#ifndef MAINWINDOW_H
|
||
|
#define MAINWINDOW_H
|
||
|
|
||
|
#include <QMainWindow>
|
||
|
|
||
|
namespace Ui {
|
||
|
class MainWindow;
|
||
|
}
|
||
|
|
||
|
class MainWindow : public QMainWindow {
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit MainWindow(QWidget* parent = 0);
|
||
|
~MainWindow();
|
||
|
|
||
|
private slots:
|
||
|
void on_imagePathSelector_clicked();
|
||
|
void on_showToast_clicked();
|
||
|
void on_heroPathSelector_clicked();
|
||
|
|
||
|
private:
|
||
|
Ui::MainWindow* ui;
|
||
|
};
|
||
|
|
||
|
#endif // MAINWINDOW_H
|