summaryrefslogtreecommitdiffstats
path: root/ksquirrel/sq_downloader.h
blob: 949af800c82bbf2c9cc13a9c14d4b9d41393f56d (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/***************************************************************************
                          sq_downloader.h  -  description
                             -------------------
    begin                : Fri Jun 07 2007
    copyright            : (C) 2007 by Baryshev Dmitry
    email                : ksquirrel.iv@gmail.com
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef SQ_DOWNLOADER_H
#define SQ_DOWNLOADER_H

#include <tqobject.h>
#include <tqdatetime.h>

#include <kurl.h>

class KFileItem;
class KTempFile;

namespace KIO { class Job; }

class SQ_Downloader : public TQObject
{
    Q_OBJECT
  TQ_OBJECT

    public:
        SQ_Downloader(TQObject *tqparent = 0, const char *name = 0);
        ~SQ_Downloader();

        void start(KFileItem *fi);

        bool error() const;

        void clean();

        void kill();

    signals:
        void result(const KURL &);
        void percents(int);

    private slots:
        void slotData(KIO::Job *job, const TQByteArray &data);
        void slotDataResult(KIO::Job *);

    private:
        KIO::Job *job;
        KURL mEmptyURL, mURL;
        KTempFile *tmp;
        KIO::filesize_t totalSize, size;
        bool continueDownload;
        bool nomime;
        bool m_error, m_lightmode;
        TQTime startTime;
        bool emitPercents;
};

inline
bool SQ_Downloader::error() const
{
    return m_error;
}

#endif