forked from qt-creator/qt-creator
Conflicts: share/qtcreator/qmldesigner/connectionseditor/SuggestionPopup.qml share/qtcreator/themes/dark.creatortheme share/qtcreator/themes/default.creatortheme share/qtcreator/themes/flat-dark.creatortheme share/qtcreator/themes/flat-light.creatortheme share/qtcreator/themes/flat.creatortheme src/libs/utils/CMakeLists.txt src/plugins/CMakeLists.txt src/plugins/qmlprojectmanager/qmlproject.cpp src/plugins/qmlprojectmanager/qmlprojectrunconfiguration.cpp Change-Id: Idd87c281e1aa7b7fd2702473ad55e18563cbfb21
169 lines
5.6 KiB
C++
169 lines
5.6 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 "core_global.h"
|
|
#include "icontext.h"
|
|
|
|
#include <utils/appmainwindow.h>
|
|
#include <utils/filepath.h>
|
|
#include <utils/qtcsettings.h>
|
|
|
|
#include <QList>
|
|
#include <QRect>
|
|
|
|
#include <functional>
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QColor;
|
|
class QMainWindow;
|
|
class QPrinter;
|
|
class QStatusBar;
|
|
class QWidget;
|
|
QT_END_NAMESPACE
|
|
|
|
namespace Utils { class InfoBar; }
|
|
|
|
namespace Core {
|
|
|
|
class Context;
|
|
class IDocument;
|
|
class IWizardFactory;
|
|
class NewDialog;
|
|
|
|
class CORE_EXPORT ICore : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
ICore();
|
|
~ICore() override;
|
|
|
|
enum class ContextPriority {
|
|
High,
|
|
Low
|
|
};
|
|
|
|
static ICore *instance();
|
|
|
|
static bool isNewItemDialogRunning();
|
|
static QWidget *newItemDialog();
|
|
static void showNewItemDialog(const QString &title,
|
|
const QList<IWizardFactory *> &factories,
|
|
const Utils::FilePath &defaultLocation = {},
|
|
const QVariantMap &extraVariables = {});
|
|
|
|
static bool showOptionsDialog(const Utils::Id page, QWidget *parent = nullptr);
|
|
static QString msgShowOptionsDialog();
|
|
static QString msgShowOptionsDialogToolTip();
|
|
|
|
static bool showWarningWithOptions(const QString &title, const QString &text,
|
|
const QString &details = QString(),
|
|
Utils::Id settingsId = {},
|
|
QWidget *parent = nullptr);
|
|
|
|
static bool isQtDesignStudio();
|
|
static Utils::QtcSettings *settings(QSettings::Scope scope = QSettings::UserScope);
|
|
static QPrinter *printer();
|
|
static QString userInterfaceLanguage();
|
|
|
|
static Utils::FilePath resourcePath(const QString &rel = {});
|
|
static Utils::FilePath userResourcePath(const QString &rel = {});
|
|
static Utils::FilePath cacheResourcePath(const QString &rel = {});
|
|
static Utils::FilePath installerResourcePath(const QString &rel = {});
|
|
static Utils::FilePath libexecPath(const QString &rel = {});
|
|
static Utils::FilePath crashReportsPath();
|
|
|
|
static QString versionString();
|
|
|
|
static QMainWindow *mainWindow();
|
|
static QWidget *dialogParent();
|
|
static Utils::InfoBar *infoBar();
|
|
|
|
static void raiseWindow(QWidget *widget);
|
|
static void raiseMainWindow();
|
|
|
|
static IContext *currentContextObject();
|
|
static QWidget *currentContextWidget();
|
|
static IContext *contextObject(QWidget *widget);
|
|
static void updateAdditionalContexts(const Context &remove, const Context &add,
|
|
ContextPriority priority = ContextPriority::Low);
|
|
static void addAdditionalContext(const Context &context,
|
|
ContextPriority priority = ContextPriority::Low);
|
|
static void removeAdditionalContext(const Context &context);
|
|
static void addContextObject(IContext *context);
|
|
static void removeContextObject(IContext *context);
|
|
|
|
static void registerWindow(QWidget *window, const Context &context);
|
|
static void restartTrimmer();
|
|
|
|
enum OpenFilesFlags {
|
|
None = 0,
|
|
SwitchMode = 1,
|
|
CanContainLineAndColumnNumbers = 2,
|
|
/// Stop loading once the first file fails to load
|
|
StopOnLoadFail = 4,
|
|
SwitchSplitIfAlreadyVisible = 8
|
|
};
|
|
|
|
static void addPreCloseListener(const std::function<bool()> &listener);
|
|
|
|
static void restart();
|
|
|
|
enum SaveSettingsReason {
|
|
SettingsDialogDone,
|
|
ModeChanged,
|
|
MainWindowClosing,
|
|
};
|
|
|
|
public slots:
|
|
static void openFileWith();
|
|
static void exit();
|
|
|
|
signals:
|
|
void coreAboutToOpen();
|
|
void coreOpened();
|
|
void newItemDialogStateChanged();
|
|
void saveSettingsRequested(SaveSettingsReason reason);
|
|
void coreAboutToClose();
|
|
void contextAboutToChange(const QList<Core::IContext *> &context);
|
|
void contextChanged(const Core::Context &context);
|
|
void systemEnvironmentChanged();
|
|
|
|
public:
|
|
/* internal use */
|
|
static QStringList additionalAboutInformation();
|
|
static void clearAboutInformation();
|
|
static void appendAboutInformation(const QString &line);
|
|
static QString systemInformation();
|
|
static void setupScreenShooter(const QString &name, QWidget *w, const QRect &rc = QRect());
|
|
static QString pluginPath();
|
|
static QString userPluginPath();
|
|
static Utils::FilePath clangExecutable(const Utils::FilePath &clangBinDirectory);
|
|
static Utils::FilePath clangdExecutable(const Utils::FilePath &clangBinDirectory);
|
|
static Utils::FilePath clangTidyExecutable(const Utils::FilePath &clangBinDirectory);
|
|
static Utils::FilePath clazyStandaloneExecutable(const Utils::FilePath &clangBinDirectory);
|
|
static Utils::FilePath clangIncludeDirectory(const QString &clangVersion,
|
|
const Utils::FilePath &clangFallbackIncludeDir);
|
|
static QString buildCompatibilityString();
|
|
static QStatusBar *statusBar();
|
|
|
|
static void saveSettings(SaveSettingsReason reason);
|
|
static void setNewDialogFactory(const std::function<NewDialog *(QWidget *)> &newFactory);
|
|
static void updateNewItemDialogState();
|
|
|
|
static void setOverrideColor(const QColor &color);
|
|
|
|
static void init();
|
|
static void extensionsInitialized();
|
|
static void aboutToShutdown();
|
|
static void saveSettings();
|
|
|
|
static IDocument *openFiles(const Utils::FilePaths &filePaths,
|
|
OpenFilesFlags flags = None,
|
|
const Utils::FilePath &workingDirectory = {});
|
|
};
|
|
|
|
} // namespace Core
|