verbose; refs #167

This commit is contained in:
Marc Wäckerlin
2012-11-08 09:27:52 +00:00
parent fbb837f84a
commit 997e2b37b3
5 changed files with 11 additions and 5 deletions

View File

@@ -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&apos;s toolbar</comment>
<translation type="unfinished"></translation>

View File

@@ -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&apos;s toolbar</comment>
<translation type="unfinished"></translation>

View File

@@ -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&apos;s toolbar</comment>
<translation type="unfinished"></translation>

View File

@@ -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&apos;s toolbar</comment>
<translation type="unfinished"></translation>

View File

@@ -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: