You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
407 B
27 lines
407 B
|
3 years ago
|
#ifndef MAINWINDOW_H
|
||
|
|
#define MAINWINDOW_H
|
||
|
|
|
||
|
|
#include <QMainWindow>
|
||
|
|
#include <QPushButton>
|
||
|
|
|
||
|
|
class MainWindow : public QMainWindow
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
MainWindow(QWidget *parent = 0);
|
||
|
|
~MainWindow();
|
||
|
|
|
||
|
|
public slots:
|
||
|
|
void onCustomCrop();
|
||
|
|
void onSimpleCrop();
|
||
|
|
|
||
|
|
private:
|
||
|
|
void setupLayout();
|
||
|
|
|
||
|
|
private:
|
||
|
|
QPushButton* btnCustomCrop;
|
||
|
|
QPushButton* btnSimpleCrop;
|
||
|
|
};
|
||
|
|
#endif // MAINWINDOW_H
|