RedPanda-CPP/RedPandaIDE/qsynedit/TextPainter.h

74 lines
2.2 KiB
C
Raw Normal View History

2021-05-14 23:56:43 +08:00
#ifndef TEXTPAINTER_H
#define TEXTPAINTER_H
#include <QColor>
#include <QPainter>
#include <QString>
#include "Types.h"
2021-05-16 20:36:00 +08:00
#include "highlighter/base.h"
2021-05-18 15:49:58 +08:00
#include "../utils.h"
2021-05-21 23:33:53 +08:00
#include "MiscClasses.h"
2021-05-14 23:56:43 +08:00
class SynEdit;
class SynEditTextPainter
{
2021-05-16 20:36:00 +08:00
struct SynTokenAccu {
int Columns;
int ColumnsBefore;
2021-05-14 23:56:43 +08:00
QString s;
QColor FG;
QColor BG;
SynFontStyles Style;
};
public:
2021-05-24 00:41:00 +08:00
SynEditTextPainter(SynEdit * edit,QPainter* painter,int FirstRow, int LastRow,
2021-05-21 23:33:53 +08:00
int FirstCol, int LastCol);
void paintTextLines(const QRect& clip);
void paintGutter(const QRect& clip);
2021-05-14 23:56:43 +08:00
2021-05-21 23:33:53 +08:00
private:
2021-05-14 23:56:43 +08:00
QColor colEditorBG();
void ComputeSelectionInfo();
void setDrawingColors(bool Selected);
int ColumnToXValue(int Col);
2021-05-16 20:36:00 +08:00
void PaintToken(const QString& Token, int TokenLen, int ColumnsBefore,
2021-05-14 23:56:43 +08:00
int First, int Last, bool isSelection);
2021-05-21 23:33:53 +08:00
void PaintEditAreas(const SynEditingAreaList& areaList);
2021-05-16 20:36:00 +08:00
void PaintHighlightToken(bool bFillToEOL);
bool TokenIsSpaces(bool& bSpacesTest, const QString& Token, bool& bIsSpaces);
void AddHighlightToken(const QString& Token, int ColumnsBefore, int TokenColumns,
int cLine, PSynHighlighterAttribute p_Attri);
void PaintFoldAttributes();
2021-05-18 15:49:58 +08:00
void GetBraceColorAttr(int level, PSynHighlighterAttribute &attr);
2021-05-16 20:36:00 +08:00
void PaintLines();
2021-05-21 23:33:53 +08:00
void drawMark(PSynEditMark aMark,int& aGutterOff, int aMarkRow);
2021-05-14 23:56:43 +08:00
private:
SynEdit* edit;
QPainter* painter;
bool bDoRightEdge; // right edge
int nRightEdge;
// selection info
bool bAnySelection; // any selection visible?
DisplayCoord vSelStart; // start of selected area
DisplayCoord vSelEnd; // end of selected area
// info about normal and selected text and background colors
bool bSpecialLine, bLineSelected, bCurrentLine;
QColor colFG, colBG;
QColor colSelFG, colSelBG;
// info about selection of the current line
int nLineSelStart, nLineSelEnd;
bool bComplexLine;
// painting the background and the text
QRect rcLine, rcToken;
int vFirstLine, vLastLine;
2021-05-16 20:36:00 +08:00
QRect AClip;
int aFirstRow, aLastRow, FirstCol, LastCol;
SynTokenAccu TokenAccu;
2021-05-14 23:56:43 +08:00
};
#endif // TEXTPAINTER_H