verbose; refs #167
This commit is contained in:
@@ -695,7 +695,7 @@ Specify full path to executable program</source>
|
||||
<context>
|
||||
<name>qbrowserlib::SwissWebWidget</name>
|
||||
<message>
|
||||
<location filename="swisswebwidget.hxx" line="37"/>
|
||||
<location filename="swisswebwidget.hxx" line="41"/>
|
||||
<source>Browser Tools</source>
|
||||
<comment>name of the browser's toolbar</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
|
@@ -695,7 +695,7 @@ Specify full path to executable program</source>
|
||||
<context>
|
||||
<name>qbrowserlib::SwissWebWidget</name>
|
||||
<message>
|
||||
<location filename="swisswebwidget.hxx" line="37"/>
|
||||
<location filename="swisswebwidget.hxx" line="41"/>
|
||||
<source>Browser Tools</source>
|
||||
<comment>name of the browser's toolbar</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
|
@@ -695,7 +695,7 @@ Specify full path to executable program</source>
|
||||
<context>
|
||||
<name>qbrowserlib::SwissWebWidget</name>
|
||||
<message>
|
||||
<location filename="swisswebwidget.hxx" line="37"/>
|
||||
<location filename="swisswebwidget.hxx" line="41"/>
|
||||
<source>Browser Tools</source>
|
||||
<comment>name of the browser's toolbar</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
|
@@ -695,7 +695,7 @@ Specify full path to executable program</source>
|
||||
<context>
|
||||
<name>qbrowserlib::SwissWebWidget</name>
|
||||
<message>
|
||||
<location filename="swisswebwidget.hxx" line="37"/>
|
||||
<location filename="swisswebwidget.hxx" line="41"/>
|
||||
<source>Browser Tools</source>
|
||||
<comment>name of the browser's toolbar</comment>
|
||||
<translation type="unfinished"></translation>
|
||||
|
@@ -14,6 +14,8 @@
|
||||
#include <QtGui/QToolBar>
|
||||
#include <QtGui/QStatusBar>
|
||||
|
||||
#include <QtDebug>
|
||||
|
||||
//! @addtogroup qbrowserlib
|
||||
//! @{
|
||||
|
||||
@@ -30,16 +32,20 @@ namespace qbrowserlib {
|
||||
SwissWebWidget(QWidget* p=0): QWidget(p) {
|
||||
setupUi(this);
|
||||
QMainWindow* w(qobject_cast<QMainWindow*>(p));
|
||||
qDebug()<<"Parent "<<p<<(w?"is":"is not")<<" a QMainWindow";
|
||||
if (w) {
|
||||
/*! Within a QMainWindow, the widget automatically reparents
|
||||
the top buttons to the toolbar and the bottom status
|
||||
line to the window's status bar. */
|
||||
qDebug()<<"Rearranging";
|
||||
QToolBar* t(w->addToolBar(trUtf8("Browser Tools",
|
||||
"name of the browser's toolbar")));
|
||||
_tools->setParent(t);
|
||||
_statusbar->removeWidget(_status);
|
||||
for (int i(_statusbar->count()); i>0;)
|
||||
for (int i(_statusbar->count()); i>0;) {
|
||||
qDebug()<<"Rearranging item "<<(i-1)<<_statusbar->itemAt(--i);
|
||||
w->statusBar()->addWidget(_statusbar->itemAt(--i)->widget());
|
||||
}
|
||||
}
|
||||
}
|
||||
protected:
|
||||
|
Reference in New Issue
Block a user