vnote/src/widgets/webpage.h
Le Tan 52702a32e9 hard days for VNoteX project
Never say "refactor" again!!!
2020-11-28 23:10:43 +08:00

22 lines
451 B
C++

#ifndef WEBPAGE_H
#define WEBPAGE_H
#include <QWebEnginePage>
namespace vnotex
{
class WebPage : public QWebEnginePage
{
Q_OBJECT
public:
explicit WebPage(QWidget *p_parent = nullptr);
protected:
bool acceptNavigationRequest(const QUrl &p_url,
NavigationType p_type,
bool p_isMainFrame) Q_DECL_OVERRIDE;
};
}
#endif // WEBPAGE_H