blob: ea10be5ce6bea4675aea32914cd680755c07e848 (
plain)
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
// Copyright (C) 2025 David M. Cotter
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <QObject>
#include <QString>
#include <QStringList>
// Include for MOC compilation
#include <projectexplorer/task.h>
namespace Mcp::Internal {
/**
* @brief Manages access to Qt Creator's Issues panel
*]
* This class provides a clean interface for accessing and retrieving
* issues from Qt Creator's Issues panel. It encapsulates the complexity
* of accessing internal Qt Creator APIs and provides a simple interface
* for the MCP plugin.
*/
class IssuesManager : public QObject
{
Q_OBJECT
public:
explicit IssuesManager(QObject *parent = nullptr);
~IssuesManager() override = default;
/**
* @brief Retrieves all current issues from the Issues panel
* @return List of formatted issue strings
*/
QStringList getCurrentIssues() const;
/**
* @brief Tests multiple approaches to access Qt Creator's task data
* @return List of test results and findings
*/
QStringList testTaskAccess() const;
private slots:
/**
* @brief Handles task added signals from TaskHub
* @param task The task that was added
*/
void onTaskAdded(const ProjectExplorer::Task &task);
/**
* @brief Handles task removed signals from TaskHub
* @param task The task that was removed
*/
void onTaskRemoved(const ProjectExplorer::Task &task);
/**
* @brief Handles tasks changed signal from TaskWindow
*/
void onTasksChanged();
/**
* @brief Checks if the Issues panel is accessible
* @return true if accessible, false otherwise
*/
bool isAccessible() const;
/**
* @brief Gets the count of current issues
* @return Number of issues, or -1 if not accessible
*/
int getIssueCount() const;
private:
/**
* @brief Attempts to access the Issues panel through various methods
* @return true if successful, false otherwise
*/
bool initializeAccess();
/**
* @brief Formats a task into a readable string
* @param taskType The type of task (Error, Warning, etc.)
* @param description The task description
* @param filePath The file path (if available)
* @param lineNumber The line number (if available)
* @return Formatted string
*/
QString formatTask(
const QString &taskType,
const QString &description,
const QString &filePath = QString(),
int lineNumber = -1) const;
/**
* @brief Connects to TaskHub and TaskWindow signals
*/
void connectSignals();
bool m_accessible = false;
// Task tracking
QList<ProjectExplorer::Task> m_trackedTasks;
QObject *m_taskWindow = nullptr;
bool m_signalsConnected = false;
};
} // namespace Mcp::Internal
|