I have a QDockWidget and QToolBar in it. I tried to set StatusBar
for QdockWidget but it could not be set.
Every QDockWidget has default close button (top most right corner) but my DockWidget does not have it ?
Why ? And how to bring it back ?
myClass::myClass(QWidget* parent) :
QDockWidget(parent)
{
hide();
QWidget* newWidget = new QWidget();
QBoxLayout* tLayout = new QBoxLayout(QBoxLayout::TopToBottom,newWidget );
tLayout->setContentsMargins(0, 0, 0, 0);
QLabel *label = new QLabel("My Window",this);
this->setTitleBarWidget(label);
tbar = new QToolBar;
tbar->setIconSize(QSize(35,35));
tbar->setToolButtonStyle(Qt::ToolButtonTextUnderIcon);
tLayout->addWidget(tbar,0,Qt::AlignTop);
QGraphicsScene* scene = new QGraphicsScene(this);
QGraphicsView* view = new QGraphicsView(this);
view->setScene(scene);
tLayout->addWidget(view);
newWidget ->setLayout(tLayout);
bar = new QStatusBar();
bar->showMessage(tr("Ready"));
this->setWidget(bar);
setWidget(newWidget);
}
How to set status bar ? and enable close button ?