kde-workspace/powerdevil/kcmodule/profiles/EditPage.h
2014-11-13 19:30:51 +02:00

69 lines
2.4 KiB
C++

/***************************************************************************
* Copyright (C) 2008 by Dario Freddi <drf@kde.org> *
* *
* 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 EDITPAGE_H
#define EDITPAGE_H
#include <KCModule>
#include "ui_profileEditPage.h"
class ActionEditWidget;
namespace PowerDevil {
class ActionConfig;
}
class ErrorOverlay;
class QCheckBox;
class KToolBar;
class EditPage : public KCModule, private Ui_profileEditPage
{
Q_OBJECT
public:
explicit EditPage(QWidget *parent, const QVariantList &args);
~EditPage();
void load();
void save();
virtual void defaults();
private slots:
void onChanged(bool changed);
void restoreDefaultProfiles();
void notifyDaemon(const QStringList &editedProfiles = QStringList());
void openUrl(const QString &url);
void onServiceRegistered(const QString &service);
void onServiceUnregistered(const QString &service);
void checkAndEmitChanged();
private:
KSharedConfig::Ptr m_profilesConfig;
QHash< QString, bool > m_profileEdited;
QWeakPointer< ErrorOverlay > m_errorOverlay;
QHash< QString, ActionEditWidget* > m_editWidgets;
};
#endif /* EDITPAGE_H */