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

任务栏增加跳转控制中心菜单,同时去除插件和多屏配置的菜单 插件部分的指针不用处理,由插件框架管理 Log: 任务栏部分配置转移到控制中心 Task: https://pms.uniontech.com/zentao/task-view-86359.html Change-Id: Icb792198c8967f122fb8b8ae4acf2dee79064203
61 lines
1.5 KiB
C++
61 lines
1.5 KiB
C++
/*
|
|
* Copyright (C) 2018 ~ 2020 Deepin Technology Co., Ltd.
|
|
*
|
|
* Author: fanpengcheng <fanpengcheng_cm@deepin.com>
|
|
*
|
|
* Maintainer: fanpengcheng <fanpengcheng_cm@deepin.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 MENUWORKER_H
|
|
#define MENUWORKER_H
|
|
#include <QObject>
|
|
|
|
#include "constants.h"
|
|
|
|
#include <com_deepin_dde_daemon_dock.h>
|
|
|
|
using DBusDock = com::deepin::dde::daemon::Dock;
|
|
class QMenu;
|
|
class QGSettings;
|
|
/**
|
|
* @brief The MenuWorker class 此类用于处理任务栏右键菜单的逻辑
|
|
*/
|
|
class MenuWorker : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit MenuWorker(DBusDock *dockInter,QWidget *parent = nullptr);
|
|
|
|
void showDockSettingsMenu();
|
|
|
|
signals:
|
|
void autoHideChanged(const bool autoHide) const;
|
|
|
|
public slots:
|
|
void setAutoHide(const bool autoHide);
|
|
|
|
private:
|
|
QMenu *createMenu();
|
|
|
|
private slots:
|
|
void onDockSettingsTriggered();
|
|
|
|
private:
|
|
DBusDock *m_dockInter;
|
|
bool m_autoHide;
|
|
};
|
|
|
|
#endif // MENUWORKER_H
|