summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/install.h
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/rbutilqt/install.h')
-rw-r--r--rbutil/rbutilqt/install.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/rbutil/rbutilqt/install.h b/rbutil/rbutilqt/install.h
index f84b6008e2..d453378c30 100644
--- a/rbutil/rbutilqt/install.h
+++ b/rbutil/rbutilqt/install.h
@@ -7,7 +7,7 @@
7 * \/ \/ \/ \/ \/ 7 * \/ \/ \/ \/ \/
8 * 8 *
9 * Copyright (C) 2007 by Dominik Riebeling 9 * Copyright (C) 2007 by Dominik Riebeling
10 * $Id:$ 10 * $Id$
11 * 11 *
12 * All files in this archive are subject to the GNU General Public License. 12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement. 13 * See the file COPYING in the source tree root for full license agreement.
@@ -21,13 +21,12 @@
21#define INSTALL_H 21#define INSTALL_H
22 22
23#include <QtGui> 23#include <QtGui>
24#include <QtNetwork>
25 24
26#include <QSettings> 25#include <QSettings>
27 26
28#include "ui_installfrm.h" 27#include "ui_installfrm.h"
29#include "ui_installprogressfrm.h" 28#include "ui_installprogressfrm.h"
30#include "httpget.h" 29#include "installrb.h"
31 30
32class Install : public QDialog 31class Install : public QDialog
33{ 32{
@@ -55,12 +54,11 @@ class Install : public QDialog
55 QDialog *downloadProgress; 54 QDialog *downloadProgress;
56 QHttp *download; 55 QHttp *download;
57 QFile *target; 56 QFile *target;
58 HttpGet *getter;
59 QString file; 57 QString file;
60 QString fileName; 58 QString fileName;
61 QString mountPoint; 59 QString mountPoint;
62 QString archived; 60 QString archived;
63 QTemporaryFile downloadFile; 61 RBInstaller* installer;
64 62
65 private slots: 63 private slots:
66 void setCached(bool); 64 void setCached(bool);
@@ -68,9 +66,8 @@ class Install : public QDialog
68 void setDetailsCurrent(bool); 66 void setDetailsCurrent(bool);
69 void setDetailsStable(bool); 67 void setDetailsStable(bool);
70 void setDetailsArchived(bool); 68 void setDetailsArchived(bool);
71 void updateDataReadProgress(int, int); 69 void done(bool);
72 void downloadDone(bool); 70
73 void downloadRequestFinished(int, bool);
74}; 71};
75 72
76 73