You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
490 B

#ifndef WIDGET_H
#define WIDGET_H
#include <QWidget>
class QWebView;
class QWebEngineView;
namespace Ui {
class Widget;
}
class Widget : public QWidget
{
Q_OBJECT
public:
explicit Widget(QWidget *parent = 0);
~Widget();
private slots:
void initForm();
void on_horizontalSlider_valueChanged(int value);
private:
Ui::Widget *ui;
#ifdef webkit
QList<QWebView *> webViews;
#elif webengine
QList<QWebEngineView *> webViews;
#endif
};
#endif // WIDGET_H