forked from openkylin/ukui-search
60 lines
1.8 KiB
C++
60 lines
1.8 KiB
C++
/*
|
|
*
|
|
* Copyright (C) 2023, 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
|
|
* (at your option) 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 <https://www.gnu.org/licenses/>.
|
|
*
|
|
*
|
|
*/
|
|
#include "ukui-search-dbus-service.h"
|
|
|
|
using namespace UkuiSearch;
|
|
void UkuiSearchDbusServices::showWindow(){
|
|
qDebug() << "showWindow called";
|
|
m_mainWindow->bootOptionsFilter("-s");
|
|
}
|
|
|
|
void UkuiSearchDbusServices::searchKeyword(QString keyword)
|
|
{
|
|
showWindow();
|
|
m_mainWindow->setText(keyword);
|
|
}
|
|
|
|
void UkuiSearchDbusServices::mainWindowSwitch()
|
|
{
|
|
if (m_mainWindow->isActiveWindow()) {
|
|
m_mainWindow->tryHide();
|
|
} else {
|
|
m_mainWindow->bootOptionsFilter("-s");
|
|
}
|
|
}
|
|
|
|
UkuiSearchDbusServices::UkuiSearchDbusServices(MainWindow *m)
|
|
{
|
|
m_mainWindow = m;
|
|
//注册服务
|
|
QDBusConnection sessionBus = QDBusConnection::sessionBus();
|
|
QDBusConnection::sessionBus().unregisterService("com.ukui.search.service");
|
|
if(!sessionBus.registerService("com.ukui.search.service")){
|
|
qWarning() << "ukui-search dbus register service failed reason:" << sessionBus.lastError();
|
|
}
|
|
|
|
if(!sessionBus.registerObject("/", this, QDBusConnection::ExportAllSlots)){
|
|
qWarning() << "ukui-search dbus register object failed reason:" << sessionBus.lastError();
|
|
}
|
|
}
|
|
|
|
UkuiSearchDbusServices::~UkuiSearchDbusServices(){
|
|
}
|