summaryrefslogtreecommitdiffstats
path: root/kdialog/progressdialogiface.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdialog/progressdialogiface.h')
-rw-r--r--kdialog/progressdialogiface.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/kdialog/progressdialogiface.h b/kdialog/progressdialogiface.h
new file mode 100644
index 000000000..2974cb9a9
--- /dev/null
+++ b/kdialog/progressdialogiface.h
@@ -0,0 +1,28 @@
+#ifndef PROGRESSDIALOGIFACE_H
+#define PROGRESSDIALOGIFACE_H
+
+#include <dcopobject.h>
+
+class ProgressDialogIface : virtual public DCOPObject
+{
+ K_DCOP
+ k_dcop:
+
+ virtual void setTotalSteps( int ) =0;
+ virtual int totalSteps() const =0;
+
+ virtual void setProgress( int ) =0;
+ virtual int progress() const =0;
+
+ virtual void setLabel( const QString& ) =0;
+
+ virtual void showCancelButton ( bool ) =0;
+ virtual bool wasCancelled() const =0;
+ virtual void ignoreCancel() =0;
+
+ virtual void setAutoClose( bool ) =0;
+ virtual bool autoClose() const =0;
+ virtual void close() =0;
+};
+
+#endif // PROGRESSDIALOGIFACE_H