goldendict-ng/articlewebview.hh

82 lines
2.4 KiB
C++
Raw Normal View History

2012-02-20 21:47:14 +00:00
/* This file is (c) 2008-2012 Konstantin Isakov <ikm@goldendict.org>
* Part of GoldenDict. Licensed under GPLv3 or later, see the LICENSE file */
#ifndef __ARTICLEWEBVIEW_HH_INCLUDED__
#define __ARTICLEWEBVIEW_HH_INCLUDED__
#include "config.hh"
2021-12-05 06:50:54 +00:00
#include <QEvent>
#include <QMouseEvent>
#include <QWebEngineView>
#include <QPointer>
2021-07-06 13:01:50 +00:00
/// A thin wrapper around QWebEngineView to accommodate to some ArticleView's needs.
/// Currently the only added features:
/// 1. Ability to know if the middle mouse button is pressed or not according
/// to the view's current state. This is used to open links in new tabs when
2018-07-07 09:33:15 +00:00
/// they are clicked with middle button. There's also an added possibility to
/// get double-click events after the fact with the doubleClicked() signal.
2021-07-06 13:01:50 +00:00
class ArticleWebView: public QWebEngineView
{
Q_OBJECT
public:
ArticleWebView( QWidget * parent );
~ArticleWebView();
void setUp( Config::Class * cfg );
bool isMidButtonPressed() const
{ return midButtonPressed; }
2022-03-03 16:17:21 +00:00
void resetMidButtonPressed()
{
midButtonPressed = false;
}
void setSelectionBySingleClick( bool set )
{ selectionBySingleClick = set; }
2021-12-05 06:50:54 +00:00
bool eventFilter(QObject *obj, QEvent *ev);
2021-12-05 06:50:54 +00:00
signals:
/// Signals that the user has just double-clicked. The signal is delivered
/// after the event was processed by the view -- that's the difference from
/// installing an event filter. This is used for translating the double-clicked
/// word, which gets selected by the view in response to double-click.
void doubleClicked( QPoint pos );
void linkClicked( const QUrl & url );
protected:
2022-03-10 16:41:35 +00:00
QWebEngineView *createWindow(QWebEnginePage::WebWindowType type);
bool event( QEvent * event );
void singleClickAction(QMouseEvent *event);
void sendCustomMouseEvent(QEvent::Type type);
void mousePressEvent(QMouseEvent *event);
void mouseReleaseEvent( QMouseEvent * event );
void doubleClickAction( QMouseEvent * event );
void focusInEvent( QFocusEvent * event );
void wheelEvent( QWheelEvent * event );
2021-12-11 16:34:37 +00:00
private:
Config::Class * cfg;
//QPointer<QOpenGLWidget> child_;
bool midButtonPressed;
bool selectionBySingleClick;
2021-12-11 16:34:37 +00:00
//MouseDbClickEvent will also emit MousePressEvent which conflict the single click event.
//this variable used to distinguish the single click and real double click.
bool singleClickToDbClick;
bool dbClicked;
public slots:
//receive signal ,a link has been clicked.
void linkClickedInHtml(QUrl const& url);
};
#endif