You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
292 B
C
24 lines
292 B
C
8 months ago
|
#ifndef QWEB_H
|
||
|
#define QWEB_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include <QWebEngineView>
|
||
|
namespace Ui {
|
||
|
class QWeb;
|
||
|
}
|
||
|
|
||
|
class QWeb : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit QWeb(QWidget *parent = nullptr);
|
||
|
~QWeb();
|
||
|
|
||
|
private:
|
||
|
Ui::QWeb *ui;
|
||
|
QWebEngineView *mWeb;
|
||
|
};
|
||
|
|
||
|
#endif // QWEB_H
|