Files
ukui-settings-daemon/plugins/background/background-plugin.cpp
shangxiaoyang-kylin 702686854a Synchronize the master branch code. (#40)
* Fix: The sound icon disappears.
* Feature: Improve the file format after the touchpad function is added.
* Use lrelease-qt5 on openSUSE
* Fix Chinese-English compose type
* Fix library links check
* Fix build on openSUSE, make sure library links check will be success.
* Fix: Shortcut key Sinicization.
* Feature: remove  xcb-proto dependency.
* Drop libdbus-glib-1 from build-depends and daemon.pro, update changelog
* Fix: The touch point do not match when the touch screen is dual screen.
* Feature: Add HDMI 4K display plug-in zoom popup.
* Feature: Organize the overall code format.
* Fix: Modify the shortcut key prompt
* Fix library links (#29)
* Feature (mpris): Adapt kylin-video shortcut keys.
* Feature: Modify the trackpad shortcut key theme icon.
* don't depend xserver-xorg-input-synaptics on s390x.
* Fix: improve the problem of 4K double zoom
* Fix: improve zoom prompt popup
* Fix: the black X problem of GTK small window cursor.
* Feature: Added button monitoring event.
* Fix: Ctrl display mouse position key conflict.
* Fix : Compilation error
* Feature: Improve the shortcut key code.
* Fix: some shortcut key issues.
2021-01-21 15:10:27 +08:00

64 lines
1.6 KiB
C++

/* -*- Mode: C++; indent-tabs-mode: nil; tab-width: 4 -*-
* -*- coding: utf-8 -*-
*
* Copyright (C) 2020 KylinSoft Co., Ltd.
*
* 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 3 of the License, or
* 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, see <http://www.gnu.org/licenses/>.
*/
#include <QApplication>
#include <QScreen>
#include "background-plugin.h"
#include "clib-syslog.h"
PluginInterface* BackgroundPlugin::mInstance = nullptr;
BackgroundPlugin::BackgroundPlugin()
{
manager = new BackgroundManager();
}
BackgroundPlugin::~BackgroundPlugin()
{
CT_SYSLOG(LOG_DEBUG, "background plugin free...");
if(manager){
delete manager;
manager = nullptr;
}
}
PluginInterface *BackgroundPlugin::getInstance()
{
if (nullptr == mInstance) {
mInstance = new BackgroundPlugin();
}
return mInstance;
}
void BackgroundPlugin::activate()
{
syslog (LOG_ERR, "Activating background plugin");
manager->BackgroundManagerStart();
}
void BackgroundPlugin::deactivate()
{
CT_SYSLOG (LOG_DEBUG, "Deactivating background plugin");
}
PluginInterface* createSettingsPlugin()
{
return BackgroundPlugin::getInstance();
}