summaryrefslogtreecommitdiff
path: root/noncore/net/opieftp/inputDialog.cpp
authorllornkcor <llornkcor>2002-03-12 01:17:36 (UTC)
committer llornkcor <llornkcor>2002-03-12 01:17:36 (UTC)
commit3e450bfc664c55e1e185953ba47e83f2b981ee68 (patch) (side-by-side diff)
tree684808759ad7c60ee273c1832925da4231da05af /noncore/net/opieftp/inputDialog.cpp
parent13b87f9eb4c51c43dc127b7fbce2ccdbf0353da2 (diff)
downloadopie-3e450bfc664c55e1e185953ba47e83f2b981ee68.zip
opie-3e450bfc664c55e1e185953ba47e83f2b981ee68.tar.gz
opie-3e450bfc664c55e1e185953ba47e83f2b981ee68.tar.bz2
added opieftp- the opief tp client
Diffstat (limited to 'noncore/net/opieftp/inputDialog.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opieftp/inputDialog.cpp40
1 files changed, 40 insertions, 0 deletions
diff --git a/noncore/net/opieftp/inputDialog.cpp b/noncore/net/opieftp/inputDialog.cpp
new file mode 100644
index 0000000..22205d3
--- a/dev/null
+++ b/noncore/net/opieftp/inputDialog.cpp
@@ -0,0 +1,40 @@
+/****************************************************************************
+ inputDialog.cpp
+ -------------------
+** Created: Sat Mar 9 23:33:09 2002
+ copyright : (C) 2002 by ljp
+ email : ljp@llornkcor.com
+ * 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 2 of the License, or *
+ * (at your option) any later version. *
+ ***************************************************************************/
+
+#include "inputDialog.h"
+
+#include <qlineedit.h>
+#include <qlayout.h>
+#include <qvariant.h>
+#include <qtooltip.h>
+#include <qwhatsthis.h>
+
+
+InputDialog::InputDialog( QWidget* parent, const char* name, bool modal, WFlags fl )
+ : QDialog( parent, name, modal, fl )
+{
+ if ( !name )
+ setName( "InputDialog" );
+ resize( 234, 50 );
+ setMaximumSize( QSize( 240, 50 ) );
+ setCaption( tr(name ) );
+
+ LineEdit1 = new QLineEdit( this, "LineEdit1" );
+ LineEdit1->setGeometry( QRect( 10, 10, 216, 22 ) );
+}
+
+InputDialog::~InputDialog()
+{
+ inputText= LineEdit1->text();
+
+}
+