qtoolbar

Outlook shortcuts style toolbar in Qt

Is there any way to create outloook shortcuts style toolbar in Qt? Should use normal toolbar and try to style it somehow (I have little idea how to achieve this)? Or does Qt provide builtin widget for this? I am talking about toolbar like on this image: http://www.winsupersite.com/images/reviews/outlook2k2%5F01.gif ...

How do I add controls other than buttons/actions to toolbars in Qt, such as text boxes and combo boxes?

From the screenshot featured on this page http://www.kde.gr.jp/~ichi/qt/designer-manual-3.html it seems like this functionality was available in Qt3. Was it removed in Qt4? ...

Best way to make a QToolBar of "checkable" QToolButtons where only one of the buttons can be checked at a time?

I'm looking to make a QToolBar with a few actions in it, each of which is "checkable" (that is, I call setCheckable(true) on each action after creating it, which leaves the button in the down state after clicking it). The only way I can think of "unchecking" the other buttons is to hook into each button's triggered signal and uncheck th...