blob: 5023e3e1cefc07f26116e4e35ad20a55118391a4 (
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
107
108
109
110
|
#include <QtGui/qtextedit.h>
#include "inspectoroutputpane.h"
InspectorOutputPane::InspectorOutputPane(QObject *parent)
: Core::IOutputPane(parent),
m_textEdit(new QTextEdit)
{
}
InspectorOutputPane::~InspectorOutputPane()
{
delete m_textEdit;
}
QWidget *InspectorOutputPane::outputWidget(QWidget *parent)
{
Q_UNUSED(parent);
return m_textEdit;
}
QList<QWidget*> InspectorOutputPane::toolBarWidgets() const
{
return QList<QWidget *>();
}
QString InspectorOutputPane::name() const
{
return tr("Inspector Output");
}
int InspectorOutputPane::priorityInStatusBar() const
{
return 1;
}
void InspectorOutputPane::clearContents()
{
m_textEdit->clear();
}
void InspectorOutputPane::visibilityChanged(bool visible)
{
Q_UNUSED(visible);
}
void InspectorOutputPane::setFocus()
{
m_textEdit->setFocus();
}
bool InspectorOutputPane::hasFocus()
{
return m_textEdit->hasFocus();
}
bool InspectorOutputPane::canFocus()
{
return true;
}
bool InspectorOutputPane::canNavigate()
{
return false;
}
bool InspectorOutputPane::canNext()
{
return false;
}
bool InspectorOutputPane::canPrevious()
{
return false;
}
void InspectorOutputPane::goToNext()
{
}
void InspectorOutputPane::goToPrev()
{
}
void InspectorOutputPane::addOutput(RunControl *, const QString &text)
{
m_textEdit->insertPlainText(text);
m_textEdit->moveCursor(QTextCursor::End);
}
void InspectorOutputPane::addOutputInline(RunControl *, const QString &text)
{
m_textEdit->insertPlainText(text);
m_textEdit->moveCursor(QTextCursor::End);
}
void InspectorOutputPane::addErrorOutput(RunControl *, const QString &text)
{
m_textEdit->append(text);
m_textEdit->moveCursor(QTextCursor::End);
}
void InspectorOutputPane::addInspectorStatus(const QString &text)
{
m_textEdit->setTextColor(Qt::darkGreen);
m_textEdit->append(text);
m_textEdit->moveCursor(QTextCursor::End);
m_textEdit->setTextColor(Qt::black);
}
|