BALL  1.4.79
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
HTMLView.h
Go to the documentation of this file.
1 #ifndef BALL_VIEW_WIDGETS_HTMLVIEW_H
2 #define BALL_VIEW_WIDGETS_HTMLVIEW_H
3 
4 #ifndef BALL_VIEW_WIDGETS_DOCKWIDGET_H
6 #endif
7 
8 #include <QtCore/QUrl>
9 #include <QtWebKit/QWebView>
10 
11 namespace BALL
12 {
13  namespace VIEW
14  {
15 
17  {
18  Q_OBJECT
19 
20  public:
21 
22  HTMLView(QWidget* parent = 0);
23  };
24 
26  {
27  public:
28 
30 
31  HTMLViewDock(QWidget* parent, const char* title = 0);
32 
33  HTMLViewDock(HTMLView* view, QWidget* parent, const char* title = 0);
34 
35  void setHTMLView(HTMLView* view);
36  HTMLView* getHTMLView();
37  const HTMLView* getHTMLView() const;
38 
39  protected:
41  };
42 
43  }
44 }
45 
46 #endif // BALL_VIEW_WIDGETS_HTMLVIEW_H
#define BALL_VIEW_EXPORT
Definition: COMMON/global.h:52
#define BALL_EMBEDDABLE(TYPE, BASE)
Definition: embeddable.h:31
HTMLView * html_view_
Definition: HTMLView.h:40