diff options
author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2011-03-25 22:16:12 +0000 |
---|---|---|
committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2011-03-25 22:16:12 +0000 |
commit | 8c1d114dcfcc8b3d47505e3139151eec43ebbdc4 (patch) | |
tree | 4925e1900520b0c89001c95c9da83f3533903d1e /rbutil/rbutilqt/base/rbzip.h | |
parent | 0258895faa9a18c0b620ae0a63ee3768ba62747a (diff) | |
download | rockbox-8c1d114dcfcc8b3d47505e3139151eec43ebbdc4.tar.gz rockbox-8c1d114dcfcc8b3d47505e3139151eec43ebbdc4.zip |
Rockbox Utility: Replace OSDaB Zip with QuaZip.
This change fixes problems with zip files created with newer zip utilities (a
known issue is the iLike theme). QuaZip also allows better feedback during
operations without changing the imported code. Additionally Rockbox Utility and
the Theme Editor are now both using QuaZip; currently Rockbox Utility uses a
copy of the sources, merging them later is planned.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29645 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'rbutil/rbutilqt/base/rbzip.h')
-rw-r--r-- | rbutil/rbutilqt/base/rbzip.h | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/rbutil/rbutilqt/base/rbzip.h b/rbutil/rbutilqt/base/rbzip.h deleted file mode 100644 index d2681ec097..0000000000 --- a/rbutil/rbutilqt/base/rbzip.h +++ /dev/null @@ -1,45 +0,0 @@ -/*************************************************************************** - * __________ __ ___. - * Open \______ \ ____ ____ | | _\_ |__ _______ ___ - * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / - * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < - * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ - * \/ \/ \/ \/ \/ - * - * Copyright (C) 2008 by Dominik Wenger - * $Id$ - * - * This program is free software; you can redistribute it and/or - * modify it under the terms of the GNU General Public License - * as published by the Free Software Foundation; either version 2 - * of the License, or (at your option) any later version. - * - * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY - * KIND, either express or implied. - * - ****************************************************************************/ - -#ifndef RBZIP_H -#define RBZIP_H - -#include <QtCore> -#include "zip/zip.h" - -class RbZip : public QObject, public Zip -{ - Q_OBJECT - public: - Zip::ErrorCode createZip(QString zip,QString dir); - - virtual void progress(); - - signals: - void zipProgress(int, int); - - private: - int m_curEntry; - int m_numEntrys; -}; - -#endif - |