summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/installthemes.h
diff options
context:
space:
mode:
authorAntoine Cellerier <dionoea@videolan.org>2007-09-14 22:16:22 +0000
committerAntoine Cellerier <dionoea@videolan.org>2007-09-14 22:16:22 +0000
commit554f0c3771ecee9a183fa07d6e44483205b87d8a (patch)
tree408acf273ef3c697b810dda985b93a6b7777cefb /rbutil/rbutilqt/installthemes.h
parente6b8347a4d6fab01d77914ae2e7daf5635152d69 (diff)
If caching is disabled, still cache theme info and images in a temporary directory (which will be deleted once rbutil is closed) to prevent downling them every time the theme selection changes.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14704 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'rbutil/rbutilqt/installthemes.h')
-rw-r--r--rbutil/rbutilqt/installthemes.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/rbutil/rbutilqt/installthemes.h b/rbutil/rbutilqt/installthemes.h
index da6ad86485..0d24d5cae2 100644
--- a/rbutil/rbutilqt/installthemes.h
+++ b/rbutil/rbutilqt/installthemes.h
@@ -34,13 +34,14 @@ class ThemesInstallWindow : public QDialog
public:
ThemesInstallWindow(QWidget* parent = 0);
+ ~ThemesInstallWindow();
void setDeviceSettings(QSettings*);
void setUserSettings(QSettings *);
void setProxy(QUrl);
void downloadInfo(void);
void show(void);
void accept(void);
-
+
public slots:
private:
@@ -59,7 +60,9 @@ class ThemesInstallWindow : public QDialog
ZipInstaller *installer;
QString file;
QString fileName;
-
+
+ QString infocachedir;
+
private slots:
void downloadDone(bool);
void downloadDone(int, bool);