-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhscrollwebview.cpp
57 lines (51 loc) · 2.36 KB
/
hscrollwebview.cpp
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
#include "hscrollwebview.h"
#include <QDebug>
#include <QWheelEvent>
#include <QWebChannel>
HScrollWebView::HScrollWebView(QWidget *parent) :
QWebEngineView(parent)
{
connect(this->page(), SIGNAL(loadFinished(bool)), this, SLOT(scrollToCursor()));
QWebChannel* channel = new QWebChannel(this);
this->page()->setWebChannel(channel);
channel->registerObject(QString("app"), this);
}
void HScrollWebView::wheelEvent(QWheelEvent *ev){
this->page()->runJavaScript(QString("window.scrollBy(%1, 0);").arg( ev->delta()));
}
void HScrollWebView::scrollToCursor(){
QString jsScrollScript(
"var element = document.getElementById(\"qdCursor\");"
"if(typeof element != 'undefined'){"
" element.scrollIntoView(); "
"}"
);
this->page()->runJavaScript(jsScrollScript);
QString jsWebChannelConnect(
"var elements = document.getElementsByTagName('a');"
"console.log(\"found \", elements.length, \" elements\");"
"for(var i = 0, len = elements.length; i < len; i++){"
" console.log(\"installing onclick handler on \",i);"
" elements[i].onclick = function(e){"
" console.log('onclick handler ', e);"
" if(typeof window.app == 'undefined'){"
" new QWebChannel(qt.webChannelTransport, function(channel){"
" console.log(channel.objects.app);"
" window.app = channel.objects.app;"
" window.app.linkClicked(e.target.href);"
" });"
" }"
" else{"
" window.app.linkClicked(e.target.href);"
" }"
" return false;"
" }"
"};"
);
this->page()->runJavaScript(jsWebChannelConnect);
}
void HScrollWebView::linkClicked(QString linkTarget){
QString navigationRequestTarget(linkTarget.remove(0, linkTarget.lastIndexOf('/') + 1).replace("html", "mkd"));
qDebug() << "link clicked: " << navigationRequestTarget;
emit navigationRequest(navigationRequestTarget);
}