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

1、重启AM后,需要重新更新每个子部件的dockInter,因为这些字部件的dockInter是从MultiScreenWorker类中获取的,而MultiScreenWorker类中的dockInter已经被释放重新获取了; 2、重新启动AM后,由于任务栏会重新执行positionChanged的方法,在这个过程中会执行300毫秒的动画,在动画执行完成后,会判断当前服务是否重启过,如果重启过服务,则重新刷新界面 Log: 修复重启AM后任务栏崩溃的问题 Influence: 重启AM服务,观察任务栏是否重启 Task: https://pms.uniontech.com/task-view-225201.html Change-Id: I1d5337fe7a0101450dfce7338d32aad73c14f697
53 lines
1.3 KiB
C++
53 lines
1.3 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 "constants.h"
|
|
#include "dbusutil.h"
|
|
|
|
#include <QObject>
|
|
|
|
class QMenu;
|
|
class QGSettings;
|
|
/**
|
|
* @brief The MenuWorker class 此类用于处理任务栏右键菜单的逻辑
|
|
*/
|
|
class MenuWorker : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit MenuWorker(DockInter *dockInter, QObject *parent = nullptr);
|
|
|
|
void exec();
|
|
|
|
private:
|
|
void createMenu(QMenu *settingsMenu);
|
|
|
|
private slots:
|
|
void onDockSettingsTriggered();
|
|
|
|
private:
|
|
DockInter *m_dockInter;
|
|
};
|
|
|
|
#endif // MENUWORKER_H
|