forked from len0rd/rockbox
Add info window which shows details about the currently installed files based on the installation log file. Rework the log file and save revision number / timestamps instead of an arbitrary number.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14461 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
663029ddfb
commit
848abc8037
8 changed files with 228 additions and 61 deletions
|
|
@ -45,13 +45,16 @@ class RbUtilQt : public QMainWindow
|
|||
QString deviceName(QString);
|
||||
QString platform;
|
||||
HttpGet *daily;
|
||||
HttpGet *bleeding;
|
||||
QString absolutePath;
|
||||
QTemporaryFile buildInfo;
|
||||
QTemporaryFile bleedingInfo;
|
||||
void updateManual(void);
|
||||
ProgressLoggerGui *logger;
|
||||
ZipInstaller *installer;
|
||||
BootloaderInstaller* blinstaller;
|
||||
QUrl proxy(void);
|
||||
QMap<QString, QString> versmap;
|
||||
|
||||
private slots:
|
||||
void about(void);
|
||||
|
|
@ -65,6 +68,7 @@ class RbUtilQt : public QMainWindow
|
|||
void createTalkFiles(void);
|
||||
void downloadDone(bool);
|
||||
void downloadDone(int, bool);
|
||||
void downloadBleedingDone(bool);
|
||||
void downloadInfo(void);
|
||||
void installVoice(void);
|
||||
void installThemes(void);
|
||||
|
|
@ -72,6 +76,8 @@ class RbUtilQt : public QMainWindow
|
|||
void uninstallBootloader(void);
|
||||
void downloadManual(void);
|
||||
void installPortable(void);
|
||||
void updateInfo(void);
|
||||
void updateTabs(int);
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue