forked from nemomobile/fingerterm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
textrender.h
98 lines (77 loc) · 3.43 KB
/
textrender.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
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
/*
Copyright 2011-2012 Heikki Holstila <[email protected]>
This file is part of FingerTerm.
FingerTerm 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 2 of the License, or
(at your option) any later version.
FingerTerm 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 FingerTerm. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef TEXTRENDER_H
#define TEXTRENDER_H
#include <QQuickPaintedItem>
#include <QPainter>
#include "terminal.h"
class Util;
class TextRender : public QQuickPaintedItem
{
Q_PROPERTY(int myWidth READ myWidth WRITE setMyWidth NOTIFY myWidthChanged)
Q_PROPERTY(int myHeight READ myHeight WRITE setMyHeight NOTIFY myHeightChanged)
Q_PROPERTY(int fontWidth READ fontWidth NOTIFY fontSizeChanged)
Q_PROPERTY(int fontHeight READ fontHeight NOTIFY fontSizeChanged)
Q_PROPERTY(int fontPointSize READ fontPointSize WRITE setFontPointSize NOTIFY fontSizeChanged)
Q_PROPERTY(bool showBufferScrollIndicator READ showBufferScrollIndicator WRITE setShowBufferScrollIndicator NOTIFY showBufferScrollIndicatorChanged)
Q_OBJECT
public:
explicit TextRender(QQuickItem *parent = 0);
virtual ~TextRender();
void paint(QPainter*);
void setTerminal(Terminal* term);
void setUtil(Util* util) { iUtil = util; }
int myWidth() { return iWidth; }
int myHeight() { return iHeight; }
void setMyWidth(int w) { if(iWidth!=w) { iWidth=w; emit myWidthChanged(w); } }
void setMyHeight(int h) { if(iHeight!=h) { iHeight=h; emit myHeightChanged(h); } }
int fontWidth() { return iFontWidth; }
int fontHeight() { return iFontHeight; }
int fontDescent() { return iFontDescent; }
int fontAscent() { return iFontAscent; }
int fontPointSize() { return iFont.pointSize(); }
void setFontPointSize(int psize);
bool showBufferScrollIndicator() { return iShowBufferScrollIndicator; }
void setShowBufferScrollIndicator(bool s) { if(iShowBufferScrollIndicator!=s) { iShowBufferScrollIndicator=s; emit showBufferScrollIndicatorChanged(); } }
Q_INVOKABLE QPoint cursorPixelPos();
Q_INVOKABLE QSize cursorPixelSize();
signals:
void myWidthChanged(int newWidth);
void myHeightChanged(int newHeight);
void fontSizeChanged();
void showBufferScrollIndicatorChanged();
public slots:
void redraw();
void updateTermSize();
private:
Q_DISABLE_COPY(TextRender)
void paintFromBuffer(QPainter* painter, QList<QList<TermChar> >& buffer, int from, int to, int &y);
void drawBgFragment(QPainter* painter, int x, int y, int width, TermChar style);
void drawTextFragment(QPainter* painter, int x, int y, QString text, TermChar style);
QPoint charsToPixels(QPoint pos);
int iWidth;
int iHeight;
QFont iFont;
int iFontWidth;
int iFontHeight;
int iFontDescent;
int iFontAscent;
bool iShowBufferScrollIndicator;
Terminal *iTerm;
Util *iUtil;
// Holds the standard 256 xterm colors as listed here: http://www.calmar.ws/vim/256-xterm-24bit-rgb-color-chart.html
QList<QColor> iColorTable;
};
#endif // TEXTRENDER_H