QTfrontend/pagedata.h
changeset 5746 fbc52bb92cad
parent 5582 48ced03a9949
child 5754 583b7a683b17
equal deleted inserted replaced
5745:71e69623be39 5746:fbc52bb92cad
    16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
    16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
    17  */
    17  */
    18 
    18 
    19 #ifndef PAGE_DATA_H
    19 #ifndef PAGE_DATA_H
    20 #define PAGE_DATA_H
    20 #define PAGE_DATA_H
    21 #include <QWebView>
    21 
    22 #include <QUrl>
    22 #include <QUrl>
    23 #include "AbstractPage.h"
    23 #include "AbstractPage.h"
       
    24 
       
    25 class QTextBrowser;
    24 
    26 
    25 class PageDataDownload : public AbstractPage
    27 class PageDataDownload : public AbstractPage
    26 {
    28 {
    27     Q_OBJECT
    29     Q_OBJECT
    28 
    30 
    29 public:
    31 public:
    30     PageDataDownload(QWidget* parent = 0);
    32     PageDataDownload(QWidget* parent = 0);
    31 
    33 
    32     QPushButton *BtnBack;
    34     QPushButton *BtnBack;
    33     QWebView *web;
    35     QTextBrowser *web;
    34 
    36 
    35 private slots:
    37 private slots:
    36     void install(const QUrl &url);
    38     void install(const QUrl &url);
       
    39 
       
    40     void downloadIssueFinished();
    37 };
    41 };
    38 
    42 
    39 #endif
    43 #endif