32 lines
499 B
C
32 lines
499 B
C
|
|
#ifndef ALARMEVENTMAINDIALOG_H
|
||
|
|
#define ALARMEVENTMAINDIALOG_H
|
||
|
|
|
||
|
|
#include <QDialog>
|
||
|
|
#include "alarmEventGlobal.h"
|
||
|
|
|
||
|
|
QT_BEGIN_NAMESPACE
|
||
|
|
namespace Ui {
|
||
|
|
class alarmEventMainDialog;
|
||
|
|
}
|
||
|
|
QT_END_NAMESPACE
|
||
|
|
|
||
|
|
class AlarmEventMainDialog : public QDialog
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
AlarmEventMainDialog(MainDialogType type, QWidget *parent = nullptr);
|
||
|
|
~AlarmEventMainDialog();
|
||
|
|
|
||
|
|
signals:
|
||
|
|
void sgl_hide();
|
||
|
|
|
||
|
|
public slots:
|
||
|
|
void onBtnClicked_close();
|
||
|
|
|
||
|
|
private:
|
||
|
|
Ui::alarmEventMainDialog* ui;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|