Set position (to right) of Qt QPushButton popup menu(设置 Qt QPushButton 弹出菜单的位置(向右))
问题描述
我正在为 Qt 按钮小部件编写弹出菜单.每当单击按钮时,都会弹出一个菜单(在按钮下方).
I am writing a popup menu for a Qt push button widget. Whenever the push button is clicked, a menu pops up (below the push button).
弹出菜单默认在左侧下方.
The popup menu is left-sided below by default.
有什么方法可以让弹出菜单在右侧按钮下方弹出?
Are there any ways to make the popup menu to pop up on the right side below the push button?
没有设置位置功能,不知道有没有什么复杂的方法呢?
There is no set position function, so I wonder if there is some sophisticated way of doing it?
这是一些代码(用于弹出菜单):
Here is some code (for popup menu):
QMenu *menuMode = new QMenu(this);
min = menu ->addAction("In");
mout = menu ->addAction("out");
ui->pushButtonMode->setMenu(menuMode); //I am writing in MainWindow, that's there is ui
推荐答案
这可以通过继承 QMenu 并将弹出菜单移动到 showEvent
中您想要的位置来完成:
This can be done by subclassing QMenu and moving the popup menu where you want to have it in showEvent
:
popupmenu.h
#ifndef POPUPMENU_H
#define POPUPMENU_H
#include <QMenu>
class QPushButton;
class QWidget;
class PopupMenu : public QMenu
{
Q_OBJECT
public:
explicit PopupMenu(QPushButton* button, QWidget* parent = 0);
void showEvent(QShowEvent* event);
private:
QPushButton* b;
};
#endif // POPUPMENU_H
popupmenu.cpp
#include "popupmenu.h"
#include <QPushButton>
PopupMenu::PopupMenu(QPushButton* button, QWidget* parent) : QMenu(parent), b(button)
{
}
void PopupMenu::showEvent(QShowEvent* event)
{
QPoint p = this->pos();
QRect geo = b->geometry();
this->move(p.x()+geo.width()-this->geometry().width(), p.y());
}
mainwindow.cpp
...
PopupMenu* menu = new PopupMenu(ui->pushButton, this);
...
ui->pushButton->setMenu(menu);
看起来像这样:
这篇关于设置 Qt QPushButton 弹出菜单的位置(向右)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:设置 Qt QPushButton 弹出菜单的位置(向右)


基础教程推荐
- 初始化列表*参数*评估顺序 2021-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- CString 到 char* 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16