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.
28 lines
698 B
28 lines
698 B
13 years ago
|
/*! @file
|
||
|
|
||
|
@id $Id$
|
||
|
*/
|
||
|
// 1 2 3 4 5 6 7 8
|
||
|
// 45678901234567890123456789012345678901234567890123456789012345678901234567890
|
||
|
|
||
|
//! @addtogroup qbrowserlib
|
||
|
//! @{
|
||
|
|
||
|
namespace {
|
||
|
|
||
|
//! 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:
|
||
|
};
|
||
|
}
|
||
|
|
||
|
//! @}
|