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.
37 lines
858 B
37 lines
858 B
/*! @file |
|
|
|
@id $Id$ |
|
*/ |
|
// 1 2 3 4 5 6 7 8 |
|
// 45678901234567890123456789012345678901234567890123456789012345678901234567890 |
|
|
|
#ifndef __SWISSWEBWIDGET_HXX__ |
|
#define __SWISSWEBWIDGET_HXX__ |
|
|
|
#include <qbrowserlib/ui_swisswebwidget.h> |
|
|
|
#include <QtGui/QMainWindow> |
|
|
|
//! @addtogroup qbrowserlib |
|
//! @{ |
|
|
|
namespace qbrowserlib { |
|
|
|
//! Window Widget for complete page witghin a webbrowser. |
|
/*! Contains a toolbar, a status bar and @refs |
|
SwissWebView. Instanciate this and you have a complete |
|
browser. To be used inside a QTabBar, as main window or as |
|
docking widget. */ |
|
class SwissWebWidget: public QMainWindow, private Ui::SwissWebWidget { |
|
public: |
|
SwissWebWidget(QWidget* p=0): QMainWindow(p) { |
|
setupUi(this); |
|
} |
|
protected: |
|
}; |
|
|
|
} |
|
|
|
//! @} |
|
|
|
#endif
|
|
|