The qtoolbar tag has no wiki summary.
0
votes
1answer
43 views
QToolButtons Not-Flat Button Style
I am using Qt Widgets version 4.8. I am placing QAction objects into a QToolBar. I am displaying text only, no icons. The text appears flat with no outline, until one hovers over the text, and then ...
1
vote
2answers
209 views
Toolbar layout with Qt Designer
I use the Qt Designer to design .ui files and compile them in my VS-Project.
We have a Toolbar class, derived from QToolbar.
Class initialization looks like this.
MyToolBar::ToolBar(QWidget* ...
0
votes
2answers
161 views
Qt toolbar/qtoolbutton action never triggered
I have the following piece of code, for some reason, from the UI window, MyActionDock inherited from QToolBar, it is displayed without any problem, when clicked on the button, the button color also ...
0
votes
0answers
86 views
QToolbar overflow menu is buried beneath other widgets
I have a QDialog form using a QVBoxLayout. The form has two toolbars, a textarea, and a status bar. The second (lower) toolbar has several buttons on it that fit fine when they are in icon-only mode ...
-1
votes
1answer
69 views
How to set a tool bar between two others
I have multiple tool bars that are all next too each other. I want the toolbar that is first to be third or before another. I can not figure out how to make it happen. Could anyone help?
here is what ...
1
vote
1answer
281 views
QToolBar position (How to make it stay at a fixed position)
I initially needed to display two QToolBars in such a way, they are in two rows. I found the solution for that problem through this:
How to set the line where a QToolBar is displayed?
In my program ...
1
vote
2answers
316 views
On Qt, how to change the icon of an action in the toolbar at runtime?
In a program which calculates abritary precision numbers.
I have an action on the taskbar.
QAction* button_stop_continue.
I've set the icon green icon in the beginning of the program, when ...
1
vote
1answer
84 views
How can I customize the appearance of the actions in my QToolBar?
I have just changed some toolbars from Q3ToolBars (with QToolButtons explicitly added to them) into Q4 toolbars (with actions added to them straight away instead.)
The old tool buttons had a nice ...
0
votes
0answers
113 views
Why won't my QToolBar fully extend itself and display all of its actions?
I'm working on some rather messy GUI code involving a Q3MainWindow with a central QGLWidget "scene" area and multiple toolbars along the top. In the end, I will change out ALL the outdated parts, but ...
0
votes
0answers
77 views
qtableview in qtoolbar
I'm currently trying to implement a new tool using qt 4.8.0.
From the GUI i want to be able to access this tool in two ways. For one I will have a property manager, basically a tableview where I can ...
0
votes
1answer
104 views
QToolbar not visible before 2nd call of show / setVisible(true)
I'm facing some kind of mystery :
if( itemSelectionne->parentItem()->type() == NodeType) {
((GraphicsScene*) this->scene())->unselectAll();
...
0
votes
3answers
318 views
Label in a QToolbar
How would you suggest to add a label on a QToolbar ? Since it only accepts action or somethings like that.
Thx
1
vote
3answers
299 views
Why cant a QToolButton be hidden after it is added to a QToolBar?
This works...
QToolButton * toolbutton = new QToolButton(this);
//hide before addWidget
toolbutton->hide();
addWidget(toolbutton);
But this doesn't
QToolButton * toolbutton = new ...
1
vote
1answer
255 views
QToolbar force shrink
Qt toolbars shrink and display an 'extend' button when there isn't enough space.
Is there anyway to create a toolbar pre-shrunk? I want to display just the first label so I can use a large number of ...
1
vote
1answer
125 views
Showing when a button has been pushed in Qt
I'm using Qt with C++, and I want to make a button that keeps looking pushed down after it is pushed and released. I'm currently making buttons on a QToolBar and doing something like ...
10
votes
3answers
1k views
Is there a way to define a QToolbar with buttons and popup menus using Qt Designer?
I am wanting to have a toolbar in Qt that contains either QActions or QToolbarButtons that have popup menus attached to them. I have been able to do this perfectly in the code by creating a QMenu, ...
0
votes
1answer
723 views
How to force QMenuBar to have the same background color as QToolBar
my menu bar is placed inside my toolbar :) And I wan't both of them to have the same background color. In some color themes menubar background is different then in toolbars (lighter). How do I sync ...
0
votes
1answer
698 views
How to Remove a widget from a QToolBar?
I'm building my App interface with Qt at the moment.
But one question arises...
I have a QToolbar to which I added a QToolButton with the QToolbar->addWidget method.
The problem is that I want to ...
0
votes
1answer
946 views
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 ...
3
votes
1answer
305 views
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?
0
votes
2answers
586 views
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 ...
