qt QToolBar从右添加QAction
时间: 2023-07-05 07:29:05 浏览: 171
您可以使用 `QToolBar` 的 `insertAction()` 函数将 `QAction` 从右侧添加到工具栏中。以下是一个示例:
```cpp
QToolBar *toolBar = new QToolBar(this);
QAction *action = new QAction(QIcon("icon.png"), "Action", this);
toolBar->insertAction(nullptr, action); // 添加到最右侧
```
在上面的示例中,`insertAction()` 函数的第一个参数是 `nullptr`,表示将 `QAction` 添加到工具栏的最右侧。您还可以将其替换为其他 `QAction`,以指定新 `QAction` 的插入位置。
相关问题
qt QToolBar如何从最右侧添加QAction?
可以使用QToolBar的addSeparator()函数在工具栏中插入一个分隔符,然后使用insertAction()函数将QAction插入到分隔符的前面,这样就可以实现在最右侧添加QAction的效果。示例代码如下:
```cpp
QToolBar *toolBar = new QToolBar(this);
toolBar->setWindowTitle("My ToolBar");
// 添加分隔符
QAction *separator = toolBar->addSeparator();
// 添加要插入的QAction
QAction *action = new QAction("My Action", this);
// 将QAction插入到分隔符的前面
toolBar->insertAction(separator, action);
```
这样就可以将QAction添加到工具栏的最右侧了。
qt QToolBar如何从最右侧开始添加QAction?
可以使用QToolBar的addActions()函数将多个QAction同时添加到工具栏中,然后使用setToolButtonStyle()函数将工具栏的显示方式设置为Qt::ToolButtonFollowStyle,这样工具栏上的按钮就会自动填充整个工具栏,并且从最右侧开始添加QAction。示例代码如下:
```cpp
QToolBar *toolBar = new QToolBar(this);
toolBar->setWindowTitle("My ToolBar");
// 添加要插入的QAction
QAction *action1 = new QAction("Action 1", this);
QAction *action2 = new QAction("Action 2", this);
QAction *action3 = new QAction("Action 3", this);
// 将多个QAction添加到工具栏中
toolBar->addActions({action1, action2, action3});
// 将工具栏的显示方式设置为Qt::ToolButtonFollowStyle
toolBar->setToolButtonStyle(Qt::ToolButtonFollowStyle);
```
这样就可以从最右侧开始添加QAction了。
阅读全文