rbutilQt: changed the progress/error logger, there is now an abstract interface and a progressloggergui implementation of it.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14060 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Wenger 2007-07-29 18:07:31 +00:00
parent c414f46971
commit 917e0acd64
16 changed files with 724 additions and 561 deletions

View file

@ -22,7 +22,7 @@
#include <QtGui>
#include "ui_installprogressfrm.h"
#include "progressloggerinterface.h"
#include "httpget.h"
#include "irivertools/irivertools.h"
@ -43,8 +43,8 @@ public:
BootloaderInstaller(QObject* parent);
~BootloaderInstaller() {}
void install(Ui::InstallProgressFrm* dp);
void uninstall(Ui::InstallProgressFrm* dp);
void install(ProgressloggerInterface* dp);
void uninstall(ProgressloggerInterface* dp);
void setMountPoint(QString mountpoint) {m_mountpoint = mountpoint;}
void setProxy(QUrl proxy) {m_proxy= proxy;}
@ -101,7 +101,7 @@ private:
HttpGet *getter;
QTemporaryFile downloadFile;
Ui::InstallProgressFrm* m_dp;
ProgressloggerInterface* m_dp;
};
#endif