2014-07-17 17:04:02 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
|
|
|
|
|
** Contact: http://www.qt-project.org/legal
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
2014-10-01 13:21:18 +02:00
|
|
|
** conditions see http://www.qt.io/licensing. For further information
|
|
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2014-07-17 17:04:02 +02:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-01 13:21:18 +02:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2014-07-17 17:04:02 +02:00
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "windowsupport.h"
|
|
|
|
|
|
2014-08-25 17:28:25 +02:00
|
|
|
#include "actionmanager/actioncontainer.h"
|
2014-07-17 17:04:02 +02:00
|
|
|
#include "actionmanager/actionmanager.h"
|
|
|
|
|
#include "coreconstants.h"
|
|
|
|
|
#include "icore.h"
|
|
|
|
|
|
|
|
|
|
#include <utils/hostosinfo.h>
|
2014-08-25 17:28:25 +02:00
|
|
|
#include <utils/qtcassert.h>
|
2014-07-17 17:04:02 +02:00
|
|
|
|
|
|
|
|
#include <QAction>
|
|
|
|
|
#include <QEvent>
|
2014-08-25 17:28:25 +02:00
|
|
|
#include <QMenu>
|
|
|
|
|
#include <QWidget>
|
2014-07-17 17:04:02 +02:00
|
|
|
|
|
|
|
|
namespace Core {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2014-08-25 17:28:25 +02:00
|
|
|
|
|
|
|
|
QMenu *WindowList::m_dockMenu = 0;
|
|
|
|
|
QList<QWidget *> WindowList::m_windows;
|
|
|
|
|
QList<QAction *> WindowList::m_windowActions;
|
|
|
|
|
QList<Id> WindowList::m_windowActionIds;
|
|
|
|
|
|
2014-07-17 17:04:02 +02:00
|
|
|
WindowSupport::WindowSupport(QWidget *window, const Context &context)
|
|
|
|
|
: QObject(window),
|
|
|
|
|
m_window(window)
|
|
|
|
|
{
|
|
|
|
|
m_window->installEventFilter(this);
|
|
|
|
|
|
|
|
|
|
m_contextObject = new IContext(this);
|
|
|
|
|
m_contextObject->setWidget(window);
|
|
|
|
|
m_contextObject->setContext(context);
|
|
|
|
|
ICore::addContextObject(m_contextObject);
|
|
|
|
|
|
|
|
|
|
if (UseMacShortcuts) {
|
|
|
|
|
m_minimizeAction = new QAction(this);
|
|
|
|
|
ActionManager::registerAction(m_minimizeAction, Constants::MINIMIZE_WINDOW, context);
|
|
|
|
|
connect(m_minimizeAction, SIGNAL(triggered()), m_window, SLOT(showMinimized()));
|
|
|
|
|
|
|
|
|
|
m_zoomAction = new QAction(this);
|
|
|
|
|
ActionManager::registerAction(m_zoomAction, Constants::ZOOM_WINDOW, context);
|
|
|
|
|
connect(m_zoomAction, SIGNAL(triggered()), m_window, SLOT(showMaximized()));
|
2014-07-18 10:35:17 +02:00
|
|
|
|
|
|
|
|
m_closeAction = new QAction(this);
|
|
|
|
|
ActionManager::registerAction(m_closeAction, Constants::CLOSE_WINDOW, context);
|
|
|
|
|
connect(m_closeAction, SIGNAL(triggered()), m_window, SLOT(close()), Qt::QueuedConnection);
|
2014-07-17 17:04:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_toggleFullScreenAction = new QAction(this);
|
|
|
|
|
updateFullScreenAction();
|
|
|
|
|
ActionManager::registerAction(m_toggleFullScreenAction, Constants::TOGGLE_FULLSCREEN, context);
|
|
|
|
|
connect(m_toggleFullScreenAction, SIGNAL(triggered()), this, SLOT(toggleFullScreen()));
|
2014-08-25 17:28:25 +02:00
|
|
|
|
|
|
|
|
WindowList::addWindow(window);
|
2014-07-17 17:04:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
WindowSupport::~WindowSupport()
|
|
|
|
|
{
|
2014-08-25 11:41:41 +02:00
|
|
|
if (UseMacShortcuts) {
|
|
|
|
|
ActionManager::unregisterAction(m_minimizeAction, Constants::MINIMIZE_WINDOW);
|
|
|
|
|
ActionManager::unregisterAction(m_zoomAction, Constants::ZOOM_WINDOW);
|
|
|
|
|
ActionManager::unregisterAction(m_closeAction, Constants::CLOSE_WINDOW);
|
|
|
|
|
}
|
|
|
|
|
ActionManager::unregisterAction(m_toggleFullScreenAction, Constants::TOGGLE_FULLSCREEN);
|
2014-07-17 17:04:02 +02:00
|
|
|
ICore::removeContextObject(m_contextObject);
|
2014-08-25 17:28:25 +02:00
|
|
|
WindowList::removeWindow(m_window);
|
2014-07-17 17:04:02 +02:00
|
|
|
}
|
|
|
|
|
|
2014-07-18 10:35:17 +02:00
|
|
|
void WindowSupport::setCloseActionEnabled(bool enabled)
|
|
|
|
|
{
|
|
|
|
|
if (UseMacShortcuts)
|
|
|
|
|
m_closeAction->setEnabled(enabled);
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-17 17:04:02 +02:00
|
|
|
bool WindowSupport::eventFilter(QObject *obj, QEvent *event)
|
|
|
|
|
{
|
|
|
|
|
if (obj != m_window)
|
|
|
|
|
return false;
|
|
|
|
|
if (event->type() == QEvent::WindowStateChange) {
|
|
|
|
|
if (Utils::HostOsInfo::isMacHost()) {
|
|
|
|
|
bool minimized = m_window->isMinimized();
|
|
|
|
|
m_minimizeAction->setEnabled(!minimized);
|
|
|
|
|
m_zoomAction->setEnabled(!minimized);
|
|
|
|
|
}
|
|
|
|
|
updateFullScreenAction();
|
2014-08-25 17:28:25 +02:00
|
|
|
} else if (event->type() == QEvent::WindowActivate) {
|
|
|
|
|
WindowList::setActiveWindow(m_window);
|
2014-07-17 17:04:02 +02:00
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void WindowSupport::toggleFullScreen()
|
|
|
|
|
{
|
|
|
|
|
if (m_window->isFullScreen()) {
|
|
|
|
|
m_window->setWindowState(m_window->windowState() & ~Qt::WindowFullScreen);
|
|
|
|
|
} else {
|
|
|
|
|
m_window->setWindowState(m_window->windowState() | Qt::WindowFullScreen);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void WindowSupport::updateFullScreenAction()
|
|
|
|
|
{
|
|
|
|
|
if (m_window->isFullScreen()) {
|
|
|
|
|
if (Utils::HostOsInfo::isMacHost())
|
|
|
|
|
m_toggleFullScreenAction->setText(tr("Exit Full Screen"));
|
|
|
|
|
else
|
|
|
|
|
m_toggleFullScreenAction->setChecked(true);
|
|
|
|
|
} else {
|
|
|
|
|
if (Utils::HostOsInfo::isMacHost())
|
|
|
|
|
m_toggleFullScreenAction->setText(tr("Enter Full Screen"));
|
|
|
|
|
else
|
|
|
|
|
m_toggleFullScreenAction->setChecked(false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-25 17:28:25 +02:00
|
|
|
void WindowList::addWindow(QWidget *window)
|
|
|
|
|
{
|
2014-09-01 12:17:03 +04:00
|
|
|
#ifdef Q_OS_OSX
|
|
|
|
|
if (!m_dockMenu) {
|
2014-08-25 17:28:25 +02:00
|
|
|
m_dockMenu = new QMenu;
|
|
|
|
|
m_dockMenu->setAsDockMenu();
|
|
|
|
|
}
|
2014-09-01 12:17:03 +04:00
|
|
|
#endif
|
2014-08-25 17:28:25 +02:00
|
|
|
|
|
|
|
|
m_windows.append(window);
|
|
|
|
|
Id id = Id("QtCreator.Window.").withSuffix(m_windows.size());
|
|
|
|
|
m_windowActionIds.append(id);
|
|
|
|
|
auto action = new QAction(window->windowTitle(), 0);
|
|
|
|
|
m_windowActions.append(action);
|
2014-11-21 10:01:11 +02:00
|
|
|
QObject::connect(action, &QAction::triggered, [action]() { WindowList::activateWindow(action); });
|
2014-08-25 17:28:25 +02:00
|
|
|
action->setCheckable(true);
|
|
|
|
|
action->setChecked(false);
|
|
|
|
|
Command *cmd = ActionManager::registerAction(action, id,
|
|
|
|
|
Context(Constants::C_GLOBAL));
|
|
|
|
|
cmd->setAttribute(Command::CA_UpdateText);
|
|
|
|
|
ActionManager::actionContainer(Constants::M_WINDOW)->addAction(cmd, Constants::G_WINDOW_LIST);
|
2014-11-21 10:01:11 +02:00
|
|
|
QObject::connect(window, &QWidget::windowTitleChanged, [window]() { WindowList::updateTitle(window); });
|
2014-08-25 17:28:25 +02:00
|
|
|
if (m_dockMenu)
|
|
|
|
|
m_dockMenu->addAction(action);
|
|
|
|
|
if (window->isActiveWindow())
|
|
|
|
|
setActiveWindow(window);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void WindowList::activateWindow(QAction *action)
|
|
|
|
|
{
|
|
|
|
|
int index = m_windowActions.indexOf(action);
|
|
|
|
|
QTC_ASSERT(index >= 0, return);
|
|
|
|
|
QTC_ASSERT(index < m_windows.size(), return);
|
|
|
|
|
ICore::raiseWindow(m_windows.at(index));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void WindowList::updateTitle(QWidget *window)
|
|
|
|
|
{
|
|
|
|
|
int index = m_windows.indexOf(window);
|
|
|
|
|
QTC_ASSERT(index >= 0, return);
|
|
|
|
|
QTC_ASSERT(index < m_windowActions.size(), return);
|
|
|
|
|
QString title = window->windowTitle();
|
|
|
|
|
if (title.endsWith(QStringLiteral("- Qt Creator")))
|
|
|
|
|
title.chop(12);
|
|
|
|
|
m_windowActions.at(index)->setText(title.trimmed());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void WindowList::removeWindow(QWidget *window)
|
|
|
|
|
{
|
|
|
|
|
// remove window from list,
|
|
|
|
|
// remove last action from menu(s)
|
|
|
|
|
// and update all action titles, starting with the index where the window was
|
|
|
|
|
int index = m_windows.indexOf(window);
|
|
|
|
|
QTC_ASSERT(index >= 0, return);
|
|
|
|
|
|
|
|
|
|
ActionManager::unregisterAction(m_windowActions.last(), m_windowActionIds.last());
|
2014-11-21 10:01:11 +02:00
|
|
|
delete m_windowActions.takeLast();
|
2014-08-25 17:28:25 +02:00
|
|
|
m_windowActionIds.removeLast();
|
|
|
|
|
|
|
|
|
|
m_windows.removeOne(window);
|
|
|
|
|
|
|
|
|
|
for (int i = index; i < m_windows.size(); ++i)
|
|
|
|
|
updateTitle(m_windows.at(i));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void WindowList::setActiveWindow(QWidget *window)
|
|
|
|
|
{
|
|
|
|
|
for (int i = 0; i < m_windows.size(); ++i)
|
|
|
|
|
m_windowActions.at(i)->setChecked(m_windows.at(i) == window);
|
|
|
|
|
}
|
2014-07-17 17:04:02 +02:00
|
|
|
|
|
|
|
|
} // Internal
|
|
|
|
|
} // Core
|