2015-08-30 13:35:02 +02:00
|
|
|
#ifndef LIBRARYEDITARGDIALOG_H
|
|
|
|
#define LIBRARYEDITARGDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
2015-08-30 13:41:57 +02:00
|
|
|
#include "cppchecklibrarydata.h"
|
2015-08-30 13:35:02 +02:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class LibraryEditArgDialog;
|
|
|
|
}
|
|
|
|
|
|
|
|
class LibraryEditArgDialog : public QDialog {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2017-04-01 09:31:27 +02:00
|
|
|
LibraryEditArgDialog(QWidget *parent, const CppcheckLibraryData::Function::Arg &arg);
|
2015-08-30 13:35:02 +02:00
|
|
|
~LibraryEditArgDialog();
|
|
|
|
|
2015-08-30 13:41:57 +02:00
|
|
|
CppcheckLibraryData::Function::Arg getArg() const;
|
2015-08-30 13:35:02 +02:00
|
|
|
|
2015-09-01 18:13:27 +02:00
|
|
|
private slots:
|
|
|
|
void minsizeChanged(int);
|
|
|
|
|
2015-08-30 13:35:02 +02:00
|
|
|
private:
|
|
|
|
Ui::LibraryEditArgDialog *ui;
|
|
|
|
|
2015-08-31 09:04:35 +02:00
|
|
|
QList<CppcheckLibraryData::Function::Arg::MinSize> minsizes;
|
2015-08-30 13:35:02 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // LIBRARYEDITARGDIALOG_H
|