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.
72 lines
2.1 KiB
72 lines
2.1 KiB
/* |
|
* Copyright (C) 2007 Christopher Blauvelt <cblauvelt@gmail.com> |
|
* |
|
* This program is free software; you can redistribute it and/or modify |
|
* it under the terms of the GNU Library General Public License version 2 as |
|
* published by the Free Software Foundation |
|
* |
|
* 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 Library 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. |
|
*/ |
|
|
|
#include "devicesignalmapper.h" |
|
|
|
DeviceSignalMapper::DeviceSignalMapper(QObject *parent) : QSignalMapper(parent) |
|
{ |
|
} |
|
|
|
DeviceSignalMapper::~DeviceSignalMapper() |
|
{ |
|
} |
|
|
|
void DeviceSignalMapper::setMapping(QObject* device, const QString &udi) |
|
{ |
|
signalmap[device] = udi; |
|
} |
|
|
|
BatterySignalMapper::BatterySignalMapper(QObject *parent) : DeviceSignalMapper(parent) |
|
{ |
|
} |
|
|
|
BatterySignalMapper::~BatterySignalMapper() |
|
{ |
|
} |
|
|
|
void BatterySignalMapper::chargePercentChanged(int value) |
|
{ |
|
emit(deviceChanged(signalmap[sender()], QStringLiteral("Charge Percent"), value)); |
|
} |
|
|
|
void BatterySignalMapper::chargeStateChanged(int newState) |
|
{ |
|
QStringList chargestate; |
|
chargestate << QStringLiteral("Fully Charged") << QStringLiteral("Charging") << QStringLiteral("Discharging"); |
|
emit(deviceChanged(signalmap[sender()], QStringLiteral("Charge State"), chargestate.at(newState))); |
|
} |
|
|
|
void BatterySignalMapper::presentStateChanged(bool newState) |
|
{ |
|
emit(deviceChanged(signalmap[sender()], QStringLiteral("Plugged In"), newState)); |
|
} |
|
|
|
StorageAccessSignalMapper::StorageAccessSignalMapper(QObject *parent) : DeviceSignalMapper(parent) |
|
{ |
|
} |
|
|
|
StorageAccessSignalMapper::~StorageAccessSignalMapper() |
|
{ |
|
} |
|
|
|
void StorageAccessSignalMapper::accessibilityChanged(bool accessible) |
|
{ |
|
emit(deviceChanged(signalmap[sender()], QStringLiteral("Accessible"), accessible)); |
|
} |
|
|
|
|
|
|