彻底改版2.0
This commit is contained in:
33
other/echartgauge/widget.h
Normal file
33
other/echartgauge/widget.h
Normal file
@@ -0,0 +1,33 @@
|
||||
#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
|
||||
QWebView *webView, *webView1, *webView2, *webView3;
|
||||
#elif webengine
|
||||
QWebEngineView *webView, *webView1, *webView2, *webView3;
|
||||
#endif
|
||||
};
|
||||
|
||||
#endif // WIDGET_H
|
||||
Reference in New Issue
Block a user