From 637146017289dd394a6f68327c56867fa8747dc5 Mon Sep 17 00:00:00 2001 From: Dominik Riebeling Date: Fri, 24 Oct 2008 21:23:18 +0000 Subject: Make uninstallation class use QtCore instead of QtGui -- it doesn't use any GUI elements. Move class to the QtCore-only base folder. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18872 a1c6a512-1295-4272-9138-f99709370657 --- rbutil/rbutilqt/base/uninstall.h | 62 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 rbutil/rbutilqt/base/uninstall.h (limited to 'rbutil/rbutilqt/base/uninstall.h') diff --git a/rbutil/rbutilqt/base/uninstall.h b/rbutil/rbutilqt/base/uninstall.h new file mode 100644 index 0000000000..34faf9a4d7 --- /dev/null +++ b/rbutil/rbutilqt/base/uninstall.h @@ -0,0 +1,62 @@ +/*************************************************************************** + * __________ __ ___. + * Open \______ \ ____ ____ | | _\_ |__ _______ ___ + * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / + * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < + * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ + * \/ \/ \/ \/ \/ + * + * Copyright (C) 2007 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 UNINSTALL_H +#define UNINSTALL_H + +#include + +#include "progressloggerinterface.h" + + +class Uninstaller : public QObject +{ + Q_OBJECT +public: + Uninstaller(QObject* parent,QString mountpoint) ; + ~Uninstaller(){} + + void deleteAll(ProgressloggerInterface* dp); + void uninstall(ProgressloggerInterface* dp); + + bool uninstallPossible(); + + QStringList getAllSections(); + + void setSections(QStringList sections) {uninstallSections = sections;} + + +private slots: + + +private: + QString m_mountpoint; + + QStringList uninstallSections; + + ProgressloggerInterface* m_dp; +}; + + + +#endif + -- cgit v1.2.3