mirror of
https://github.com/OpenFOAM/ThirdParty-6.git
synced 2025-12-08 06:57:43 +00:00
ParaView-5.0.1: Added the source-tree to ThirdParty-dev and patched as described in the README file
Resolves bug-report http://bugs.openfoam.org/view.php?id=2098
This commit is contained in:
31
ParaView-5.0.1/VTK/Examples/GUI/Qt/GraphicsView/WebView.h
Normal file
31
ParaView-5.0.1/VTK/Examples/GUI/Qt/GraphicsView/WebView.h
Normal file
@ -0,0 +1,31 @@
|
||||
|
||||
#ifndef WebView_h
|
||||
#define WebView_h
|
||||
|
||||
#include <QFrame>
|
||||
#include <QWebView>
|
||||
#include <QLineEdit>
|
||||
|
||||
class WebView : public QFrame
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
WebView(QWidget* p=0);
|
||||
~WebView();
|
||||
|
||||
QWebView* webview();
|
||||
|
||||
public Q_SLOTS:
|
||||
void go();
|
||||
|
||||
protected Q_SLOTS:
|
||||
void updateUrl(const QUrl& str);
|
||||
|
||||
protected:
|
||||
QWebView* mWebView;
|
||||
QLineEdit* mAddress;
|
||||
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user