27 lines
417 B
C++
27 lines
417 B
C++
#ifndef CUSTOMIZEMENUDIALOG_H
|
|
#define CUSTOMIZEMENUDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui
|
|
{
|
|
class CustomizeMenuDialog;
|
|
}
|
|
|
|
class CustomizeMenuDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit CustomizeMenuDialog(QWidget* parent = 0);
|
|
~CustomizeMenuDialog();
|
|
|
|
public slots:
|
|
void onOk();
|
|
|
|
private:
|
|
Ui::CustomizeMenuDialog* ui;
|
|
};
|
|
|
|
#endif // CUSTOMIZEMENUDIALOG_H
|