Menu

[b73cc1]: / csohoimg.h  Maximize  Restore  History

Download this file

47 lines (33 with data), 793 Bytes

 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
#ifndef CSOHOIMG_H
#define CSOHOIMG_H
#include <QDialog>
#include "cimageview.h"
#include "curlfile.h"
#include <QNetworkRequest>
#include <QNetworkReply>
#include <QNetworkAccessManager>
namespace Ui {
class CSohoImg;
}
class CSohoImg : public QDialog
{
Q_OBJECT
public:
explicit CSohoImg(QWidget *parent = 0);
~CSohoImg();
protected:
void changeEvent(QEvent *e);
void resizeEvent(QResizeEvent *e);
void keyPressEvent(QKeyEvent *e);
QList <urlItem_t> tListUrl;
QNetworkAccessManager *manager;
uint m_hash;
private slots:
void on_pushButton_2_clicked();
void slotDownFinished(QNetworkReply *reply);
void on_comboBox_currentIndexChanged(int index);
void on_pushButton_clicked();
private:
Ui::CSohoImg *ui;
};
#endif // CSOHOIMG_H