You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
559 B
36 lines
559 B
15 years ago
|
#ifndef _main_h
|
||
|
#define _main_h
|
||
|
|
||
14 years ago
|
#include <tqobject.h>
|
||
|
#include <tqstring.h>
|
||
|
#include <tqstrlist.h>
|
||
|
#include <tqtimer.h>
|
||
15 years ago
|
|
||
12 years ago
|
namespace TDEIO { class Job; }
|
||
15 years ago
|
|
||
14 years ago
|
class KIOExec : public TQObject
|
||
15 years ago
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
KIOExec();
|
||
|
|
||
|
public slots:
|
||
12 years ago
|
void slotResult( TDEIO::Job * );
|
||
15 years ago
|
void slotRunApp();
|
||
|
|
||
|
protected:
|
||
|
bool tempfiles;
|
||
14 years ago
|
TQString suggestedFileName;
|
||
15 years ago
|
int counter;
|
||
|
int expectedCounter;
|
||
14 years ago
|
TQString command;
|
||
15 years ago
|
struct fileInfo {
|
||
14 years ago
|
TQString path;
|
||
15 years ago
|
KURL url;
|
||
|
int time;
|
||
|
};
|
||
14 years ago
|
TQValueList<fileInfo> fileList;
|
||
15 years ago
|
};
|
||
|
|
||
|
#endif
|