Hi,

I want the menubar to behave like all the other applications in mac, but the mainwindow is attached to the menubar.

I have looked into the MDI example that comes along with 3.3.6. The only difference between that code and my code is

MDI Example:

Qt Code:
  1. file->insertItem("&New",this,SLOT(newDoc()),CTRL+Key_N);
To copy to clipboard, switch view to plain text mode 

My Application

Qt Code:
  1. fileAction->addTo(fileMenuPop);
To copy to clipboard, switch view to plain text mode 

Any ideas how I can separate them?

Thanks a lot.