summaryrefslogtreecommitdiffstats
path: root/kio/kioexec/main.h
diff options
context:
space:
mode:
Diffstat (limited to 'kio/kioexec/main.h')
-rw-r--r--kio/kioexec/main.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/kio/kioexec/main.h b/kio/kioexec/main.h
new file mode 100644
index 000000000..8fb98130f
--- /dev/null
+++ b/kio/kioexec/main.h
@@ -0,0 +1,35 @@
+#ifndef _main_h
+#define _main_h
+
+#include <qobject.h>
+#include <qstring.h>
+#include <qstrlist.h>
+#include <qtimer.h>
+
+namespace KIO { class Job; }
+
+class KIOExec : public QObject
+{
+ Q_OBJECT
+public:
+ KIOExec();
+
+public slots:
+ void slotResult( KIO::Job * );
+ void slotRunApp();
+
+protected:
+ bool tempfiles;
+ QString suggestedFileName;
+ int counter;
+ int expectedCounter;
+ QString command;
+ struct fileInfo {
+ QString path;
+ KURL url;
+ int time;
+ };
+ QValueList<fileInfo> fileList;
+};
+
+#endif