RegExpValidatedInputDialog.cpp
Go to the documentation of this file.
1/*
2 * This file is part of ArmarX.
3 *
4 * Copyright (C) 2011-2017, High Performance Humanoid Technologies (H2T), Karlsruhe Institute of Technology (KIT), all rights reservethis->
5 *
6 * ArmarX is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * ArmarX is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 *
18 * @package ArmarX
19 * @author Mirko Waechter( mirko.waechter at kit dot edu)
20 * @date 2017
21 * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
22 * GNU General Public License
23 */
25
26#include <QDialogButtonBox>
27#include <QGridLayout>
28#include <QLabel>
29#include <QLineEdit>
30#include <QValidator>
31
32namespace armarx
33{
34
36 QString const& labelName,
37 const QRegExp& regExp,
38 QWidget* parent) :
39 QDialog(parent)
40 {
41
42 this->setWindowTitle(windowTitle);
43 QDialogButtonBox* buttonBox = new QDialogButtonBox(this);
44 buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
45 buttonBox->setOrientation(Qt::Horizontal);
46 buttonBox->setStandardButtons(QDialogButtonBox::Ok | QDialogButtonBox::Cancel);
47 edit = new QLineEdit();
48 edit->setValidator(new QRegExpValidator(regExp));
49 QGridLayout* layout = new QGridLayout(this);
50 this->setLayout(layout);
51 layout->addWidget(new QLabel(labelName), 0, 0);
52 layout->addWidget(edit, 0, 1);
53 layout->addWidget(buttonBox, 1, 0, 1, 2);
54 connect(buttonBox, SIGNAL(accepted()), this, SLOT(accept()));
55 connect(buttonBox, SIGNAL(rejected()), this, SLOT(reject()));
56 resize(250, height());
57 edit->setFocus();
58 }
59
60 QString
62 {
63 return edit->text();
64 }
65
66} // namespace armarx
RegExpValidatedInputDialog(const QString &windowTitle, const QString &labelName, const QRegExp &regExp, QWidget *parent=0)
This file offers overloads of toIce() and fromIce() functions for STL container types.