36 lines
565 B
C
36 lines
565 B
C
|
|
#ifndef PANELSELECTIONDIALOG_H
|
||
|
|
#define PANELSELECTIONDIALOG_H
|
||
|
|
|
||
|
|
#include <QDialog>
|
||
|
|
|
||
|
|
QT_BEGIN_NAMESPACE
|
||
|
|
namespace Ui {
|
||
|
|
class panelSelectionDialog;
|
||
|
|
}
|
||
|
|
QT_END_NAMESPACE
|
||
|
|
|
||
|
|
class PanelSelectionDialog : public QDialog
|
||
|
|
{
|
||
|
|
Q_OBJECT
|
||
|
|
|
||
|
|
public:
|
||
|
|
PanelSelectionDialog(QWidget *parent = nullptr);
|
||
|
|
~PanelSelectionDialog();
|
||
|
|
|
||
|
|
protected:
|
||
|
|
//void showEvent(QShowEvent*);
|
||
|
|
|
||
|
|
signals:
|
||
|
|
void panelType(const QString&);
|
||
|
|
void sgl_hide();
|
||
|
|
|
||
|
|
public slots:
|
||
|
|
void onBtnClicked_confirm();
|
||
|
|
void onBtnClicked_cancle();
|
||
|
|
|
||
|
|
private:
|
||
|
|
Ui::panelSelectionDialog* ui;
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|