35 lines
628 B
C
35 lines
628 B
C
|
#ifndef VERTICALTOHORIZONDIALOG_H
|
||
|
#define VERTICALTOHORIZONDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
namespace Ui {
|
||
|
class VerticalToHorizonDialog;
|
||
|
}
|
||
|
|
||
|
class VerticalToHorizonDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit VerticalToHorizonDialog(QWidget *parent = nullptr);
|
||
|
~VerticalToHorizonDialog();
|
||
|
|
||
|
bool getConfirmState();
|
||
|
|
||
|
virtual void changeEvent(QEvent* event);
|
||
|
private slots:
|
||
|
void on_cancel_Btn_clicked();
|
||
|
|
||
|
void on_confirm_Btn_clicked();
|
||
|
|
||
|
protected:
|
||
|
void paintEvent(QPaintEvent *event);
|
||
|
bool isConfirmed;
|
||
|
|
||
|
private:
|
||
|
Ui::VerticalToHorizonDialog *ui;
|
||
|
};
|
||
|
|
||
|
#endif // VERTICALTOHORIZONDIALOG_H
|