summaryrefslogtreecommitdiffstats
path: root/tdeio/tdeioexec/main.h
blob: 863da887ace14b08416169c24d601899242e0250 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef _main_h
#define _main_h

#include <tqobject.h>
#include <tqstring.h>
#include <tqstrlist.h>
#include <tqtimer.h>

namespace TDEIO { class Job; }

class KIOExec : public TQObject
{
    TQ_OBJECT
public:
    KIOExec();

public slots:
    void slotResult( TDEIO::Job * );
    void slotRunApp();

protected:
    bool tempfiles;
    TQString suggestedFileName;
    int counter;
    int expectedCounter;
    TQString command;
    struct fileInfo {
       TQString path;
       KURL url;
       int time;
    };
    TQValueList<fileInfo> fileList;
};

#endif