-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathCloudObject.h
136 lines (112 loc) · 2.52 KB
/
CloudObject.h
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/*
* CloudClient - A Qt cloud client for lixian.vip.xunlei.com
* Copyright (C) 2012 by Aaron Lewis <the.warl0ck.1989@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 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef CLOUDOBJECT_H
#define CLOUDOBJECT_H
#include <QString>
#include <QUrl>
#include <QIcon>
namespace Thunder
{
enum TaskType
{
Single,
BT,
Garbage
};
enum AutoOpen
{
Never,
// preview directly
Video,
// download + open
Document
};
struct RemoteTask
{
QString name;
QString size;
QString url;
};
struct BatchTask
{
QString formatsize, url, name;
unsigned long long size;
};
struct BTSubTask
{
QString id;
QString name;
QString size;
QString format_size;
QString link;
};
struct BitorrentTask
{
QString ftitle;
QString infoid;
QString taskid;
unsigned long long btsize;
QList<BTSubTask> subtasks;
};
struct Task
{
/*!
* \brief Task ID
*/
QString id;
/*!
* \brief status 2=Done 1=No
*/
int status;
QString cid;
/*!
* \brief Task size in bytes
*/
unsigned long long size;
/*!
* \brief Task type, i.e single file or BT
*/
TaskType type;
/*!
* \brief Display task name
*/
QString name;
/*!
* \brief Download link
*/
QString link, bt_url;
/*!
* \brief Source address
*/
QString source;
bool finished()
{
return status == 2;
}
bool isEmpty()
{
return name.isEmpty();
}
};
struct File
{
QString extension;
QIcon icon;
};
}
#endif // CLOUDOBJECT_H