zty199 8da4f87164 Improve Features
Using DDesktopServices::showFileItem() instead of calling
dde-file-manager directly in QProcess;
Delete useless QDebug info and headers include.
2020-12-16 18:58:00 +08:00

22 lines
386 B
C++

#ifndef WEBENGINEPAGE_H
#define WEBENGINEPAGE_H
#include <QWebEnginePage>
#include <QWebEngineProfile>
#include <QObject>
class WebEnginePage : public QWebEnginePage
{
public:
WebEnginePage(QObject *parent = nullptr);
protected:
QWebEnginePage *createWindow(WebWindowType type) override;
private slots:
void on_urlChanged(const QUrl url);
};
#endif // WEBENGINEPAGE_H