2015-08-30 10:24:44 +02:00
|
|
|
#ifndef LIBRARYADDFUNCTIONDIALOG_H
|
|
|
|
#define LIBRARYADDFUNCTIONDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
2015-09-08 15:38:02 +02:00
|
|
|
#define SIMPLENAME "[_a-zA-Z][_a-zA-Z0-9]*" // just a name
|
|
|
|
#define SCOPENAME SIMPLENAME "(::" SIMPLENAME ")*" // names with optional scope
|
|
|
|
#define NAMES SCOPENAME "(," SCOPENAME ")*" // names can be separated by comma
|
|
|
|
|
2015-08-30 10:24:44 +02:00
|
|
|
namespace Ui {
|
2015-08-30 11:59:33 +02:00
|
|
|
class LibraryAddFunctionDialog;
|
2015-08-30 10:24:44 +02:00
|
|
|
}
|
|
|
|
|
2015-08-30 11:59:33 +02:00
|
|
|
class LibraryAddFunctionDialog : public QDialog {
|
2015-08-30 10:24:44 +02:00
|
|
|
Q_OBJECT
|
2015-08-30 11:59:33 +02:00
|
|
|
|
2015-08-30 10:24:44 +02:00
|
|
|
public:
|
|
|
|
explicit LibraryAddFunctionDialog(QWidget *parent = 0);
|
2018-05-01 09:35:53 +02:00
|
|
|
LibraryAddFunctionDialog(const LibraryAddFunctionDialog &) = delete;
|
2015-08-30 10:24:44 +02:00
|
|
|
~LibraryAddFunctionDialog();
|
2018-05-01 09:35:53 +02:00
|
|
|
LibraryAddFunctionDialog &operator=(const LibraryAddFunctionDialog &) = delete;
|
2015-08-30 11:59:33 +02:00
|
|
|
|
2015-08-30 10:24:44 +02:00
|
|
|
QString functionName() const;
|
|
|
|
int numberOfArguments() const;
|
|
|
|
|
|
|
|
private:
|
2018-06-18 10:13:33 +02:00
|
|
|
Ui::LibraryAddFunctionDialog *mUi;
|
2015-08-30 10:24:44 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LIBRARYADDFUNCTIONDIALOG_H
|