up vote 2 down vote favorite
share [g+] share [fb]

I have directly added some QWidgets to a QToolbar but simply going widget->setVisible(false) did not work. Can someone please give me an example of how to show and hide a widget that is on a QToolbar?

Thanks!

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

You need to call setVisible() on the appropriate QAction instead. For example, addWidget() returns a QAction*:

QAction* widgetAction = toolBar->addWidget(someWidget);
widgetAction->setVisible(false);
link|improve this answer
Thanks, didn't notice it returned a QAction on the addWidget! So much for knowing how to read simple API docs. – James Nov 8 '09 at 16:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.