菜单栏未显示简单的QMainWindow代码,Qt Creator Mac OS



我在Qt桌面应用程序的内置菜单栏中添加菜单项时遇到问题。我将 QMainWindow 类参考文档中提供的代码复制到一个非常简单的应用程序,用于创建菜单。不幸的是,它在代码运行时没有显示。我只是尝试将"文件"菜单添加到菜单栏。我运行的是Mac OSX 10.9.3和Qt Creator 5.3.1。

我的代码截图如下。我在主窗口.cpp源代码中尝试了未注释和注释的代码。

主窗口.cpp

#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    //myMenuBar = menuBar();
    //fileMenu = myMenuBar -> addMenu(tr("&File"));
    fileMenu = menuBar() -> addMenu(tr("&File"));
    ui->setupUi(this);
}
MainWindow::~MainWindow()
{
    delete ui;
}

主窗口.h

#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include <QMenuBar>
#include <QMenu>
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
    Q_OBJECT
public:
    explicit MainWindow(QWidget *parent = 0);
    ~MainWindow();
private:
    Ui::MainWindow *ui;
    QMenuBar* myMenuBar;
    QMenu* fileMenu;
};
#endif //MAINWINDOW_H

主.cpp

#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
    QApplication a(argc, argv);
    MainWindow w;
    w.show();
    return a.exec();
}

ComeOnMenuBar.pro

#-------------------------------------------------
#
# Project created by QtCreator 2014-08-12T02:28:33
#
#-------------------------------------------------
QT       += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = ComeOnMenuBar
TEMPLATE = app

SOURCES += main.cpp
        mainwindow.cpp
HEADERS  += mainwindow.h
FORMS    += mainwindow.ui

任何帮助将不胜感激!谢谢!

注意:我知道使用 setNativeMenuBar(false( 有效,但我希望 mac os 本机菜单栏正常工作:显示在左上角的菜单栏。

我在 ubuntu 中使用 python 发布了相同的

问题

我使用了menubar的setNativeMenubar方法。你可以在 c++ pyqt 文档中找到它。

    menu = self.menuBar()
    menu.setNativeMenuBar(False)
我知道

它晚了 4 年,但我遇到了同样的问题,并在 ubuntu/Mac OS 的 Qt 论坛上发现了这个问题。

https://forum.qt.io/topic/7276/menu-not-showing-up-in-menubar/15

在声明主窗口之前,将以下内容添加到您的主.cpp:

QCoreApplication::setAttribute(Qt::AA_DontUseNativeMenuBar);

就我而言,我的主.cpp文件现在如下所示:

int main(int argc, char *argv[])
{
QApplication a(argc, argv);
AddressBook addressBook;
AddressBookController controller (&addressBook);
QCoreApplication::setAttribute(Qt::AA_DontUseNativeMenuBar); //fix for menubar notshowing in ubuntu
MainWindow w(&controller);
w.show();
return a.exec();

}

这是OS X上非常古老的Qt错误。您可以通过调用 QMenuBar::addAction、QMenuBar::removeAction 和 QMenuBar::insertAction 来使用 QMenu 和 QMenuBar。这个技巧是通过调用QMenu::menuAction方法来完成的。

检查下面的代码:

QMenu *menu = new QMenu("First menu");
menu->addAction("item 1");
menu->addAction("item 2");
m_menuBar->addAction(menu->menuAction());

您也可以在此处查看我的另一个答案,其中包含准备编译和运行的代码片段。

支持最多的答案适用于 Python,但问题是针对C++的。但是,方法是相同的。

您可以在主窗口中的构造函数顶部添加此行.cpp:

menuBar()->setNativeMenuBar(false);

为了让 OS X 获得对菜单栏的控制,您需要创建没有父小部件的菜单栏。这意味着在mainwindow.cpp文件中,通常必须在代码中创建菜单栏。

这是我的代码,它还在 PROGRAM 菜单下拉菜单中放入"关于"和"首选项"菜单项,这是 Mac 上的标准:

MainWindow::MainWindow(QWidget *parent) :
    QMainWindow(parent),
    ui(new Ui::MainWindow)
{
    this->aboutAction = new QAction(0);
    this->aboutAction->setMenuRole(QAction::AboutRole);
    this->aboutWindow = new About();
    this->preferencesAction = new QAction(0);
    this->preferencesAction->setMenuRole(QAction::PreferencesRole);
    this->preferencesWindow = new Preferences();
    this->mainMenuBar = new QMenuBar(0);  // 0 explicitly states to create it with no parent
    this->mainMenu = new QMenu(0);        // Same here
    this->mainMenuBar->addMenu(this->mainMenu);
    this->mainMenu->addAction(this->aboutAction);
    this->mainMenu->addAction(this->preferencesAction);
    this->setMenuBar(this->mainMenuBar);
    // ...
}

PreferencesAbout 是处理其各自窗口的类,不包括代码。

您需要删除自动生成的主窗口 UI 表单中的菜单栏。

menu = self.menuBar()

menu.setNativeMenuBar(False(

相关内容

  • 没有找到相关文章

最新更新