diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | ce4a32fe52ef09d8f5ff1dd22c001110902b60a2 (patch) | |
tree | 5ac38a06f3dde268dc7927dc155896926aaf7012 /kio/kioexec/main.h | |
download | tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.tar.gz tdelibs-ce4a32fe52ef09d8f5ff1dd22c001110902b60a2.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/kdelibs@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kio/kioexec/main.h')
-rw-r--r-- | kio/kioexec/main.h | 35 |
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 |