-
Notifications
You must be signed in to change notification settings - Fork 1
/
qtexteditnumber.h
60 lines (52 loc) · 1.6 KB
/
qtexteditnumber.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
#ifndef QTEXTEDITNUMBER_H
#define QTEXTEDITNUMBER_H
#include <QWidget>
#include <QTextEdit>
#include <map>
/**
*
* @author Lucie LAGARRIGUE
* @author Ludovic VIMONT
*
* @brief Classe QTextEditNumber
*/
class QTextEditNumber : public QTextEdit {
Q_OBJECT
public:
explicit QTextEditNumber(QWidget *parent = 0);
int getFirstVisibleBlockId();
void lineNumberAreaPaintEvent(QPaintEvent *event);
int lineNumberAreaWidth();
/**
* @brief createSnippets : initialise les snippets pour chaque élément
*/
void createSnippets();
bool getOpen();
void setOpen(bool isOpen);
protected:
/**
* @brief keyPressEvent
* @param e : l'évènement lié à la touche pressée
* Si la touche pressée est tab, on applique la snippet. Sinon, on passe l'évènement à QTextEdit.
*/
void keyPressEvent(QKeyEvent *e);
signals:
public slots:
void resizeEvent(QResizeEvent *e);
void highlightCurrentLine();
private slots:
void updateLineNumberAreaWidth(int newBlockCount);
void updateLineNumberArea(QRectF);
void updateLineNumberArea(int);
void updateLineNumberArea();
private:
QWidget *lineNumberArea;
bool _open;
/**
* @brief _snippets : map contenant les snippets
* Pour chaque snippet, on a sa clé, qui est le raccourci utilisé, et la chaîne de caractères,
* qui est un élément html.
*/
std::map<std::string, QString> _snippets;
};
#endif // QTEXTEDITNUMBER_H