/usr/include/solid/powermanagement.h is in kdelibs5-dev 4:4.14.2-5+deb8u2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | /*
Copyright 2006-2007 Kevin Ottens <ervin@kde.org>
Copyright 2013 Lukas Tinkl <ltinkl@redhat.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) version 3, or any
later version accepted by the membership of KDE e.V. (or its
successor approved by the membership of KDE e.V.), which shall
act as a proxy defined in Section 6 of version 3 of the license.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef SOLID_POWERMANAGEMENT_H
#define SOLID_POWERMANAGEMENT_H
#include <QtCore/QObject>
#include <QtCore/QSet>
#include <solid/solid_export.h>
namespace Solid
{
/**
* This namespace allows to query the underlying system to obtain information
* about the hardware available.
*
* It is the single entry point for power management. Applications should use
* it to control or query the power management features of the system.
*
* Note that it's implemented as a singleton and encapsulates the backend logic.
*
* @author Kevin Ottens <ervin@kde.org>
*/
namespace PowerManagement
{
/**
* This enum type defines the different suspend methods.
*
* - StandbyState: Processes are stopped, some hardware is deactivated (ACPI S1)
* - SuspendState: Most devices are deactivated, only RAM is powered (ACPI S3)
* - HibernateState: State of the machine is saved to disk, and the machine is powered down (ACPI S4)
* - HybridSleepState: The contents of RAM are first copied to non-volatile storage like for regular hibernation,
* but then, instead of powering down, the computer enters sleep mode
*/
enum SleepState { StandbyState = 1, SuspendState = 2, HibernateState = 4,
/// @since 4.11
HybridSuspendState = 8 };
/**
* Retrieves a high level indication of how applications should behave according to the
* power management subsystem. For example, when on battery power, this method will return
* true.
*
* @return whether apps should conserve power
*/
SOLID_EXPORT bool appShouldConserveResources();
/**
* Retrieves the set of suspend methods supported by the system.
*
* @return the suspend methods supported by this system
* @see Solid::PowerManagement::SleepState
*/
SOLID_EXPORT QSet<SleepState> supportedSleepStates();
/**
* Requests that the system go to sleep
*
* @param state the sleep state use
* @param receiver the object to call a slot on once the operation completes
* @param member the slot to call
*/
SOLID_EXPORT void requestSleep(SleepState state, QObject *receiver, const char *member);
/**
* Tell the power management subsystem to suppress automatic system sleep until further
* notice.
*
* @param reason Give a reason for not allowing sleep, to be used in giving user feedback
* about why a sleep event was prevented
* @return a 'cookie' value representing the suppression request. Used by the power manager to
* track the application's outstanding suppression requests. Returns -1 if the request was
* denied.
*/
SOLID_EXPORT int beginSuppressingSleep(const QString &reason = QString());
/**
* Tell the power management that a particular sleep suppression is no longer needed. When
* no more suppressions are active, the system will be free to sleep automatically
* @param cookie The cookie acquired when requesting sleep suppression
* @return true if the suppression was stopped, false if an invalid cookie was given
*/
SOLID_EXPORT bool stopSuppressingSleep(int cookie);
/**
* Tell the power management subsystem to suppress automatic screen power management until
* further notice.
*
* @param reason Give a reason for not allowing screen power management, to be used in giving user feedback
* about why a screen power management event was prevented
* @return a 'cookie' value representing the suppression request. Used by the power manager to
* track the application's outstanding suppression requests. Returns -1 if the request was
* denied.
*
* @since 4.6
*/
SOLID_EXPORT int beginSuppressingScreenPowerManagement(const QString &reason = QString());
/**
* Tell the power management that a particular screen power management suppression is no longer needed. When
* no more suppressions are active, the system will be free to handle screen power management automatically
* @param cookie The cookie acquired when requesting screen power management suppression
* @return true if the suppression was stopped, false if an invalid cookie was given
*
* @note Since 4.8, this function also inhibits screensaver
*
* @since 4.6
*/
SOLID_EXPORT bool stopSuppressingScreenPowerManagement(int cookie);
class SOLID_EXPORT Notifier : public QObject
{
Q_OBJECT
Q_SIGNALS:
/**
* This signal is emitted when the AC adapter is plugged or unplugged.
*
* @param newState whether the system runs on battery
*/
void appShouldConserveResourcesChanged(bool newState);
/**
* This signal is emitted whenever the system is resuming from suspend. Applications should connect
* to this signal to perform actions due after a wake up (such as updating clocks, etc.).
*
* @since 4.7
*/
void resumingFromSuspend();
protected:
Notifier();
};
SOLID_EXPORT Notifier *notifier();
}
}
#endif
|