forked from tiobe/TICSQtCreator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ticsoutputpane.h
39 lines (35 loc) · 932 Bytes
/
ticsoutputpane.h
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
#ifndef TICSOUTPUTWINDOW_H
#define TICSOUTPUTWINDOW_H
#include "coreplugin/outputwindow.h"
#include "coreplugin/ioutputpane.h"
#include <QTextBrowser>
#include <QRegularExpression>
namespace TICSQtCreator {
namespace Internal {
class TicsOutputPane : public Core::IOutputPane
{
public:
TicsOutputPane(QObject * parent);
QWidget* outputWidget( QWidget* parent );
QList<QWidget*> toolBarWidgets() const;
QString displayName() const;
int priorityInStatusBar() const;
void clearContents();
void visibilityChanged( bool visible );
void setFocus();
bool hasFocus() const;
bool canFocus() const;
bool canNavigate() const;
bool canNext() const;
bool canPrevious() const;
void goToNext();
void goToPrev();
QTextBrowser *textEdit;
void writeText(QString text);
void clear();
public slots:
void openFileLink(const QUrl & url);
};
}
}
#endif // TICSOUTPUTWINDOW_H