Files
qt-creator/src/plugins/coreplugin/coreplugin.h
hjk 0dd9d9a327 Core: Move VcsManager test class definition closer to tested code
Change-Id: Ibc97d4874eca871d7d283dc97bf61235e9ea5539
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
2024-01-15 07:57:26 +00:00

88 lines
2.2 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 "foldernavigationwidget.h"
#include <qglobal.h>
#include <extensionsystem/iplugin.h>
#include <extensionsystem/pluginspec.h>
#include <utils/environment.h>
#include <memory>
QT_BEGIN_NAMESPACE
class QMenu;
QT_END_NAMESPACE
namespace Utils {
class PathChooser;
}
namespace Core {
class FolderNavigationWidgetFactory;
class SessionManager;
class ICore;
namespace Internal {
class EditMode;
class MainWindow;
class Locator;
class CorePlugin : public ExtensionSystem::IPlugin
{
Q_OBJECT
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "Core.json")
public:
CorePlugin();
~CorePlugin() override;
static CorePlugin *instance();
bool initialize(const QStringList &arguments, QString *errorMessage = nullptr) override;
void extensionsInitialized() override;
bool delayedInitialize() override;
ShutdownFlag aboutToShutdown() override;
QObject *remoteCommand(const QStringList & /* options */,
const QString &workingDirectory,
const QStringList &args) override;
static Utils::EnvironmentItems environmentChanges();
static void setEnvironmentChanges(const Utils::EnvironmentItems &changes);
static QString msgCrashpadInformation();
static void loadMimeFromPlugin(const ExtensionSystem::PluginSpec *plugin);
public slots:
void fileOpenRequest(const QString &);
#if defined(WITH_TESTS)
private slots:
// Locator:
void test_basefilefilter();
void test_basefilefilter_data();
void testOutputFormatter();
#endif
private:
static void addToPathChooserContextMenu(Utils::PathChooser *pathChooser, QMenu *menu);
void checkSettings();
void warnAboutCrashReporing();
ICore *m_core = nullptr;
EditMode *m_editMode = nullptr;
Locator *m_locator = nullptr;
std::unique_ptr<SessionManager> m_sessionManager;
FolderNavigationWidgetFactory *m_folderNavigationWidgetFactory = nullptr;
const Utils::Environment m_startupSystemEnvironment;
Utils::EnvironmentItems m_environmentChanges;
};
} // namespace Internal
} // namespace Core