mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 19:02:51 +00:00
61 lines
2 KiB
C
61 lines
2 KiB
C
![]() |
/*
|
||
|
* helper.h
|
||
|
*
|
||
|
* Copyright (C) 2010 Igor Krivenko <igor@shg.ru>
|
||
|
*
|
||
|
* 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 program is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with this program; if not, write to the Free Software
|
||
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||
|
*
|
||
|
*/
|
||
|
#ifndef KDM_HELPER_H
|
||
|
#define KDM_HELPER_H
|
||
|
|
||
|
#include <kauth.h>
|
||
|
|
||
|
using namespace KAuth;
|
||
|
|
||
|
class Helper : public QObject {
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
enum {
|
||
|
KdmrcInstallError = 1 << 0,
|
||
|
BackgroundrcInstallError = 1 << 1,
|
||
|
CreateFacesDirError = 1 << 2,
|
||
|
RemoveFaceError = 1 << 3,
|
||
|
InstallFaceError = 1 << 4,
|
||
|
CreateThemesDirError = 1 << 5,
|
||
|
RemoveThemesError = 1 << 6,
|
||
|
InstallThemesError = 1 << 7
|
||
|
};
|
||
|
|
||
|
enum { CreateFacesDir, RemoveFace, InstallFace };
|
||
|
enum { CreateThemesDir, RemoveThemes, InstallThemes };
|
||
|
|
||
|
public slots:
|
||
|
ActionReply save(const QVariantMap &map);
|
||
|
ActionReply managefaces(const QVariantMap &map);
|
||
|
ActionReply managethemes(const QVariantMap &map);
|
||
|
|
||
|
private:
|
||
|
bool removeFace(const QString &facesDir, const QString &user);
|
||
|
bool installFace(const QString &facesDir, const QString &user, const QString &sourceFile);
|
||
|
bool removeThemes(const QString &themesDir, QStringList &themes);
|
||
|
bool installThemes(const QString &themesDir, QStringList &themes);
|
||
|
|
||
|
ActionReply createReply(int code, const QVariantMap *returnData = 0);
|
||
|
};
|
||
|
|
||
|
#endif // KDM_HELPER_H
|