如何将 QLineEdit 添加到菜单栏

发布于 2024-12-01 01:17:57 字数 282 浏览 0 评论 0原文

我正在尝试回收应用程序中的一些屏幕空间。我有一个搜索栏,它是一个基本的 QLineEdit 并且占用空间。在我的菜单栏中,我很容易有足够的空间来容纳这个搜索框,但我不知道如何将 LineEdit 放入菜单栏中。

有人可以帮助我将其添加到菜单栏吗?

我正在使用 Qt 4.7。

这是我试图完成的任务的图像。这是相当基本的图像,但我希望使用菜单栏的右半部分作为搜索框。

在此处输入图像描述

I am attempting to reclaim some screen real estate in my application. I've got a search bar that is a basic QLineEdit and takes up space. In my menu bar, I easily have enough room to fit this search box, but I can't figure out how to get the LineEdit into the menubar.

Can someone assist me in getting this added to a menubar?

I am using Qt 4.7.

Here is an image of what I am attempting to accomplish. It's fairly basic image, but I'm looking to use the right half of the menubar as a search box.

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

贱人配狗天长地久 2024-12-08 01:17:57

使用QWidgetAction。 QWidgetAction 用于将自定义小部件插入到基于操作的容器中,例如工具栏。

这是向菜单栏添加进度条的示例:

QWidgetAction *widgetAction = new QWidgetAction(this);
widgetAction->setDefaultWidget(new QProgressBar(this));
menubar.addAction(widgetAction);

Use QWidgetAction. QWidgetAction is for inserting custom widgets into action based containers, such as toolbars.

here is an example to add a progressbar to menu bar :

QWidgetAction *widgetAction = new QWidgetAction(this);
widgetAction->setDefaultWidget(new QProgressBar(this));
menubar.addAction(widgetAction);
画中仙 2024-12-08 01:17:57

您可以使用

void QMenuBar::setCornerWidget ( QWidget * widget, Qt::Cornercorner = Qt::TopRightCorner )

在菜单中添加您的小部件。

You could use

void QMenuBar::setCornerWidget ( QWidget * widget, Qt::Corner corner = Qt::TopRightCorner )

to add your widget in the menu.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文