You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
226 lines
6.2 KiB
226 lines
6.2 KiB
/* BEGIN_COMMON_COPYRIGHT_HEADER
|
|
* (c)LGPL2+
|
|
*
|
|
* LXDE-Qt - a lightweight, Qt based, desktop toolset
|
|
*
|
|
* Authors:
|
|
* Christian Surlykke <christian@surlykke.dk>
|
|
*
|
|
* This program or 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) any later version.
|
|
*
|
|
* 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, write to the
|
|
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301 USA
|
|
*
|
|
* END_COMMON_COPYRIGHT_HEADER */
|
|
|
|
#include <QDebug>
|
|
|
|
#include <LXQt/Power>
|
|
|
|
#include "powermanagementsettings.h"
|
|
|
|
namespace PowerManagementSettingsConstants
|
|
{
|
|
const QString RUN_CHECK_LEVEL = "runCheckLevel";
|
|
const QString ENABLE_BATTERY_WATCHER_KEY = "enableBatteryWatcher";
|
|
const QString ENABLE_LID_WATCHER_KEY = "enableLidWatcher";
|
|
const QString ENABLE_IDLENESS_WATCHER_KEY = "enableIdlenessWatcher";
|
|
const QString LID_CLOSED_ACTION_KEY = "lidClosedAction";
|
|
const QString LID_CLOSED_AC_ACTION_KEY = "lidClosedAcAction";
|
|
const QString LID_CLOSED_EXT_MON_ACTION_KEY = "lidClosedExtMonAction";
|
|
const QString LID_CLOSED_EXT_MON_AC_ACTION_KEY = "lidClosedExtMonAcAction";
|
|
const QString ENABLE_EXT_MON_LIDCLOSED_ACTIONS_KEY = "enableExtMonLidClosedActions";
|
|
const QString POWER_LOW_ACTION_KEY = "powerLowAction";
|
|
const QString POWER_LOW_WARNING_KEY = "powerLowWarning";
|
|
const QString POWER_LOW_LEVEL_KEY = "powerLowLevel";
|
|
const QString SHOW_ICON_KEY = "showIcon";
|
|
const QString USE_THEME_ICONS_KEY = "useThemeIcons";
|
|
const QString IDLENESS_ACTION_KEY = "idlenessAction";
|
|
const QString IDLENESS_TIME_SECS_KEY = "idlenessTimeSecs";
|
|
}
|
|
|
|
using namespace PowerManagementSettingsConstants;
|
|
|
|
PowerManagementSettings::PowerManagementSettings(QObject* parent) : LXQt::Settings("lxqt-powermanagement")
|
|
{
|
|
}
|
|
|
|
PowerManagementSettings::~PowerManagementSettings()
|
|
{
|
|
}
|
|
|
|
int PowerManagementSettings::getRunCheckLevel()
|
|
{
|
|
return value(RUN_CHECK_LEVEL, 0).toInt();
|
|
}
|
|
|
|
void PowerManagementSettings::setRunCheckLevel(int newLevel)
|
|
{
|
|
setValue(RUN_CHECK_LEVEL, newLevel);
|
|
}
|
|
|
|
bool PowerManagementSettings::isBatteryWatcherEnabled()
|
|
{
|
|
return value(ENABLE_BATTERY_WATCHER_KEY, true).toBool();
|
|
}
|
|
|
|
void PowerManagementSettings::setBatteryWatcherEnabled(bool batteryWatcherEnabled)
|
|
{
|
|
setValue(ENABLE_BATTERY_WATCHER_KEY, batteryWatcherEnabled);
|
|
}
|
|
|
|
int PowerManagementSettings::getPowerLowAction()
|
|
{
|
|
return value(POWER_LOW_ACTION_KEY, 0).toInt();
|
|
}
|
|
|
|
void PowerManagementSettings::setPowerLowAction(int powerLowAction)
|
|
{
|
|
setValue(POWER_LOW_ACTION_KEY, powerLowAction);
|
|
}
|
|
|
|
int PowerManagementSettings::getPowerLowLevel()
|
|
{
|
|
return value(POWER_LOW_LEVEL_KEY, 5).toInt();
|
|
}
|
|
|
|
void PowerManagementSettings::setPowerLowLevel(int powerLowLevel)
|
|
{
|
|
setValue(POWER_LOW_LEVEL_KEY, powerLowLevel);
|
|
}
|
|
|
|
int PowerManagementSettings::getPowerLowWarningTime()
|
|
{
|
|
return value(POWER_LOW_WARNING_KEY, 30).toInt();
|
|
}
|
|
|
|
void PowerManagementSettings::setPowerLowWarningTime(int powerLowWarningTime)
|
|
{
|
|
setValue(POWER_LOW_WARNING_KEY, powerLowWarningTime);
|
|
}
|
|
|
|
bool PowerManagementSettings::isShowIcon()
|
|
{
|
|
return value(SHOW_ICON_KEY, true).toBool();
|
|
}
|
|
|
|
void PowerManagementSettings::setShowIcon(bool showIcon)
|
|
{
|
|
setValue(SHOW_ICON_KEY, showIcon);
|
|
}
|
|
|
|
bool PowerManagementSettings::isUseThemeIcons()
|
|
{
|
|
return value(USE_THEME_ICONS_KEY, false).toBool();
|
|
}
|
|
|
|
void PowerManagementSettings::setUseThemeIcons(bool useThemeIcons)
|
|
{
|
|
setValue(USE_THEME_ICONS_KEY, useThemeIcons);
|
|
}
|
|
|
|
bool PowerManagementSettings::isLidWatcherEnabled()
|
|
{
|
|
return value(ENABLE_LID_WATCHER_KEY, true).toBool();
|
|
}
|
|
|
|
void PowerManagementSettings::setLidWatcherEnabled(bool lidWatcherEnabled)
|
|
{
|
|
setValue(ENABLE_LID_WATCHER_KEY, lidWatcherEnabled);
|
|
}
|
|
|
|
int PowerManagementSettings::getLidClosedAcAction()
|
|
{
|
|
return value(LID_CLOSED_AC_ACTION_KEY, 0).toInt();
|
|
}
|
|
|
|
void PowerManagementSettings::setLidClosedAcAction(int lidClosedAcAction)
|
|
{
|
|
setValue(LID_CLOSED_AC_ACTION_KEY, lidClosedAcAction);
|
|
}
|
|
|
|
int PowerManagementSettings::getLidClosedAction()
|
|
{
|
|
return value(LID_CLOSED_ACTION_KEY, 0).toInt();
|
|
}
|
|
|
|
void PowerManagementSettings::setLidClosedAction(int lidClosedAction)
|
|
{
|
|
setValue(LID_CLOSED_ACTION_KEY, lidClosedAction);
|
|
}
|
|
|
|
int PowerManagementSettings::getLidClosedExtMonAcAction()
|
|
{
|
|
return value(LID_CLOSED_EXT_MON_AC_ACTION_KEY, 0).toInt();
|
|
}
|
|
|
|
void PowerManagementSettings::setLidClosedExtMonAcAction(int lidClosedExtMonAcAction)
|
|
{
|
|
setValue(LID_CLOSED_EXT_MON_AC_ACTION_KEY, lidClosedExtMonAcAction);
|
|
}
|
|
|
|
int PowerManagementSettings::getLidClosedExtMonAction()
|
|
{
|
|
return value(LID_CLOSED_EXT_MON_ACTION_KEY, 0).toInt();
|
|
}
|
|
|
|
void PowerManagementSettings::setLidClosedExtMonAction(int lidClosedExtMonAction)
|
|
{
|
|
setValue(LID_CLOSED_EXT_MON_ACTION_KEY, lidClosedExtMonAction);
|
|
}
|
|
|
|
bool PowerManagementSettings::isEnableExtMonLidClosedActions()
|
|
{
|
|
return value(ENABLE_EXT_MON_LIDCLOSED_ACTIONS_KEY, 0).toBool();
|
|
}
|
|
|
|
void PowerManagementSettings::setEnableExtMonLidClosedActions(bool enableExtMonLidClosedActions)
|
|
{
|
|
setValue(ENABLE_EXT_MON_LIDCLOSED_ACTIONS_KEY, enableExtMonLidClosedActions);
|
|
}
|
|
|
|
int PowerManagementSettings::getIdlenessAction()
|
|
{
|
|
// default to nothing (-1)
|
|
return value(IDLENESS_ACTION_KEY, -1).toInt();
|
|
}
|
|
|
|
void PowerManagementSettings::setIdlenessAction(int idlenessAction)
|
|
{
|
|
setValue(IDLENESS_ACTION_KEY, idlenessAction);
|
|
}
|
|
|
|
int PowerManagementSettings::getIdlenessTimeSecs()
|
|
{
|
|
// default to 15 minutes
|
|
return value(IDLENESS_TIME_SECS_KEY, 900).toInt();
|
|
}
|
|
|
|
void PowerManagementSettings::setIdlenessTimeSecs(int idlenessTimeSecs)
|
|
{
|
|
setValue(IDLENESS_TIME_SECS_KEY, idlenessTimeSecs);
|
|
}
|
|
|
|
|
|
bool PowerManagementSettings::isIdlenessWatcherEnabled()
|
|
{
|
|
return value(ENABLE_IDLENESS_WATCHER_KEY, false).toBool();
|
|
}
|
|
|
|
void PowerManagementSettings::setIdlenessWatcherEnabled(bool idlenessWatcherEnabled)
|
|
{
|
|
setValue(ENABLE_IDLENESS_WATCHER_KEY, idlenessWatcherEnabled);
|
|
}
|
|
|
|
|