2018-01-17 11:45:16 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013 ~ 2018 National University of Defense Technology(NUDT) & Tianjin Kylin Ltd.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Kobe Lee xiangli@ubuntukylin.com/kobe24_lixiang@126.com
|
|
|
|
*
|
|
|
|
* 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; version 3.
|
|
|
|
*
|
|
|
|
* 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, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "dataworker.h"
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
#include <QTimer>
|
|
|
|
#include <QApplication>
|
|
|
|
|
|
|
|
#include "../component/threadpool.h"
|
|
|
|
#include "../dbusproxy/youkersessiondbus.h"
|
|
|
|
#include "../dbusproxy/youkersystemdbus.h"
|
|
|
|
|
|
|
|
DataWorker::DataWorker(QString desk, QObject *parent)
|
|
|
|
: QObject(parent)
|
|
|
|
, desktop(desk)
|
|
|
|
{
|
|
|
|
m_sensorTimer = new QTimer(this);
|
|
|
|
connect(m_sensorTimer, SIGNAL(timeout()), this, SLOT(updateSensorValue()));
|
|
|
|
}
|
|
|
|
|
|
|
|
DataWorker::~DataWorker()
|
|
|
|
{
|
|
|
|
if (m_sensorTimer) {
|
|
|
|
disconnect(m_sensorTimer,SIGNAL(timeout()),this,SLOT(updateSensorValue()));
|
|
|
|
if(m_sensorTimer->isActive()) {
|
|
|
|
m_sensorTimer->stop();
|
|
|
|
}
|
|
|
|
delete m_sensorTimer;
|
|
|
|
m_sensorTimer = nullptr;
|
|
|
|
}
|
|
|
|
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->deleteLater();
|
|
|
|
m_systemInterface->deleteLater();
|
|
|
|
m_qSystemDbus->deleteLater();
|
|
|
|
|
|
|
|
if (m_powerIface) {//m_powerIface->deleteLater()
|
|
|
|
delete m_powerIface;
|
|
|
|
m_powerIface = nullptr;
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::initDataWorker()
|
|
|
|
{
|
|
|
|
//power dbus
|
2018-02-04 21:25:17 +08:00
|
|
|
m_powerIface = new QDBusInterface("org.gnome.SettingsDaemon",
|
2018-01-17 11:45:16 +08:00
|
|
|
"/org/gnome/SettingsDaemon/Power",
|
|
|
|
"org.gnome.SettingsDaemon.Power.Screen",
|
|
|
|
QDBusConnection::sessionBus());
|
|
|
|
//session dbus
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface = new SessionDispatcher;
|
|
|
|
ThreadPool::Instance()->moveObjectToThread(m_sessionInterface);
|
|
|
|
this->m_existBattery = m_sessionInterface->judge_power_is_exists_qt();
|
2018-01-30 17:09:06 +08:00
|
|
|
|
2018-02-04 21:25:17 +08:00
|
|
|
connect(m_sessionInterface, SIGNAL(string_value_notify(QString,QString)), this, SIGNAL(string_value_notify(QString,QString)));
|
|
|
|
connect(m_sessionInterface, SIGNAL(bool_value_notify(QString,bool)), this, SIGNAL(bool_value_notify(QString,bool)));
|
|
|
|
connect(m_sessionInterface, SIGNAL(int_value_notify(QString,int)), this, SIGNAL(int_value_notify(QString,int)));
|
|
|
|
connect(m_sessionInterface, SIGNAL(double_value_notify(QString, double)), this, SIGNAL(double_value_notify(QString, double)));
|
2018-01-17 11:45:16 +08:00
|
|
|
|
2018-02-04 21:25:17 +08:00
|
|
|
connect(m_sessionInterface, SIGNAL(isScanning(QString)), this, SIGNAL(isScanning(QString)));
|
|
|
|
connect(m_sessionInterface, SIGNAL(finishScanWork(QString)), this, SIGNAL(finishScanWork(QString)));
|
|
|
|
connect(m_sessionInterface, SIGNAL(tellScanResult(QString,QString)), this, SIGNAL(tellScanResult(QString,QString)));
|
2018-01-17 11:45:16 +08:00
|
|
|
|
2018-02-04 21:25:17 +08:00
|
|
|
connect(m_sessionInterface, SIGNAL(tellCleanerDetailStatus(QString)), this, SIGNAL(tellCleanerDetailStatus(QString)));
|
|
|
|
connect(m_sessionInterface, SIGNAL(tellCleanerDetailError(QString)), this, SIGNAL(tellCleanerDetailError(QString)));
|
|
|
|
connect(m_sessionInterface, SIGNAL(tellCleanerDetailData(QStringList)), this, SIGNAL(tellCleanerDetailData(QStringList)));
|
2018-01-17 11:45:16 +08:00
|
|
|
|
|
|
|
//system dbus
|
2018-02-04 21:25:17 +08:00
|
|
|
m_systemInterface = new SystemDispatcher;
|
|
|
|
ThreadPool::Instance()->moveObjectToThread(m_systemInterface);
|
|
|
|
/*QThread *systemThread = ThreadPool::Instance()->createNewThread();
|
|
|
|
m_systemInterface->moveToThread(systemThread);
|
2018-01-17 11:45:16 +08:00
|
|
|
systemThread->start();*/
|
|
|
|
|
2018-02-04 21:25:17 +08:00
|
|
|
this->m_existSensor = m_systemInterface->judge_sensors_exists_qt();
|
|
|
|
this->m_cpulist = m_systemInterface->get_cpufreq_scaling_governer_list_qt();
|
|
|
|
this->m_currentCpuMode = m_systemInterface->get_current_cpufreq_scaling_governer_qt();
|
|
|
|
|
|
|
|
connect(m_systemInterface, SIGNAL(finishCleanWorkMain(QString)), this, SIGNAL(finishCleanWorkMain(QString)));
|
|
|
|
connect(m_systemInterface, SIGNAL(finishCleanWorkMainError(QString)), this, SIGNAL(finishCleanWorkMainError(QString)));
|
|
|
|
connect(m_systemInterface, SIGNAL(quickCleanProcess(QString,QString)), this, SIGNAL(quickCleanProcess(QString,QString)));
|
2018-01-17 11:45:16 +08:00
|
|
|
|
2018-02-04 21:25:17 +08:00
|
|
|
connect(m_systemInterface, SIGNAL(sendCleanOverSignal()), this, SIGNAL(sendCleanOverSignal()));
|
|
|
|
connect(m_systemInterface, SIGNAL(policykitCleanSignal(bool)), this, SIGNAL(policykitCleanSignal(bool)));
|
|
|
|
connect(m_systemInterface, SIGNAL(tellCleanerMainData(QStringList)), this, SIGNAL(tellCleanerMainData(QStringList)));
|
|
|
|
connect(m_systemInterface, SIGNAL(tellCleanerMainStatus(QString,QString)), this, SIGNAL(tellCleanerMainStatus(QString,QString)));
|
|
|
|
connect(m_systemInterface, SIGNAL(sendCleanErrorSignal(QString)), this, SIGNAL(sendCleanErrorSignal(QString)));
|
2018-01-17 11:45:16 +08:00
|
|
|
|
2018-02-04 21:25:17 +08:00
|
|
|
m_qSystemDbus = new SystemDbusProxy;
|
|
|
|
ThreadPool::Instance()->moveObjectToThread(m_qSystemDbus);
|
|
|
|
connect(m_qSystemDbus, &SystemDbusProxy::reportAlert, this, [ = ](int ret, const QString &description) {
|
2018-02-08 06:51:56 +08:00
|
|
|
//qDebug() <<"ret="<<ret<<",description="<<description;
|
2018-02-04 21:25:17 +08:00
|
|
|
});
|
2018-02-08 06:51:56 +08:00
|
|
|
//qDebug() << "m_qSystemDbus->demoInfo()===="<<m_qSystemDbus->demoInfo();
|
|
|
|
//qDebug() << m_qSystemDbus->getCustomData().hash;
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::doWork()
|
|
|
|
{
|
|
|
|
this->initDataWorker();
|
|
|
|
emit dataLoadFinished();
|
|
|
|
}
|
|
|
|
|
2018-01-30 17:09:06 +08:00
|
|
|
const QStringList DataWorker::cpuModeList() const
|
|
|
|
{
|
|
|
|
return this->m_cpulist;
|
|
|
|
}
|
|
|
|
|
|
|
|
const QString DataWorker::cpuCurrentMode() const
|
|
|
|
{
|
|
|
|
return this->m_currentCpuMode;
|
|
|
|
}
|
|
|
|
|
2018-01-17 11:45:16 +08:00
|
|
|
bool DataWorker::deleteAppointedFile(QString filename)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
bool result = m_systemInterface->delete_file_qt(filename);
|
2018-01-17 11:45:16 +08:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DataWorker::copyAppointedFile(QString filename)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
bool result = m_systemInterface->copy_file_qt(filename);
|
2018-01-17 11:45:16 +08:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-02-08 16:55:58 +08:00
|
|
|
|
|
|
|
//---------------scan on homepage
|
|
|
|
void DataWorker::onStartOneKeyScan(const QStringList &categorys)
|
|
|
|
{
|
|
|
|
m_sessionInterface->onekey_scan_function_qt(categorys);
|
2018-02-09 10:49:40 +08:00
|
|
|
// QCoreApplication::processEvents();
|
2018-02-08 16:55:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------clean on homepage
|
|
|
|
void DataWorker::onStartOneKeyClean()
|
|
|
|
{
|
|
|
|
m_systemInterface->set_user_homedir_qt();
|
|
|
|
m_systemInterface->clean_by_main_one_key_qt();
|
|
|
|
}
|
|
|
|
|
2018-01-17 11:45:16 +08:00
|
|
|
//---------------scan
|
|
|
|
void DataWorker::onStartScanSystem(QMap<QString, QVariant> itemsMap)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->scanSystemCleanerItems(itemsMap);
|
2018-02-09 10:49:40 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// QEventLoop loop;
|
|
|
|
// MyThread *t = new MyThread(0,QString("aaa"));
|
|
|
|
// connect(t, SIGNAL(finished()), &loop, SLOT(quit()));
|
|
|
|
// t->start();
|
|
|
|
// loop.exec();
|
|
|
|
// int i = t->getMyThreadResult();
|
|
|
|
// if(i == 0)//success
|
|
|
|
// {
|
|
|
|
// return true;
|
|
|
|
// }else
|
|
|
|
// {
|
|
|
|
// return false;
|
|
|
|
// }
|
|
|
|
// delete t;
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//-------------clean
|
|
|
|
void DataWorker::onStartCleanSystem(QMap<QString, QVariant> itemsMap)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_systemInterface->set_user_homedir_qt();
|
|
|
|
m_systemInterface->cleanAllSelectItems(itemsMap);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//system info
|
|
|
|
void DataWorker::onUpdateSystemRunnedTime()
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
int time_value = m_systemInterface->get_time_value_qt().toInt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit sendSystemRunnedTime(time_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onRequestRefreshSystemInfo()
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
QMap<QString, QVariant> tmpMap = m_systemInterface->get_computer_info_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
// qDebug() << "==================sys tmpMap="<<tmpMap;
|
|
|
|
emit sendSystemInfo(tmpMap);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//desktop info
|
|
|
|
void DataWorker::onRequestDesktopInfo()
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
QMap<QString, QVariant> tmpMap = m_sessionInterface->get_system_message_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit sendDesktopInfo(tmpMap);
|
|
|
|
}
|
|
|
|
|
|
|
|
//cpu info
|
|
|
|
void DataWorker::onRequestCpuInfo()
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
QMap<QString, QVariant> tmpMap = m_systemInterface->get_cpu_info_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit sendCpuInfo(tmpMap);
|
|
|
|
}
|
|
|
|
|
|
|
|
//memory info
|
|
|
|
void DataWorker::onRequestMemoryInfo()
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
QMap<QString, QVariant> tmpMap = m_systemInterface->get_memory_info_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit sendMemoryInfo(tmpMap);
|
|
|
|
}
|
|
|
|
|
|
|
|
//board info
|
|
|
|
void DataWorker::onRequestBoardInfo()
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
QMap<QString, QVariant> tmpMap = m_systemInterface->get_board_info_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit sendBoardInfo(tmpMap);
|
|
|
|
}
|
|
|
|
|
|
|
|
//hd info
|
|
|
|
void DataWorker::onRequestHDInfo()
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
QMap<QString, QVariant> tmpMap = m_systemInterface->get_harddisk_info_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit sendHDInfo(tmpMap);
|
|
|
|
}
|
|
|
|
|
|
|
|
//nic info
|
|
|
|
void DataWorker::onRequestNicInfo()
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
QMap<QString, QVariant> tmpMap = m_systemInterface->get_networkcard_info_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit sendNicInfo(tmpMap);
|
|
|
|
}
|
|
|
|
|
|
|
|
//monitor info
|
|
|
|
void DataWorker::onRequestMonitorInfo()
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
QMap<QString, QVariant> tmpMap = m_systemInterface->get_monitor_info_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit sendMonitorInfo(tmpMap);
|
|
|
|
}
|
|
|
|
|
|
|
|
//audio info
|
|
|
|
void DataWorker::onRequestAudioInfo()
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
QMap<QString, QVariant> tmpMap = m_systemInterface->get_audiocard_info_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit sendAudioInfo(tmpMap);
|
|
|
|
}
|
|
|
|
|
|
|
|
//battery info
|
|
|
|
void DataWorker::onRequestBatteryInfo()
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
QMap<QString, QVariant> tmpMap = m_sessionInterface->read_battery_info_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit sendBatteryInfo(tmpMap);
|
|
|
|
}
|
|
|
|
|
|
|
|
//sensor info
|
|
|
|
void DataWorker::onRequestSensorInfo()
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
QMap<QString, QVariant> tmpMap = m_systemInterface->get_sensor_info_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit sendSensorInfo(tmpMap);
|
|
|
|
if (m_sensorTimer && !m_sensorTimer->isActive())
|
|
|
|
m_sensorTimer->start(1000*4);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::updateSensorValue()
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
QMap<QString, QVariant> tmpMap = m_systemInterface->get_sensor_info_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit sendSensorInfo(tmpMap);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//--------------------theme
|
|
|
|
void DataWorker::onRequestThemeData()
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
QString currentTheme = m_sessionInterface->get_theme_qt();
|
|
|
|
QStringList themeList = m_sessionInterface->get_themes_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
|
|
|
|
emit this->sendThemeList(currentTheme, themeList);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onChangeSystemTheme(const QString &theme)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_theme_qt(theme);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------icon
|
|
|
|
void DataWorker::onRequestIconData()
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
QString current_icon_theme = m_sessionInterface->get_icon_theme_qt();
|
|
|
|
QStringList iconlist = m_sessionInterface->get_icon_themes_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit this->sendIconThemeList(current_icon_theme, iconlist);
|
|
|
|
|
2018-02-04 21:25:17 +08:00
|
|
|
bool computer = m_sessionInterface->get_show_computer_qt();
|
|
|
|
bool folder = m_sessionInterface->get_show_homefolder_qt();
|
|
|
|
bool network = m_sessionInterface->get_show_network_qt();
|
|
|
|
bool recycle = m_sessionInterface->get_show_trash_qt();
|
|
|
|
bool disk = m_sessionInterface->get_show_devices_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit this->sendDisplayIconValue(computer, folder, network, recycle, disk);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetIconTheme(const QString &theme)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_icon_theme_qt(theme);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onDisplayComputerIcon(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_show_computer_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onDisplayFolderIcon(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_show_homefolder_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onDisplayNetworkIcon(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_show_network_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onDisplayRecycleBinIcon(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_show_trash_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onDisplayDiskIcon(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_show_devices_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//---------------mouse
|
|
|
|
void DataWorker::onRequestMouseData()
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
QString current_cursor_theme = m_sessionInterface->get_cursor_theme_qt();
|
|
|
|
int default_cursor_value = m_sessionInterface->get_cursor_size_qt();
|
|
|
|
QStringList themeList = m_sessionInterface->get_cursor_themes_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit this->sendMouseThemeAndCusorSize(current_cursor_theme, themeList, default_cursor_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetMouseCursorTheme(const QString &theme)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_cursor_theme_qt(theme);
|
|
|
|
m_systemInterface->set_cursor_theme_with_root_qt(theme);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void DataWorker::onResetMouseCursorSize(int cursorSize)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_cursor_size_qt(cursorSize);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//---------------voice
|
|
|
|
void DataWorker::onRequestSoundData()
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
QString current_sound = m_sessionInterface->get_sound_theme_qt();
|
|
|
|
QStringList soundlist = m_systemInterface->get_sound_themes_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
|
2018-01-22 12:18:09 +08:00
|
|
|
emit this->sendSoundList(current_sound, soundlist);
|
2018-01-17 11:45:16 +08:00
|
|
|
|
2018-02-04 21:25:17 +08:00
|
|
|
bool login_music = m_sessionInterface->get_login_music_enable_qt();
|
|
|
|
bool sound_event = m_sessionInterface->get_sound_event_enable_qt();
|
|
|
|
bool input_sound = m_sessionInterface->get_input_feedback_sounds_enable_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
|
|
|
|
emit this->sendEnableSoundValue(login_music, sound_event, input_sound);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetVoiceTheme(QString selectTheme)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_sound_theme_qt(selectTheme);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetLoginTipVoice(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_login_music_enable_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetEventVoice(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_sound_event_enable_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetInputFeedbackVoice(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_input_feedback_sounds_enable_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//----------------panel
|
|
|
|
void DataWorker::onRequestMateOrUnityPanelData(bool isMate)
|
|
|
|
{
|
|
|
|
if (isMate) {
|
2018-02-04 21:25:17 +08:00
|
|
|
bool app = m_sessionInterface->get_show_apps_qt();
|
|
|
|
bool showDesktop = m_sessionInterface->get_show_desktop_qt();
|
|
|
|
bool icon = m_sessionInterface->get_show_icon_qt();
|
|
|
|
bool places = m_sessionInterface->get_show_places_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit this->sendMatePanelValue(app, showDesktop, icon, places);
|
|
|
|
}
|
|
|
|
else {
|
2018-02-04 21:25:17 +08:00
|
|
|
int blur = m_sessionInterface->get_dash_blur_experimental_qt();
|
|
|
|
double transparent = m_sessionInterface->get_panel_transparency_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit this->sendUnityBlurAndTransparencyValue(blur, transparent);
|
|
|
|
|
2018-02-04 21:25:17 +08:00
|
|
|
QString time_format = m_sessionInterface->get_time_format_qt();
|
|
|
|
QStringList timelist = m_sessionInterface->get_all_time_format_qt();
|
|
|
|
bool showSecond = m_sessionInterface->get_show_seconds_qt();
|
|
|
|
bool showWeek = m_sessionInterface->get_show_week_qt();
|
|
|
|
bool showDate = m_sessionInterface->get_show_date_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit this->sendUnityTimeValue(time_format, timelist, showSecond, showWeek, showDate);
|
|
|
|
|
2018-02-04 21:25:17 +08:00
|
|
|
QString cur_power = m_sessionInterface->get_power_icon_policy_qt();
|
|
|
|
QStringList powerlist = m_sessionInterface->get_all_power_icon_policy_qt();
|
|
|
|
bool showPower = m_sessionInterface->get_show_power_percentage_qt();
|
|
|
|
bool showBatteryTime = m_sessionInterface->get_show_power_time_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit this->sendUnityPanelPowerValue(cur_power, powerlist, showPower, showBatteryTime);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetPanelTransparencyValue(double value)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_panel_transparency_qt(value);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetDateFormat(const QString &selected)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_time_format_qt(selected);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetShowBatteryIcon(const QString &selected)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_power_icon_policy_qt(selected);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetDashBlurExperimental(int value)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_dash_blur_experimental_qt(value);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetDisplaySeconds(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_show_seconds_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetDisplayWeek(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_show_week_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetDisplayDate(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_show_date_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetDisplayBatteryPercentage(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_show_power_percentage_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetDisplayBatteryTime(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_show_power_time_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetShowApplications(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_show_apps_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetShowDesktop(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_show_desktop_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetShowIcon(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_show_icon_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetShowPlaces(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_show_places_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------launcher menu
|
|
|
|
void DataWorker::onRequestMateOrUnityMenuData(bool isMate)
|
|
|
|
{
|
|
|
|
if (isMate) {
|
2018-02-04 21:25:17 +08:00
|
|
|
int topIconSize = m_sessionInterface->get_mate_panel_icon_size_qt("top");
|
|
|
|
int bottomIconSize = m_sessionInterface->get_mate_panel_icon_size_qt("bottom");
|
|
|
|
bool topIconHide = m_sessionInterface->get_mate_panel_autohide_qt("top");
|
|
|
|
bool bottomIconHide = m_sessionInterface->get_mate_panel_autohide_qt("bottom");
|
2018-01-17 11:45:16 +08:00
|
|
|
emit this->sendMatePanelIconValue(topIconSize, bottomIconSize, topIconHide, bottomIconHide);
|
|
|
|
}
|
|
|
|
else {
|
2018-02-04 21:25:17 +08:00
|
|
|
int iconSize = m_sessionInterface->get_launcher_icon_size_qt();
|
|
|
|
bool iconHide = m_sessionInterface->get_launcher_autohide_qt();
|
|
|
|
bool desktopIconShowed = m_sessionInterface->get_launcher_have_showdesktopicon_qt();
|
|
|
|
double launcherTransparency = m_sessionInterface->get_launcher_transparency_qt();//TODO:WTF is 0????
|
|
|
|
int iconColourIndex = m_sessionInterface->get_launcher_icon_colouring_qt();
|
|
|
|
QStringList colourlist = m_sessionInterface->get_all_launcher_icon_colourings_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
|
|
|
|
emit this->sendUnityIconValue(iconSize, iconHide, desktopIconShowed, launcherTransparency, iconColourIndex, colourlist);
|
|
|
|
|
2018-02-04 21:25:17 +08:00
|
|
|
QString current_position = m_sessionInterface->get_current_launcher_position_qt();
|
|
|
|
QStringList positionlist = m_sessionInterface->get_all_launcher_position_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
// qDebug() <<"positionlist="<<positionlist;
|
|
|
|
emit this->sendUnityLauncherPosition(current_position, positionlist);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetIconSizeValue(int value)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_launcher_icon_size_qt(value);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetTransparencyValue(int value)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_launcher_transparency_qt(value);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetIconColouring(int value)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_launcher_icon_colouring_qt(value);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetAutoHide(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_launcher_autohide_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetDisplayDesktopIcon(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_launcher_have_showdesktopicon_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetTopIconSizeValue(int value)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_mate_panel_icon_size_qt("top", value);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetBottomIconSizeValue(int value)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_mate_panel_icon_size_qt("bottom", value);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetTopAutoHide(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_mate_panel_autohide_qt("top", b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetBottomAutoHide(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_mate_panel_autohide_qt("bottom", b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetLauncherPosition(const QString &position)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_launcher_position_qt(position);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------window
|
|
|
|
void DataWorker::onRequesetWindowButtonAlign()
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
QString current_value = m_sessionInterface->get_window_button_align_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit this->sendWindowButtonAlign(current_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onRequesetMenusHaveIcons()
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
bool menuHaveIcons = m_sessionInterface->get_menus_have_icons_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit this->sendMenusHaveIcons(menuHaveIcons);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onRequesetWindowTitileTags()
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
QString current_wheel_type = m_sessionInterface->get_current_titlebar_wheel_qt();
|
|
|
|
QStringList wheellist = m_sessionInterface->get_titlebar_wheel_qt();
|
|
|
|
QString current_double_type = m_sessionInterface->get_current_titlebar_double_qt();
|
|
|
|
QStringList titlebarOptions = m_sessionInterface->get_titlebar_options_qt();
|
|
|
|
QString current_middle_type = m_sessionInterface->get_current_titlebar_middle_qt();
|
|
|
|
QString current_right_type = m_sessionInterface->get_current_titlebar_right_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit this->sendWindowTitileTags(current_wheel_type, wheellist, titlebarOptions, current_double_type, current_middle_type, current_right_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetMenusHaveIcon(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_menus_have_icons_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetTitlebarWheel(const QString &selected)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_titlebar_wheel_qt(selected);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetTitlebarDoubleClick(const QString &selected)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_titlebar_double_qt(selected);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetMouseMiddleClick(const QString &selected)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_titlebar_middle_qt(selected);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetMouseRightClick(const QString &selected)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_titlebar_right_qt(selected);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetWindowButtonLeftOrRightAlign(bool isLeft)
|
|
|
|
{
|
|
|
|
if (isLeft)
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_window_button_align_left_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
else
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_window_button_align_right_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------font
|
|
|
|
void DataWorker::onRequestFontData()
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
QString current_font = m_sessionInterface->get_font_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit sendFontValue(current_font);
|
|
|
|
|
2018-02-04 21:25:17 +08:00
|
|
|
QString desktop_font = m_sessionInterface->get_desktop_font_qt();
|
2018-02-12 12:20:24 +08:00
|
|
|
if(desktop_font.isEmpty()) {
|
2018-01-17 11:45:16 +08:00
|
|
|
// sessionproxy->set_desktop_font_qt_default();
|
|
|
|
if (this->desktop == "mate" || this->desktop == "MATE" || this->desktop == "UKUI" || this->desktop == "ukui")
|
|
|
|
desktop_font = "Sans 10";
|
|
|
|
else
|
|
|
|
desktop_font = "Ubuntu 11";
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_desktop_font_qt(desktop_font);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
2018-02-04 21:25:17 +08:00
|
|
|
desktop_font = m_sessionInterface->get_desktop_font_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit sendDesktopFontValue(desktop_font);
|
|
|
|
|
2018-02-04 21:25:17 +08:00
|
|
|
QString monospace_font = m_sessionInterface->get_monospace_font_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit sendMonospaceFontValue(monospace_font);
|
|
|
|
|
2018-02-04 21:25:17 +08:00
|
|
|
QString document_font = m_sessionInterface->get_document_font_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit sendDocumentFontValue(document_font);
|
|
|
|
|
2018-02-04 21:25:17 +08:00
|
|
|
QString titlebar_font = m_sessionInterface->get_window_title_font_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit sendTitlebarFontValue(titlebar_font);
|
|
|
|
|
|
|
|
|
|
|
|
double fontZoom = 0.0;
|
|
|
|
if (this->desktop != "mate" || this->desktop == "MATE") {
|
2018-02-04 21:25:17 +08:00
|
|
|
fontZoom = m_sessionInterface->get_font_zoom_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
2018-02-04 21:25:17 +08:00
|
|
|
QString current_smooth = m_sessionInterface->get_smooth_style_qt();
|
|
|
|
QStringList smoothlist = m_sessionInterface->get_smooth_style_list_qt();
|
|
|
|
QString current_antialiasing = m_sessionInterface->get_antialiasing_style_qt();
|
|
|
|
QStringList antialiasinglist = m_sessionInterface->get_antialiasing_style_list_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
emit sendFontSmoothAndAntialiasingValue(fontZoom, current_smooth, smoothlist, current_antialiasing, antialiasinglist);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onSetDefaultFontByName(const QString &cur_font)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_font_qt(cur_font);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onSetDesktopFontByName(const QString &cur_font)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_desktop_font_qt(cur_font);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onSetMonospaceFontByName(const QString &cur_font)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_monospace_font_qt(cur_font);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onSetDocumentFontByName(const QString &cur_font)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_document_font_qt(cur_font);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onSetTitlebarFontByName(const QString &cur_font)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_window_title_font_qt(cur_font);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetFontZoomScalingValue(double value)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_font_zoom_qt(value);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetFontHinting(const QString &selected)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_smooth_style_qt(selected);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetFontAntialiasing(const QString &selected)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_antialiasing_style_qt(selected);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onRestoreDefaultFont(bool isMate)
|
|
|
|
{
|
|
|
|
if (isMate) {
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_default_font_string_qt("org.mate.interface", "font-name", "string");
|
|
|
|
emit sendDesktopFontValue(m_sessionInterface->get_default_font_string_qt("org.mate.interface", "font-name"));
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else {
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_default_font_string_qt("org.gnome.desktop.interface", "font-name", "string");
|
|
|
|
emit sendDesktopFontValue(m_sessionInterface->get_default_font_string_qt("org.gnome.desktop.interface", "font-name"));
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onRestoreDesktopDefaultFont(bool isMate)
|
|
|
|
{
|
|
|
|
if (isMate) {
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_default_font_string_qt("org.mate.caja.desktop", "font", "string");
|
|
|
|
emit sendDesktopFontValue(m_sessionInterface->get_default_font_string_qt("org.mate.caja.desktop", "font"));
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else {
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_default_font_string_qt("org.gnome.nautilus.desktop", "font", "string");
|
|
|
|
emit sendDesktopFontValue(m_sessionInterface->get_default_font_string_qt("org.gnome.nautilus.desktop", "font"));
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onRestoreMonospaceDefaultFont(bool isMate)
|
|
|
|
{
|
|
|
|
if (isMate) {
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_default_font_string_qt("org.mate.interface", "monospace-font-name", "string");
|
|
|
|
emit sendMonospaceFontValue(m_sessionInterface->get_default_font_string_qt("org.mate.interface", "monospace-font-name"));
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else {
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_default_font_string_qt("org.gnome.desktop.interface", "monospace-font-name", "string");
|
|
|
|
emit sendMonospaceFontValue(m_sessionInterface->get_default_font_string_qt("org.gnome.desktop.interface", "monospace-font-name"));
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onRestoreDocumentDefaultFont(bool isMate)
|
|
|
|
{
|
|
|
|
if (isMate) {
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_default_font_string_qt("org.mate.interface", "document-font-name", "string");
|
|
|
|
emit sendDocumentFontValue(m_sessionInterface->get_default_font_string_qt("org.mate.interface", "document-font-name"));
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else {
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_default_font_string_qt("org.gnome.desktop.interface", "document-font-name", "string");
|
|
|
|
emit sendDocumentFontValue(m_sessionInterface->get_default_font_string_qt("org.gnome.desktop.interface", "document-font-name"));
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onRestoreTitlebarDefaultFont(bool isMate)
|
|
|
|
{
|
|
|
|
if (isMate) {
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_default_font_string_qt("org.gnome.desktop.wm.preferences", "titlebar-font", "string");
|
|
|
|
emit sendTitlebarFontValue(m_sessionInterface->get_default_font_string_qt("org.gnome.desktop.wm.preferences", "titlebar-font"));
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else {
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_default_font_string_qt("org.gnome.desktop.wm.preferences", "titlebar-font", "string");
|
|
|
|
emit sendTitlebarFontValue(m_sessionInterface->get_default_font_string_qt("org.gnome.desktop.wm.preferences", "titlebar-font"));
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------touchpad
|
|
|
|
void DataWorker::onRequestMateOrUnityTouchpadData(bool isMate)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
bool touchpadEnable = m_sessionInterface->get_touchpad_enable_qt();
|
|
|
|
bool touchscrollingHorizontal = m_sessionInterface->get_touchscrolling_use_horizontal_qt();
|
|
|
|
QString mode_value = m_sessionInterface->get_scrollbars_mode_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
int scroll_int_value = 0;
|
|
|
|
QString scroll_string_value = "";
|
|
|
|
if (isMate)
|
2018-02-04 21:25:17 +08:00
|
|
|
scroll_int_value = m_sessionInterface->get_mate_touchscrolling_mode_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
else
|
2018-02-04 21:25:17 +08:00
|
|
|
scroll_string_value = m_sessionInterface->get_touchscrolling_mode_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
|
|
|
|
emit sendTouchPadValue(touchpadEnable, touchscrollingHorizontal, mode_value, scroll_int_value, scroll_string_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetTouchpad(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_touchpad_enable_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetHorizontalScrolling(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_touchscrolling_use_horizontal_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onSetScrollbarOverlayOrLegacyMode(bool b)
|
|
|
|
{
|
|
|
|
if (b) {
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_scrollbars_mode_overlay_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else {
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_scrollbars_mode_legacy_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onSetMateTouchscrollingMode(int flag)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_mate_touchscrolling_mode_qt(flag);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onSetUnityTouchscrollingMode(int flag)
|
|
|
|
{
|
|
|
|
if (flag == 0) {
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_touchscrolling_mode_disabled_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (flag == 1) {
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_touchscrolling_mode_edge_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (flag == 2) {
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_touchscrolling_mode_twofinger_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------ac and battery
|
|
|
|
void DataWorker::onRequestPowerAndBatteryData()
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
double gamma = m_sessionInterface->get_screen_gamma_qt();
|
|
|
|
QStringList aclist = m_sessionInterface->get_sleep_timeout_list_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
int brightnessValue = -1;
|
|
|
|
QString sleep_timeout_display_battery = "";
|
|
|
|
QString sleep_timeout_display_ac = "";
|
|
|
|
if (this->desktop == "mate" || this->desktop == "MATE" || this->desktop == "UKUI" || this->desktop == "ukui") {
|
2018-02-04 21:25:17 +08:00
|
|
|
sleep_timeout_display_battery = m_sessionInterface->get_current_sleep_timeout_display_battery_qt();
|
|
|
|
sleep_timeout_display_ac = m_sessionInterface->get_current_sleep_timeout_display_ac_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else {
|
2018-02-04 21:25:17 +08:00
|
|
|
QDBusReply<int> reply = m_powerIface->call("GetPercentage");
|
2018-01-17 11:45:16 +08:00
|
|
|
if (reply.isValid()) {
|
|
|
|
brightnessValue = reply.value();
|
|
|
|
}
|
|
|
|
}
|
2018-02-04 21:25:17 +08:00
|
|
|
QString idle_delay = m_sessionInterface->get_current_idle_delay_qt();
|
|
|
|
QStringList idledelaylist = m_sessionInterface->get_idle_delay_list_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
|
|
|
|
emit sendIdleAndGammaData(gamma, aclist, brightnessValue, sleep_timeout_display_battery, sleep_timeout_display_ac, idle_delay, idledelaylist);
|
|
|
|
|
2018-02-04 21:25:17 +08:00
|
|
|
bool lockEnabled = m_sessionInterface->get_lock_enabled_qt();
|
|
|
|
QString lock_delay = m_sessionInterface->get_current_lock_delay_qt();
|
|
|
|
QStringList lockdelaylist = m_sessionInterface->get_lock_delay_list_qt();
|
|
|
|
QString critical_low = m_sessionInterface->get_current_critical_low_qt();
|
|
|
|
QString laptop_battery = m_sessionInterface->get_current_lid_battery_qt();
|
|
|
|
QString laptop_ac = m_sessionInterface->get_current_lid_ac_qt();
|
|
|
|
QString sleep_timeout_battery = m_sessionInterface->get_current_sleep_timeout_battery_qt();
|
|
|
|
QStringList batterylist = m_sessionInterface->get_sleep_timeout_list_qt();
|
|
|
|
QString sleep_timeout_ac = m_sessionInterface->get_current_sleep_timeout_ac_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
|
|
|
|
emit sendLockAndSleepData(lockEnabled, lock_delay, lockdelaylist, critical_low, laptop_battery, laptop_ac, sleep_timeout_battery, batterylist, sleep_timeout_ac);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetScreenGammaValue(double value)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->adjust_screen_gamma_qt(value);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetBrightnessValue(int value)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_powerIface->call("setPercentage", value);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetIdleDelay(int index, int curValue)
|
|
|
|
{
|
|
|
|
if (index == 0)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_idle_delay_qt(60);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 1)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_idle_delay_qt(120);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 2)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_idle_delay_qt(180);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 3)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_idle_delay_qt(300);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 4)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_idle_delay_qt(600);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 5)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_idle_delay_qt(1800);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 6)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_idle_delay_qt(3600);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 7)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_idle_delay_qt(0);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 8)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_idle_delay_qt(curValue);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetLockEnabled(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_lock_enabled_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetLockDelay(int index, int curValue)
|
|
|
|
{
|
|
|
|
if (index == 0)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_lock_delay_qt(30);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 1)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_lock_delay_qt(60);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 2)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_lock_delay_qt(120);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 3)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_lock_delay_qt(180);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 4)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_lock_delay_qt(300);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 5)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_lock_delay_qt(600);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 6)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_lock_delay_qt(1800);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 7)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_lock_delay_qt(3600);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 8)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_lock_delay_qt(0);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 9)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_lock_delay_qt(curValue);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onSetCurrentCriticalLow(const QString &value)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_critical_low_qt(value);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onSetCurrentLidBattery(const QString &value)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_lid_battery_qt(value);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onSetCurrentLidAC(const QString &value)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_lid_ac_qt(value);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetSleepTimeoutBattery(int index, int value)
|
|
|
|
{
|
|
|
|
if (index == 0)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_battery_qt(300);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 1)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_battery_qt(600);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 2)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_battery_qt(1200);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 3)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_battery_qt(1800);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 4)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_battery_qt(3600);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 5)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_battery_qt(7200);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 6)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_battery_qt(0);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 7)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_battery_qt(value);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetSleepTimeoutAC(int index, int value)
|
|
|
|
{
|
|
|
|
if (index == 0)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_ac_qt(300);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 1)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_ac_qt(600);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 2)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_ac_qt(1200);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 3)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_ac_qt(1800);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 4)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_ac_qt(3600);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 5)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_ac_qt(7200);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 6)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_ac_qt(0);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 7)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_ac_qt(value);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetSleepTimeoutDisplayBattery(int index, int value)
|
|
|
|
{
|
|
|
|
if (index == 0)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_display_battery_qt(300);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 1)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_display_battery_qt(600);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 2)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_display_battery_qt(1200);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 3)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_display_battery_qt(1800);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 4)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_display_battery_qt(3600);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 5)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_display_battery_qt(7200);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 6)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_display_battery_qt(0);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 7)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_display_battery_qt(value);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetSleepTimeoutDisplayAC(int index, int value)
|
|
|
|
{
|
|
|
|
if (index == 0)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_display_ac_qt(300);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 1)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_display_ac_qt(600);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 2)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_display_ac_qt(1200);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 3)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_display_ac_qt(1800);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 4)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_display_ac_qt(3600);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 5)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_display_ac_qt(7200);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 6)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_display_ac_qt(0);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
else if (index == 7)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_current_sleep_timeout_display_ac_qt(value);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-30 17:09:06 +08:00
|
|
|
void DataWorker::onSetCurrentCpuMode(const QString &mode)
|
|
|
|
{
|
|
|
|
// qDebug() << "set cpu mode="<<mode;
|
|
|
|
if(mode == "ondemandradio") {
|
2018-02-04 21:25:17 +08:00
|
|
|
m_systemInterface->adjust_cpufreq_scaling_governer_qt("ondemand");
|
2018-01-30 17:09:06 +08:00
|
|
|
}
|
|
|
|
else if(mode == "powersaveradio") {
|
2018-02-04 21:25:17 +08:00
|
|
|
m_systemInterface->adjust_cpufreq_scaling_governer_qt("powersave");
|
2018-01-30 17:09:06 +08:00
|
|
|
}
|
|
|
|
else if(mode == "performanceradio") {
|
2018-02-04 21:25:17 +08:00
|
|
|
m_systemInterface->adjust_cpufreq_scaling_governer_qt("performance");
|
2018-01-30 17:09:06 +08:00
|
|
|
}
|
|
|
|
}
|
2018-01-17 11:45:16 +08:00
|
|
|
|
|
|
|
|
|
|
|
//-------------------file manager
|
|
|
|
void DataWorker::onRequestFileManagerData()
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
bool locationReplacePathbar = m_sessionInterface->get_location_replace_pathbar_qt();
|
|
|
|
bool autoMountMedia = m_sessionInterface->get_auto_mount_media_qt();
|
|
|
|
bool autoOpenFolder = m_sessionInterface->get_auto_open_folder_qt();
|
|
|
|
bool promptAutorunPrograms = m_sessionInterface->get_prompt_autorun_programs_qt();
|
|
|
|
int thumbnailIconSize = m_sessionInterface->get_thumbnail_icon_size_qt();
|
|
|
|
int thumbnailCacheTime = m_sessionInterface->get_thumbnail_cache_time_qt();
|
|
|
|
int thumbnailCacheSize = m_sessionInterface->get_thumbnail_cache_size_qt();
|
2018-01-17 11:45:16 +08:00
|
|
|
|
|
|
|
emit sendFileManagerData(locationReplacePathbar, autoMountMedia, autoOpenFolder, promptAutorunPrograms, thumbnailIconSize, thumbnailCacheTime, thumbnailCacheSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetLocationReplacePathbar(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_location_replace_pathbar_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetAutoMountMedia(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_auto_mount_media_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetAutoOpenFolder(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_auto_open_folder_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetPromptAutorunPrograms(bool b)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_prompt_autorun_programs_qt(b);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetThumbnailIconSize(int value)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_thumbnail_icon_size_qt(value);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetThumbnailCacheTime(int value)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_thumbnail_cache_time_qt(value);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void DataWorker::onResetThumbnailCacheSize(int value)
|
|
|
|
{
|
2018-02-04 21:25:17 +08:00
|
|
|
m_sessionInterface->set_thumbnail_cache_size_qt(value);
|
2018-01-17 11:45:16 +08:00
|
|
|
}
|