summaryrefslogtreecommitdiffstats
path: root/ksirc/KSProgress/ksprogressdata.cpp
diff options
context:
space:
mode:
authortoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
committertoma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2009-11-25 17:56:58 +0000
commitbcb704366cb5e333a626c18c308c7e0448a8e69f (patch)
treef0d6ab7d78ecdd9207cf46536376b44b91a1ca71 /ksirc/KSProgress/ksprogressdata.cpp
downloadtdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.tar.gz
tdenetwork-bcb704366cb5e333a626c18c308c7e0448a8e69f.zip
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdenetwork@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksirc/KSProgress/ksprogressdata.cpp')
-rw-r--r--ksirc/KSProgress/ksprogressdata.cpp72
1 files changed, 72 insertions, 0 deletions
diff --git a/ksirc/KSProgress/ksprogressdata.cpp b/ksirc/KSProgress/ksprogressdata.cpp
new file mode 100644
index 00000000..0feb524b
--- /dev/null
+++ b/ksirc/KSProgress/ksprogressdata.cpp
@@ -0,0 +1,72 @@
+/**********************************************************************
+
+ --- Qt Architect generated file ---
+
+ File: ksprogressdata.cpp
+ Last generated: Thu Dec 18 09:09:53 1997
+
+ DO NOT EDIT!!! This file will be automatically
+ regenerated by qtarch. All changes will be lost.
+
+ *********************************************************************/
+
+#include "ksprogressdata.h"
+
+#undef Inherited
+#define Inherited QFrame
+
+#include <kpushbutton.h>
+#include <kstdguiitem.h>
+
+#include <klocale.h>
+
+ksprogressData::ksprogressData
+(
+ QWidget* parent,
+ const char* name
+)
+ :
+ Inherited( parent, name, 0 )
+{
+ progress = new KProgress( this, "User_1" );
+ progress->setGeometry( 10, 60, 230, 20 );
+ progress->setMinimumSize( 10, 10 );
+ progress->setMaximumSize( 32767, 32767 );
+
+ QPushButton* dlgedit_PushButton_1;
+ dlgedit_PushButton_1 = new KPushButton( KStdGuiItem::cancel(), this, "PushButton_1" );
+ dlgedit_PushButton_1->setGeometry( 70, 90, 100, 30 );
+ dlgedit_PushButton_1->setMinimumSize( 10, 10 );
+ dlgedit_PushButton_1->setMaximumSize( 32767, 32767 );
+ connect( dlgedit_PushButton_1, SIGNAL(clicked()), SLOT(cancelPressed()) );
+ dlgedit_PushButton_1->setAutoRepeat( FALSE );
+
+ fileName = new QLabel( this, "Label_1" );
+ fileName->setGeometry( 10, 10, 230, 20 );
+ fileName->setMinimumSize( 10, 10 );
+ fileName->setMaximumSize( 32767, 32767 );
+ fileName->setText( i18n("File Name") );
+ fileName->setAlignment( 289 );
+ fileName->setMargin( -1 );
+
+ transferStatus = new QLabel( this, "Label_2" );
+ transferStatus->setGeometry( 10, 35, 230, 20 );
+ transferStatus->setMinimumSize( 10, 10 );
+ transferStatus->setMaximumSize( 32767, 32767 );
+ transferStatus->setText( i18n("Transfer Status") );
+ transferStatus->setAlignment( 289 );
+ transferStatus->setMargin( -1 );
+
+ resize( 250,130 );
+ setMinimumSize( 250, 140 );
+ setMaximumSize( 250, 140 );
+}
+
+
+ksprogressData::~ksprogressData()
+{
+}
+void ksprogressData::cancelPressed()
+{
+}
+#include "ksprogressdata.moc"