一般的情况下有工具栏的都用QMainWindow作为基类,但是我不想用QMainWindos做基类,我只是想使用其中的QToolButton和StatusBar,所以用QWidget做基类
QToolButton添加到ToolBar后它本身的一些属性就不能用了,我向实现有外围设备插入后在工具栏显示图标,设备移除后图标也相应的移除,如果哦是用QAction还好弄,只要用QAction的函数
void QToolBar::addAction ( QAction * action )
This is an overloaded function.
Appends the action action to the toolbar's list of actions.
这个函数实现在工具栏中添加动作QAction,当移除时就可以用
void QWidget::removeAction ( QAction * action )
Removes the action action from this widget's list of actions.
See also insertAction(), actions(), and insertAction().
这个是在工具栏的一个点击一次只可以有一个动作的情况,我想实现的是在工具栏的按钮上可以再加上下拉菜单,比如插入个USB设备,他的下拉菜单有移除USB设备,打开USB设备,这样的情况下用QAction就不合适 ,在QAction中有设置菜单的函数,但是我用那个很不好用,后来换上了QToolButton,QToolButton的的setPopupMode要设置成
QToolButton::InstantPopup,否则也不好用,它的菜单动作不能马上调出来,由于想移除图标,QToolButton是从QWidget继承过来的,所以我试了他的函数close(),hide(),都不起作用,我选择delete toolbutton就把整个窗口删除了,用deletelater函数可以删除,但是下次再加上等于是新建了带动作菜单的toolbutton,不能实现连续工作,
最后的解决方法是使用这个函数
QAction * QToolBar::addWidget ( QWidget * widget )
Adds the given widget to the toolbar as the toolbar's last item.
The toolbar takes ownership of widget.
If you add a QToolButton with this method, the tools bar's Qt::ToolButtonStyle will not be respected.
toolbutton放进工具栏后他的这些一些函数就不起作用了,
只能是这样了: USB_addwidget_return=toolBar->addWidget(action_USB);
USB_addwidget_return->setVisible(false);
USB_addwidget_return->setVisible(true);
用这种方法实现按钮的看上去的添加和删除。