summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-bartender/inputDialog.cpp
Unidiff
Diffstat (limited to 'noncore/apps/opie-bartender/inputDialog.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/opie-bartender/inputDialog.cpp47
1 files changed, 47 insertions, 0 deletions
diff --git a/noncore/apps/opie-bartender/inputDialog.cpp b/noncore/apps/opie-bartender/inputDialog.cpp
new file mode 100644
index 0000000..4f4cb84
--- a/dev/null
+++ b/noncore/apps/opie-bartender/inputDialog.cpp
@@ -0,0 +1,47 @@
1/****************************************************************************
2 inputDialog.cpp
3 -------------------
4** Created: Sat Mar 9 23:33:09 2002
5 copyright : (C) 2002 by ljp
6 email : ljp@llornkcor.com
7** by: L.J. Potter <ljp@llornkcor.com>
8** copyright : (C) 2002 by ljp
9 email : ljp@llornkcor.com
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 ***************************************************************************/
15
16#include "inputDialog.h"
17
18#include <qlineedit.h>
19#include <qlayout.h>
20#include <qvariant.h>
21#include <qtooltip.h>
22#include <qwhatsthis.h>
23
24
25InputDialog::InputDialog( QWidget* parent, const char* name, bool modal, WFlags fl )
26 : QDialog( parent, name, modal, fl )
27{
28 if ( !name )
29 setName( "InputDialog" );
30 resize( 234, 50 );
31 setMaximumSize( QSize( 240, 50 ) );
32 setCaption( tr(name ) );
33
34 LineEdit1 = new QLineEdit( this, "LineEdit1" );
35 LineEdit1->setGeometry( QRect( 10, 10, 216, 22 ) );
36}
37
38InputDialog::~InputDialog()
39{
40 inputText = LineEdit1->text();
41
42}
43
44void InputDialog::setInputText(const QString &string)
45{
46LineEdit1->setText( string);
47}