2022-05-21 10:44:39 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2020-2022 Roy Qu (royqh1979@gmail.com)
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
2022-03-29 21:41:02 +08:00
|
|
|
#ifndef LINENUMBERTEXTEDITOR_H
|
|
|
|
#define LINENUMBERTEXTEDITOR_H
|
|
|
|
|
|
|
|
#include <QPlainTextEdit>
|
|
|
|
|
|
|
|
class LineNumberTextEditor : public QPlainTextEdit
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
LineNumberTextEditor(QWidget *parent = nullptr);
|
|
|
|
|
|
|
|
void lineNumberAreaPaintEvent(QPaintEvent *event);
|
|
|
|
int lineNumberAreaWidth();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void resizeEvent(QResizeEvent *event) override;
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void updateLineNumberAreaWidth(int newBlockCount);
|
|
|
|
void highlightCurrentLine();
|
|
|
|
void updateLineNumberArea(const QRect &rect, int dy);
|
|
|
|
|
|
|
|
private:
|
|
|
|
QWidget *lineNumberArea;
|
|
|
|
};
|
|
|
|
|
|
|
|
class LineNumberArea : public QWidget
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
LineNumberArea(LineNumberTextEditor *editor) : QWidget(editor), mParentEditor(editor)
|
|
|
|
{}
|
|
|
|
|
|
|
|
QSize sizeHint() const override
|
|
|
|
{
|
|
|
|
return QSize(mParentEditor->lineNumberAreaWidth(), 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void paintEvent(QPaintEvent *event) override
|
|
|
|
{
|
|
|
|
mParentEditor->lineNumberAreaPaintEvent(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
LineNumberTextEditor *mParentEditor;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // LINENUMBERTEXTEDITOR_H
|