dde-dock/frame/window/windowmanager.h
donghualin e08e86dbff fix: 修复调整任务栏位置后显示错误的问题
在调整窗口尺寸的时候,同时设置子窗口的尺寸,更新子窗口的布局,保证子窗口在调整位置后正确显示

Log:
Influence: 时尚模式下,将任务栏从下方调整在左侧,观察托盘面板显示是否正常
Task: https://pms.uniontech.com/task-view-218981.html
Change-Id: Iaa1f62c93b2ca705e212483eee2cdb5894a5a475
2022-12-06 02:05:31 +00:00

97 lines
3.1 KiB
C++

/*
* Copyright (C) 2022 ~ 2022 Deepin Technology Co., Ltd.
*
* Author: donghualin <donghualin@uniontech.com>
*
* Maintainer: donghualin <donghualin@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 WINDOWMANAGER_H
#define WINDOWMANAGER_H
#include "constants.h"
#include "statusnotifierwatcher_interface.h"
#include <QObject>
namespace Dtk {namespace Gui { class DWindowManagerHelper; }}
class MainWindowBase;
class MainWindow;
class TrayMainWindow;
class MultiScreenWorker;
class MenuWorker;
class QDBusConnectionInterface;
using namespace Dtk::Gui;
class WindowManager : public QObject
{
Q_OBJECT
public:
explicit WindowManager(MultiScreenWorker *multiScreenWorker, QObject *parent = nullptr);
~WindowManager() override;
void addWindow(MainWindowBase *window);
void launch();
void sendNotifications();
void callShow();
void resizeDock(int offset, bool dragging);
QRect geometry() const;
Q_SIGNALS:
void panelGeometryChanged();
private:
void initConnection();
void initSNIHost();
void initMember();
void updateMainGeometry(const Dock::HideState &hideState);
QParallelAnimationGroup *createAnimationGroup(const Dock::AniAction &aniAction, const QString &screenName, const Dock::Position &position) const;
void showAniFinish();
void hideAniFinish();
QRect getDockGeometry(bool withoutScale = false) const; // 计算左右侧加起来的区域大小
void RegisterDdeSession();
void updateDockGeometry(const QRect &rect);
private Q_SLOTS:
void onUpdateDockGeometry(const Dock::HideMode &hideMode);
void onPositionChanged(const Dock::Position &position);
void onDisplayModeChanged(const Dock::DisplayMode &displayMode);
void onDbusNameOwnerChanged(const QString &name, const QString &oldOwner, const QString &newOwner);
void onPlayAnimation(const QString &screenName, const Dock::Position &pos, Dock::AniAction act, bool containMouse = false, bool updatePos = false);
void onChangeDockPosition(QString fromScreen, QString toScreen, const Dock::Position &fromPos, const Dock::Position &toPos);
void onRequestUpdateFrontendGeometry();
void onRequestNotifyWindowManager();
private:
MultiScreenWorker *m_multiScreenWorker;
QString m_sniHostService;
Dock::DisplayMode m_displayMode;
Dock::Position m_position;
QDBusConnectionInterface *m_dbusDaemonInterface;
org::kde::StatusNotifierWatcher *m_sniWatcher; // DBUS状态通知
QList<MainWindowBase *> m_topWindows;
};
#endif // WINDOWMANAGER_H