summaryrefslogtreecommitdiffabout
path: root/kmicromail/statuswidget.h
Side-by-side diff
Diffstat (limited to 'kmicromail/statuswidget.h') (more/less context) (ignore whitespace changes)
-rw-r--r--kmicromail/statuswidget.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/kmicromail/statuswidget.h b/kmicromail/statuswidget.h
new file mode 100644
index 0000000..73f0d75
--- a/dev/null
+++ b/kmicromail/statuswidget.h
@@ -0,0 +1,24 @@
+#ifndef STATUS_WIDGET_H
+#define STATUS_WIDGET_H
+
+#include <qwidget.h>
+#include "statuswidgetui.h"
+
+class StatusWidget : public StatusWidgetUI {
+
+Q_OBJECT
+
+public:
+ StatusWidget( QWidget* parent = 0, const char* name = 0,WFlags fl = 0 );
+ ~StatusWidget();
+
+
+public slots:
+
+ void setText( const QString& text );
+ void setProgress( int progress );
+};
+
+
+#endif
+