blob: 7b0c27a4ac2f8b758b4118d932079a74dd3a71f6 (
plain) (
blame)
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
|
#ifndef PODBEUTER_DOWNLOAD__H
#define PODBEUTER_DOWNLOAD__H
#include <string>
namespace podbeuter {
enum dlstatus_t { DL_QUEUED = 0, DL_DOWNLOADING, DL_CANCELLED, DL_DELETED, DL_FINISHED, DL_FAILED, DL_ALREADY_DOWNLOADED, DL_PLAYED };
class pb_controller;
class download {
public:
download(pb_controller * c = 0);
~download();
double percents_finished();
const char * status_text();
inline dlstatus_t status() { return dlstatus; }
const char * filename();
const char * url();
void set_filename(const std::string& str);
void set_url(const std::string& url);
void set_progress(double cur, double max);
void set_status(dlstatus_t dls);
void set_kbps(double kbps);
double kbps();
void set_offset(unsigned long offset);
inline double current_size() { return cursize + offs; }
inline double total_size() { return totalsize + offs; }
private:
std::string fn;
std::string url_;
dlstatus_t dlstatus;
float cursize;
float totalsize;
double curkbps;
unsigned long offs;
pb_controller * ctrl;
};
}
#endif
|