forked from qt-creator/qt-creator
After a window is closed we don't only have to update the texts of the action, but also update their visibility state and the checked item. Fixes: QTCREATORBUG-30381 Change-Id: Id0c343b8a5930ec2e3de03f71bdc8f2628b492b3 Reviewed-by: David Schulz <david.schulz@qt.io> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
68 lines
1.5 KiB
C++
68 lines
1.5 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#pragma once
|
|
|
|
#include "icontext.h"
|
|
|
|
#include <QObject>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QAction;
|
|
class QMenu;
|
|
class QWidget;
|
|
QT_END_NAMESPACE
|
|
|
|
namespace Core {
|
|
namespace Internal {
|
|
|
|
class WindowList
|
|
{
|
|
public:
|
|
~WindowList();
|
|
|
|
void addWindow(QWidget *window);
|
|
void removeWindow(QWidget *window);
|
|
void setActiveWindow(QWidget *window);
|
|
void updateVisibility(QWidget *window);
|
|
|
|
private:
|
|
void activateWindow(QAction *action);
|
|
void updateTitle(QWidget *window, int index = -1);
|
|
void updateVisibility(QWidget *window, int index);
|
|
|
|
QMenu *m_dockMenu = nullptr;
|
|
QList<QWidget *> m_windows;
|
|
QList<QAction *> m_windowActions;
|
|
QList<Utils::Id> m_windowActionIds;
|
|
};
|
|
|
|
class WindowSupport : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
WindowSupport(QWidget *window, const Context &context, const Context &actionContext = {});
|
|
~WindowSupport() override;
|
|
|
|
void setCloseActionEnabled(bool enabled);
|
|
|
|
protected:
|
|
bool eventFilter(QObject *obj, QEvent *event) override;
|
|
|
|
private:
|
|
void toggleFullScreen();
|
|
void updateFullScreenAction();
|
|
|
|
QWidget *m_window;
|
|
IContext *m_contextObject;
|
|
QAction *m_minimizeAction;
|
|
QAction *m_zoomAction;
|
|
QAction *m_closeAction;
|
|
QAction *m_toggleFullScreenAction;
|
|
Qt::WindowStates m_previousWindowState;
|
|
bool m_shutdown = false;
|
|
};
|
|
|
|
} // Internal
|
|
} // Core
|