new experimental main browser widget; refs #167

This commit is contained in:
Marc Wäckerlin
2012-11-07 09:57:38 +00:00
parent b0216f59a3
commit 89af031a8f
6 changed files with 346 additions and 1 deletions

View File

@@ -0,0 +1,27 @@
/*! @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:
};
}
//! @}