mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00

根据控制中心插件接口规范,更新翻译内容 Log: Influence: 控制中心->搜索栏-任务栏无法搜索的问题 Bug: https://pms.uniontech.com/zentao/bug-view-111373.html Change-Id: Ie465ee3f294ee49286504ff2173c0a47cf63b2b2
92 lines
2.3 KiB
C++
92 lines
2.3 KiB
C++
/*
|
|
* Copyright (C) 2011 ~ 2021 Uniontech Technology Co., Ltd.
|
|
*
|
|
* Author: fanpengcheng <fanpengcheng@uniontech.com>
|
|
*
|
|
* Maintainer: fanpengcheng <fanpengcheng@uniontech.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, 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/>.
|
|
*/
|
|
#ifndef SETTINGSMODULE_H
|
|
#define SETTINGSMODULE_H
|
|
|
|
#include <dtkcore_global.h>
|
|
|
|
#include <QObject>
|
|
|
|
#include "interface/namespace.h"
|
|
#include "interface/moduleinterface.h"
|
|
#include "interface/frameproxyinterface.h"
|
|
|
|
namespace DCC_NAMESPACE {
|
|
class ModuleInterface;
|
|
class FrameProxyInterface;
|
|
}
|
|
|
|
using namespace DCC_NAMESPACE;
|
|
|
|
DCORE_BEGIN_NAMESPACE
|
|
class DConfig;
|
|
DCORE_END_NAMESPACE
|
|
|
|
class ModuleWidget;
|
|
class SettingsModule : public QObject, public ModuleInterface
|
|
{
|
|
Q_OBJECT
|
|
|
|
Q_PLUGIN_METADATA(IID ModuleInterface_iid FILE "dock_settings.json")
|
|
Q_INTERFACES(DCC_NAMESPACE::ModuleInterface)
|
|
|
|
public:
|
|
explicit SettingsModule();
|
|
|
|
~SettingsModule() Q_DECL_OVERRIDE;
|
|
|
|
void initialize() Q_DECL_OVERRIDE;
|
|
|
|
QStringList availPage() const Q_DECL_OVERRIDE;
|
|
|
|
const QString displayName() const Q_DECL_OVERRIDE;
|
|
|
|
QIcon icon() const Q_DECL_OVERRIDE;
|
|
|
|
QString translationPath() const Q_DECL_OVERRIDE;
|
|
|
|
QString path() const Q_DECL_OVERRIDE;
|
|
|
|
QString follow() const Q_DECL_OVERRIDE;
|
|
|
|
const QString name() const Q_DECL_OVERRIDE;
|
|
|
|
void showPage(const QString &pageName) Q_DECL_OVERRIDE;
|
|
|
|
void addChildPageTrans() const Q_DECL_OVERRIDE;
|
|
|
|
void initSearchData() Q_DECL_OVERRIDE;
|
|
|
|
void preInitialize(bool sync = false,FrameProxyInterface::PushType = FrameProxyInterface::PushType::Normal) Q_DECL_OVERRIDE;
|
|
|
|
private:
|
|
void onStatusChanged();
|
|
|
|
public Q_SLOTS:
|
|
void active() Q_DECL_OVERRIDE;
|
|
|
|
private:
|
|
ModuleWidget *m_moduleWidget;
|
|
DTK_CORE_NAMESPACE::DConfig *m_config;
|
|
};
|
|
|
|
#endif // SETTINGSMODULE_H
|