MenuBar Not Showing for Simple QMainWindow Code, Qt Creator Mac OS

谁说胖子不能爱 提交于 2019-11-30 20:07:32

I had same issued in ubuntu with python

I used menubar's setNativeMenubar method. You can find this in c++ pyqt docs.

    menu = self.menuBar()
    menu.setNativeMenuBar(False)
Max Go

It's pretty old Qt bug on OS X. You can work with QMenu and QMenuBar by calling QMenuBar::addAction, QMenuBar::removeAction and QMenuBar::insertAction. The trick is done by calling of QMenu::menuAction method.

Check the code below:

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

Also you can check my another answer here with code snippet ready to compile and run.

I know its late by 4 yrs, but i ran into same issue & spotted this on the Qt forum for ubuntu/Mac OS.

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

Add the following to your main.cpp before you declare your Mainwindow w:

QCoreApplication::setAttribute(Qt::AA_DontUseNativeMenuBar);

In my case my main.cpp file now looks like:

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();

}

The answer that has the most upvote works for Python, but question is for C++. However, the method is the same.

You can add this line on top of your constructor in mainwindow.cpp:

menuBar()->setNativeMenuBar(false);
menu = self.menuBar()

menu.setNativeMenuBar(False)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!