1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
/*
toolmanager.h
This file is part of GammaRay, the Qt application inspection and manipulation tool.
SPDX-FileCopyrightText: 2013 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
Author: Anton Kreuzkamp <anton.kreuzkamp@kdab.com>
SPDX-License-Identifier: GPL-2.0-or-later
Contact KDAB at <info@kdab.com> for commercial licensing options.
*/
#ifndef GAMMARAY_TOOLMANAGER_H
#define GAMMARAY_TOOLMANAGER_H
#include "proxytoolfactory.h"
#include <common/toolmanagerinterface.h>
#include <common/pluginmanager.h>
namespace GammaRay {
class ToolFactory;
class ProxyToolFactory;
typedef PluginManager<ToolFactory, ProxyToolFactory> ToolPluginManager;
/** @brief Server-sided tool manager. Provides information to the client
* about which tools exists and especially which tools to enable. Also
* calls the ToolPluginManager to load tool plugins.
*/
class ToolManager : public ToolManagerInterface
{
Q_OBJECT
Q_INTERFACES(GammaRay::ToolManagerInterface)
public:
explicit ToolManager(QObject *parent = nullptr);
/** returns the tools that are best suited to show information about \p object. */
QVector<QString> toolsForObject(QObject *object) const;
/** returns the tools that are best suited to show information about \p object. */
QVector<QString> toolsForObject(const void *object, const QString &typeName) const;
bool hasTool(const QString &id) const;
ToolPluginManager *toolPluginManager() const;
/** Check if we have to activate tools for this type */
void objectAdded(QObject *obj);
void selectTool(const QString &toolId);
private:
/**
* Check if we have to activate tools for this type
*
* NOTE: must be called from the GUI thread
*/
void objectAdded(const QMetaObject *mo);
public slots:
void selectObject(const GammaRay::ObjectId &id, const QString &toolId) override;
void requestToolsForObject(const GammaRay::ObjectId &id) override;
void requestAvailableTools() override;
private:
void addToolFactory(ToolFactory *tool);
ToolData toolInfoForFactory(ToolFactory *factory) const;
QVector<ToolFactory *> m_tools;
QSet<ToolFactory *> m_disabledTools;
QSet<const QMetaObject *> m_knownMetaObjects;
QScopedPointer<ToolPluginManager> m_toolPluginManager;
};
}
#endif // GAMMARAY_TOOLMANAGER_H
|