kde-workspace/powerdevil/daemon/powerdevilcore.h

132 lines
4.3 KiB
C++

/***************************************************************************
* Copyright (C) 2010 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 POWERDEVILCORE_H
#define POWERDEVILCORE_H
#include "powerdevilbackendinterface.h"
#include <QtCore/qsharedpointer.h>
#include <QtCore/QStringList>
#include <KComponentData>
typedef QMap< QString, QString > StringStringMap;
class KDirWatch;
class QTimer;
class KNotification;
namespace Solid {
class Battery;
}
namespace PowerDevil
{
class BackendInterface;
class Action;
class KDE_EXPORT Core : public QObject
{
Q_OBJECT
Q_DISABLE_COPY(Core)
Q_CLASSINFO("D-Bus Interface", "org.kde.Solid.PowerManagement")
public:
explicit Core(QObject* parent, const KComponentData &componentData);
virtual ~Core();
void reloadProfile(int state);
void emitNotification(const QString &evid, const QString &message = QString(),
const QString &iconname = QString());
void emitRichNotification(const QString &evid, const QString &title, const QString &message = QString());
bool emitBatteryChargePercentNotification(int currentPercent, int previousPercent);
BackendInterface *backend();
// More...
public Q_SLOTS:
void loadCore(PowerDevil::BackendInterface *backend);
// Set of common action - useful for the DBus interface
uint backendCapabilities();
void refreshStatus();
void reparseConfiguration();
QString checkBatteryStatus(bool notify = true);
void loadProfile(bool force = false);
qulonglong batteryRemainingTime() const;
bool isLidClosed();
bool isActionSupported(const QString &actionName);
Q_SIGNALS:
void coreReady();
void profileChanged(const QString &newProfile);
void configurationReloaded();
void batteryRemainingTimeChanged(qulonglong time);
private:
void registerActionTimeout(Action *action, int timeout);
void unregisterActionTimeouts(Action *action);
friend class Action;
BackendInterface *m_backend;
QStringList m_loadedBatteriesUdi;
QWeakPointer< KNotification > notification;
KComponentData m_applicationData;
KSharedConfigPtr m_profilesConfig;
QString m_currentProfile;
QHash< QString, int > m_batteriesPercent;
QHash< QString, bool > m_batteriesCharged;
QTimer *m_criticalBatteryTimer;
// Idle time management
QHash< Action*, QList< int > > m_registeredActionTimeouts;
QList< Action* > m_pendingResumeFromIdleActions;
bool m_pendingWakeupEvent;
private Q_SLOTS:
void onBackendReady();
void onBackendError(const QString &error);
void onAcAdapterStateChanged(PowerDevil::BackendInterface::AcAdapterState);
void onBatteryChargePercentChanged(int,const QString&);
void onBatteryChargeStateChanged(int,const QString&);
void onBatteryRemainingTimeChanged(qulonglong);
void onKIdleTimeoutReached(int,int);
void onResumingFromIdle();
void onDeviceAdded(const QString &udi);
void onDeviceRemoved(const QString &udi);
void onCriticalBatteryTimerExpired();
};
}
Q_DECLARE_METATYPE(StringStringMap)
#endif // POWERDEVILCORE_H