2022-01-28 15:56:11 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2023-06-21 16:41:22 +02:00
|
|
|
* Copyright (C) 2007-2023 Cppcheck team.
|
2022-01-28 15:56:11 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2015-08-30 10:24:44 +02:00
|
|
|
#include "libraryaddfunctiondialog.h"
|
2022-02-02 16:17:28 +01:00
|
|
|
|
2015-08-30 10:24:44 +02:00
|
|
|
#include "ui_libraryaddfunctiondialog.h"
|
|
|
|
|
2023-04-08 16:08:47 +02:00
|
|
|
#include <QLineEdit>
|
2022-03-23 18:16:22 +01:00
|
|
|
#include <QRegularExpression>
|
|
|
|
#include <QRegularExpressionValidator>
|
2023-04-08 16:08:47 +02:00
|
|
|
#include <QSpinBox>
|
2015-08-30 10:24:44 +02:00
|
|
|
|
2022-04-13 12:24:00 +02:00
|
|
|
class QWidget;
|
|
|
|
|
2015-08-30 10:24:44 +02:00
|
|
|
LibraryAddFunctionDialog::LibraryAddFunctionDialog(QWidget *parent) :
|
|
|
|
QDialog(parent),
|
2018-06-18 10:13:33 +02:00
|
|
|
mUi(new Ui::LibraryAddFunctionDialog)
|
2015-08-30 10:24:44 +02:00
|
|
|
{
|
2018-06-18 10:13:33 +02:00
|
|
|
mUi->setupUi(this);
|
2022-04-11 19:15:42 +02:00
|
|
|
static const QRegularExpression rx(NAMES);
|
2022-03-23 18:16:22 +01:00
|
|
|
QValidator *validator = new QRegularExpressionValidator(rx, this);
|
2018-06-18 10:13:33 +02:00
|
|
|
mUi->functionName->setValidator(validator);
|
2015-08-30 10:24:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
LibraryAddFunctionDialog::~LibraryAddFunctionDialog()
|
|
|
|
{
|
2018-06-18 10:13:33 +02:00
|
|
|
delete mUi;
|
2015-08-30 10:24:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
QString LibraryAddFunctionDialog::functionName() const
|
|
|
|
{
|
2018-06-18 10:13:33 +02:00
|
|
|
return mUi->functionName->text();
|
2015-08-30 10:24:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int LibraryAddFunctionDialog::numberOfArguments() const
|
|
|
|
{
|
2018-06-18 10:13:33 +02:00
|
|
|
return mUi->numberOfArguments->value();
|
2015-08-30 10:24:44 +02:00
|
|
|
}
|
|
|
|
|