64 lines
1.1 KiB
C
64 lines
1.1 KiB
C
|
#ifndef CODEEDITOR_H
|
||
|
#define CODEEDITOR_H
|
||
|
|
||
|
#include <QPlainTextEdit>
|
||
|
#include <QObject>
|
||
|
#include <QList>
|
||
|
|
||
|
class QPaintEvent;
|
||
|
class QResizeEvent;
|
||
|
class QSize;
|
||
|
class QWidget;
|
||
|
|
||
|
class LineNumberArea;
|
||
|
|
||
|
|
||
|
class CodeEditor : public QPlainTextEdit
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
CodeEditor(QWidget *parent = 0);
|
||
|
|
||
|
void lineNumberAreaPaintEvent(QPaintEvent *event);
|
||
|
int lineNumberAreaWidth();
|
||
|
|
||
|
void highlightErrors(const QList<int> &errorLines);
|
||
|
|
||
|
protected:
|
||
|
void resizeEvent(QResizeEvent *event);
|
||
|
|
||
|
private slots:
|
||
|
void updateLineNumberAreaWidth(int newBlockCount);
|
||
|
//void highlightCurrentLine();
|
||
|
void updateLineNumberArea(const QRect &, int);
|
||
|
|
||
|
private:
|
||
|
QWidget *lineNumberArea;
|
||
|
};
|
||
|
|
||
|
|
||
|
class LineNumberArea : public QWidget
|
||
|
{
|
||
|
public:
|
||
|
LineNumberArea(CodeEditor *editor) : QWidget(editor)
|
||
|
{
|
||
|
codeEditor = editor;
|
||
|
}
|
||
|
|
||
|
QSize sizeHint() const
|
||
|
{
|
||
|
return QSize(codeEditor->lineNumberAreaWidth(), 0);
|
||
|
}
|
||
|
|
||
|
protected:
|
||
|
void paintEvent(QPaintEvent *event)
|
||
|
{
|
||
|
codeEditor->lineNumberAreaPaintEvent(event);
|
||
|
}
|
||
|
|
||
|
private:
|
||
|
CodeEditor *codeEditor;
|
||
|
};
|
||
|
#endif // CODEEDITOR_H
|