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

多屏幕管理类、菜单管理类中改成AM来访问后端接口 Log: Influence: 任务栏 Task: https://pms.uniontech.com/task-view-133075.html Change-Id: I1d7cccbc58b7c5883c4946a2f92510c98e144692
59 lines
1.5 KiB
C++
59 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 "dbusutil.h"
|
|
|
|
class QMenu;
|
|
class QGSettings;
|
|
/**
|
|
* @brief The MenuWorker class 此类用于处理任务栏右键菜单的逻辑
|
|
*/
|
|
class MenuWorker : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit MenuWorker(DockInter *dockInter,QWidget *parent = nullptr);
|
|
|
|
void showDockSettingsMenu(QMenu *menu);
|
|
|
|
signals:
|
|
void autoHideChanged(const bool autoHide) const;
|
|
|
|
public slots:
|
|
void setAutoHide(const bool autoHide);
|
|
|
|
private:
|
|
QMenu *createMenu(QMenu *settingsMenu);
|
|
|
|
private slots:
|
|
void onDockSettingsTriggered();
|
|
|
|
private:
|
|
DockInter *m_dockInter;
|
|
bool m_autoHide;
|
|
};
|
|
|
|
#endif // MENUWORKER_H
|