Files
qt-creator/src/plugins/coreplugin/mainwindow.h

193 lines
5.8 KiB
C
Raw Normal View History

/****************************************************************************
2008-12-02 12:01:29 +01:00
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
2008-12-02 12:01:29 +01:00
**
** This file is part of Qt Creator.
2008-12-02 12:01:29 +01:00
**
** 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 The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License version 3 as published by the Free Software
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
** included in the packaging of this file. Please review the following
** information to ensure the GNU General Public License requirements will
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
2010-12-17 16:01:08 +01:00
**
****************************************************************************/
2008-12-02 14:09:21 +01:00
#pragma once
2008-12-02 12:01:29 +01:00
#include "icontext.h"
#include "icore.h"
#include <utils/appmainwindow.h>
#include <utils/dropsupport.h>
#include <QMap>
#include <QColor>
2008-12-02 12:01:29 +01:00
#include <functional>
2008-12-02 12:01:29 +01:00
QT_BEGIN_NAMESPACE
class QPrinter;
class QToolButton;
2008-12-02 12:01:29 +01:00
QT_END_NAMESPACE
namespace Core {
class EditorManager;
class ExternalToolManager;
class HelpManager;
class IDocument;
class JsExpander;
2008-12-02 12:01:29 +01:00
class MessageManager;
2008-12-02 14:09:21 +01:00
class ModeManager;
class ProgressManager;
class NavigationWidget;
enum class Side;
2008-12-02 14:09:21 +01:00
class RightPaneWidget;
class SettingsDatabase;
2010-12-07 17:34:43 +01:00
class VcsManager;
2008-12-02 12:01:29 +01:00
namespace Internal {
class FancyTabWidget;
2008-12-02 14:09:21 +01:00
class GeneralSettings;
class ProgressManagerPrivate;
2008-12-02 14:09:21 +01:00
class ShortcutSettings;
class ToolSettings;
class MimeTypeSettings;
class VersionDialog;
class WindowSupport;
class SystemEditor;
class SystemSettings;
2008-12-02 12:01:29 +01:00
class MainWindow : public Utils::AppMainWindow
2008-12-02 12:01:29 +01:00
{
Q_OBJECT
public:
MainWindow();
~MainWindow() override;
2008-12-02 12:01:29 +01:00
void init();
2008-12-02 12:01:29 +01:00
void extensionsInitialized();
void aboutToShutdown();
2008-12-02 12:01:29 +01:00
IContext *contextObject(QWidget *widget);
void addContextObject(IContext *context);
void removeContextObject(IContext *context);
2008-12-02 12:01:29 +01:00
IDocument *openFiles(const QStringList &fileNames,
ICore::OpenFilesFlags flags,
const QString &workingDirectory = QString());
2008-12-02 12:01:29 +01:00
inline SettingsDatabase *settingsDatabase() const { return m_settingsDatabase; }
2008-12-02 12:01:29 +01:00
virtual QPrinter *printer() const;
IContext * currentContextObject() const;
QStatusBar *statusBar() const;
void updateAdditionalContexts(const Context &remove, const Context &add,
ICore::ContextPriority priority);
2008-12-02 12:01:29 +01:00
void setOverrideColor(const QColor &color);
QStringList additionalAboutInformation() const;
void appendAboutInformation(const QString &line);
void addPreCloseListener(const std::function<bool()> &listener);
void saveSettings();
2008-12-02 12:01:29 +01:00
public slots:
void openFileWith();
void exit();
protected:
void closeEvent(QCloseEvent *event) override;
2008-12-02 12:01:29 +01:00
private:
2008-12-02 12:01:29 +01:00
void openFile();
void aboutToShowRecentFiles();
void setFocusToEditor();
void saveAll();
void aboutQtCreator();
void aboutPlugins();
void updateFocusWidget(QWidget *old, QWidget *now);
NavigationWidget *navigationWidget(Side side) const;
void setSidebarVisible(bool visible, Side side);
void destroyVersionDialog();
void openDroppedFiles(const QList<Utils::DropSupport::FileSpec> &files);
void restoreWindowState();
2008-12-02 12:01:29 +01:00
void updateContextObject(const QList<IContext *> &context);
void updateContext();
2008-12-02 12:01:29 +01:00
void registerDefaultContainers();
void registerDefaultActions();
void readSettings();
void saveWindowSettings();
2008-12-02 12:01:29 +01:00
ICore *m_coreImpl = nullptr;
QStringList m_aboutInformation;
Context m_highPrioAdditionalContexts;
Context m_lowPrioAdditionalContexts;
SettingsDatabase *m_settingsDatabase = nullptr;
mutable QPrinter *m_printer = nullptr;
WindowSupport *m_windowSupport = nullptr;
EditorManager *m_editorManager = nullptr;
ExternalToolManager *m_externalToolManager = nullptr;
MessageManager *m_messageManager = nullptr;
ProgressManagerPrivate *m_progressManager = nullptr;
JsExpander *m_jsExpander = nullptr;
VcsManager *m_vcsManager = nullptr;
ModeManager *m_modeManager = nullptr;
HelpManager *m_helpManager = nullptr;
FancyTabWidget *m_modeStack = nullptr;
NavigationWidget *m_leftNavigationWidget = nullptr;
NavigationWidget *m_rightNavigationWidget = nullptr;
RightPaneWidget *m_rightPaneWidget = nullptr;
VersionDialog *m_versionDialog = nullptr;
2008-12-02 12:01:29 +01:00
QList<IContext *> m_activeContext;
2008-12-02 12:01:29 +01:00
QMap<QWidget *, IContext *> m_contextWidgets;
GeneralSettings *m_generalSettings = nullptr;
SystemSettings *m_systemSettings = nullptr;
ShortcutSettings *m_shortcutSettings = nullptr;
ToolSettings *m_toolSettings = nullptr;
MimeTypeSettings *m_mimeTypeSettings = nullptr;
SystemEditor *m_systemEditor = nullptr;
2008-12-02 12:01:29 +01:00
// actions
QAction *m_focusToEditor = nullptr;
QAction *m_newAction = nullptr;
QAction *m_openAction = nullptr;
QAction *m_openWithAction = nullptr;
QAction *m_saveAllAction = nullptr;
QAction *m_exitAction = nullptr;
QAction *m_optionsAction = nullptr;
QAction *m_toggleLeftSideBarAction = nullptr;
QAction *m_toggleRightSideBarAction = nullptr;
QAction *m_toggleModeSelectorAction = nullptr;
QAction *m_themeAction = nullptr;
QToolButton *m_toggleLeftSideBarButton = nullptr;
QToolButton *m_toggleRightSideBarButton = nullptr;
QColor m_overrideColor;
QList<std::function<bool()>> m_preCloseListeners;
2008-12-02 12:01:29 +01:00
};
} // namespace Internal
} // namespace Core