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 
32 namespace armarx
33 {
34 
36  QString const& labelName, const QRegExp& regExp, QWidget* parent) : QDialog(parent)
37  {
38 
39  this->setWindowTitle(windowTitle);
40  QDialogButtonBox* buttonBox = new QDialogButtonBox(this);
41  buttonBox->setObjectName(QString::fromUtf8("buttonBox"));
42  buttonBox->setOrientation(Qt::Horizontal);
43  buttonBox->setStandardButtons(QDialogButtonBox::Ok | QDialogButtonBox::Cancel);
44  edit = new QLineEdit();
45  edit->setValidator(new QRegExpValidator(regExp));
46  QGridLayout* layout = new QGridLayout(this);
47  this->setLayout(layout);
48  layout->addWidget(new QLabel(labelName), 0, 0);
49  layout->addWidget(edit, 0, 1);
50  layout->addWidget(buttonBox, 1, 0, 1, 2);
51  connect(buttonBox, SIGNAL(accepted()), this, SLOT(accept()));
52  connect(buttonBox, SIGNAL(rejected()), this, SLOT(reject()));
53  resize(250, height());
54  edit->setFocus();
55  }
56 
58  {
59  return edit->text();
60  }
61 
62 } // namespace armarx
armarx::RegExpValidatedInputDialog::getTextValue
QString getTextValue() const
Definition: RegExpValidatedInputDialog.cpp:57
RegExpValidatedInputDialog.h
armarx::RegExpValidatedInputDialog::RegExpValidatedInputDialog
RegExpValidatedInputDialog(const QString &windowTitle, const QString &labelName, const QRegExp &regExp, QWidget *parent=0)
Definition: RegExpValidatedInputDialog.cpp:35
armarx
This file offers overloads of toIce() and fromIce() functions for STL container types.
Definition: ArmarXTimeserver.cpp:28