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
|
/* NitroShare - A simple network file sharing tool.
Copyright (C) 2012 Nathan Osman
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 CSHAREBOX_H
#define CSHAREBOX_H
#include <QMenu>
#include <QPixmap>
#include <QStringList>
#include <QVariantMap>
#include <QWidget>
#include <file/CFileSender.h>
class CShareBox : public QWidget
{
Q_OBJECT
public:
static const int DefaultHeight;
static const int DefaultWidth;
CShareBox();
QString GetMachineID() { return m_id; }
QByteArray GetMachineName() { return m_name; }
void SetMachineInfo(QString id, QByteArray name) { m_id = id; m_name = name; }
public slots:
void OnProgress(int);
signals:
void AddShareBox();
void FilesDropped(QStringList, QString);
void Moved();
void Remove();
private slots:
void ResetProgress() { m_progress = CFileSender::ProgressNone; update(); }
private:
void Init();
void CreateContextMenu();
void Position();
void SetHighlight(bool);
void contextMenuEvent(QContextMenuEvent *);
void dragEnterEvent(QDragEnterEvent *);
void dragLeaveEvent(QDragLeaveEvent *);
void dropEvent(QDropEvent *);
void mousePressEvent(QMouseEvent *);
void mouseMoveEvent(QMouseEvent *);
void mouseReleaseEvent(QMouseEvent *);
void paintEvent(QPaintEvent *);
QString m_id;
QByteArray m_name;
QMenu m_context;
QPixmap m_bg;
QPixmap m_single_icon;
QPixmap m_multiple_icon;
QPixmap m_success;
QPixmap m_error;
QFont m_text_font;
QColor m_text_normal;
QColor m_text_highlight;
QColor m_border_highlight;
float m_draw_scale;
bool m_highlight;
bool m_dragging;
int m_progress;
QPoint m_original_pos;
};
#endif // CSHAREBOX_H
|