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.
26 lines
435 B
26 lines
435 B
14 years ago
|
#ifndef UBLIBWEBVIEW_H
|
||
|
#define UBLIBWEBVIEW_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include <QWebView>
|
||
|
#include <QVBoxLayout>
|
||
|
|
||
|
#include "board/UBLibraryController.h"
|
||
|
|
||
|
class UBLibWebView : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
UBLibWebView(QWidget* parent = 0, const char* name = "UBLibWebView");
|
||
|
~UBLibWebView();
|
||
|
|
||
|
void setElement(UBLibElement* elem);
|
||
|
|
||
|
private:
|
||
|
QWebView* mpView;
|
||
|
QVBoxLayout* mpLayout;
|
||
|
};
|
||
|
|
||
|
#endif // UBLIBWEBVIEW_H
|