2018-08-17 11:27:07 +00:00
|
|
|
#ifndef EDITMETHODDIALOG_H
|
|
|
|
#define EDITMETHODDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
2019-02-02 10:59:58 +00:00
|
|
|
#include <QComboBox>
|
|
|
|
|
2018-08-17 11:27:07 +00:00
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include "Cutter.h"
|
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class EditMethodDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class EditMethodDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2019-02-02 10:59:58 +00:00
|
|
|
explicit EditMethodDialog(bool classFixed, QWidget *parent = nullptr);
|
2018-08-17 11:27:07 +00:00
|
|
|
~EditMethodDialog();
|
|
|
|
|
|
|
|
void setClass(const QString &className);
|
2019-02-01 20:40:34 +00:00
|
|
|
void setMethod(const AnalMethodDescription &desc);
|
2018-08-17 11:27:07 +00:00
|
|
|
|
|
|
|
QString getClass();
|
2019-02-01 20:40:34 +00:00
|
|
|
AnalMethodDescription getMethod();
|
2018-08-17 11:27:07 +00:00
|
|
|
|
2019-02-01 20:40:34 +00:00
|
|
|
static bool showDialog(const QString &title, QString *className, AnalMethodDescription *desc, QWidget *parent = nullptr);
|
|
|
|
static void newMethod(QString className = nullptr, const QString &meth = QString(), QWidget *parent = nullptr);
|
|
|
|
static void editMethod(const QString &className, const QString &meth, QWidget *parent = nullptr);
|
2018-08-17 11:27:07 +00:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void on_buttonBox_accepted();
|
|
|
|
void on_buttonBox_rejected();
|
|
|
|
|
|
|
|
void updateVirtualUI();
|
|
|
|
void validateInput();
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::unique_ptr<Ui::EditMethodDialog> ui;
|
|
|
|
|
2019-02-02 10:59:58 +00:00
|
|
|
QComboBox *classComboBox = nullptr;
|
|
|
|
QLabel *classLabel = nullptr;
|
|
|
|
QString fixedClass;
|
|
|
|
|
2018-08-17 11:27:07 +00:00
|
|
|
bool inputValid();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // EDITMETHODDIALOG_H
|