Files

75 lines
1.8 KiB
C++
Raw Permalink Normal View History

2020-07-30 17:59:34 +08:00
/* -*- 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/>.
*/
2020-03-19 18:59:01 +08:00
#include "mouse-plugin.h"
#include "clib-syslog.h"
PluginInterface * MousePlugin::mInstance = nullptr;
MouseManager * MousePlugin::UsdMouseManager = nullptr;
MousePlugin::MousePlugin()
{
2020-07-25 20:23:33 +08:00
2020-03-19 18:59:01 +08:00
CT_SYSLOG(LOG_DEBUG,"MousePlugin initializing!");
if (nullptr == UsdMouseManager)
UsdMouseManager = MouseManager::MouseManagerNew();
}
MousePlugin::~MousePlugin()
{
if (UsdMouseManager){
delete UsdMouseManager;
UsdMouseManager = nullptr;
}
}
void MousePlugin::activate()
{
bool res;
CT_SYSLOG(LOG_DEBUG,"Activating Mouse plugin");
2020-04-03 20:38:30 +08:00
res = UsdMouseManager->MouseManagerStart();
2020-03-19 18:59:01 +08:00
if(!res){
CT_SYSLOG(LOG_ERR,"Unable to start Mouse manager!");
}
2020-04-03 20:38:30 +08:00
2020-03-19 18:59:01 +08:00
}
PluginInterface * MousePlugin::getInstance()
{
if (nullptr == mInstance){
mInstance = new MousePlugin();
}
return mInstance;
}
void MousePlugin::deactivate()
{
CT_SYSLOG(LOG_DEBUG,"Deactivating Mouse Plugin");
UsdMouseManager->MouseManagerStop();
}
2020-04-03 20:38:30 +08:00
PluginInterface *createSettingsPlugin()
2020-03-19 18:59:01 +08:00
{
return MousePlugin::getInstance();
}