forked from bupticybee/TexasSolver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
htmltableview.h
40 lines (35 loc) · 983 Bytes
/
htmltableview.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
#ifndef HTMLTABLEVIEW_H
#define HTMLTABLEVIEW_H
#include <QApplication>
#include <QTableView>
#include <QCursor>
#include <QMouseEvent>
#include <iostream>
#include "include/ui/worditemdelegate.h"
#include <QHeaderView>
class HtmlTableView: public QTableView
{
Q_OBJECT
public:
explicit HtmlTableView(QWidget *parent = 0);
HtmlTableView();
bool eventFilter(QObject *watched, QEvent *event);
void triger_resize();
signals:
void linkActivated(QString link);
void linkHovered(QString link);
void linkUnhovered();
void itemMouseChange(int i,int j);
protected:
void mousePressEvent(QMouseEvent *event);
void mouseMoveEvent(QMouseEvent *event);
void mouseReleaseEvent(QMouseEvent *event);
QString anchorAt(const QPoint &pos) const;
int last_bearing_i = 0;
int last_bearing_j = 0;
private:
QString _mousePressAnchor;
QString _lastHoveredAnchor;
void resizeEvent(QResizeEvent* ev);
};
#endif // HTMLTABLEVIEW_H