inputwidget.h

00001 /*
00002  * Silence
00003  *
00004  * Copyright (C) 2009 Manuel Unglaub
00005  *
00006  * This file is part of Silence.
00007  *
00008  * Silence is free software: you can redistribute it and/or modify
00009  * it under the terms of the GNU General Public License as published by
00010  * the Free Software Foundation, version GPLv2 only of the License.
00011  *
00012  * Silence is distributed in the hope that it will be useful,
00013  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00014  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00015  * GNU General Public License for more details.
00016 
00017  * You should have received a copy of the GNU General Public License
00018  * along with Silence.  If not, see <http://www.gnu.org/licenses/>.
00019  */
00020 
00021 #ifndef INPUTWIDGET_H
00022 #define INPUTWIDGET_H
00023 
00024 #include <QGridLayout>
00025 #include <QGroupBox>
00026 #include <klineedit.h>
00027 #include <QPushButton>
00028 
00029 
00037 class InputWidget : public QGroupBox
00038 {
00039     Q_OBJECT
00040 
00041     public:
00047         InputWidget(QWidget *parent = 0);
00048 
00053         ~InputWidget();
00054 
00060         QString getInput();
00061 
00062     public slots:
00068         void show(QString title);
00069 
00070     signals:
00074         void done();
00075 
00076     private slots:
00077         void confirm();
00078 
00079     private:
00080         QGridLayout *layout;
00081         KLineEdit *inputEdit;
00082         QPushButton *okBtn,
00083                     *cancelBtn;
00084 };
00085 
00086 
00087 #endif // INPUTWIDGET_H
00088 
00089 
Generated on Fri May 14 19:12:50 2010 for Silence by  doxygen 1.6.3