Qt Code:
  1. MyControlPanel::MyControlPanel(QWidget *parent) :
  2. QFrame(parent, Qt::Window)
  3. {
  4.  
  5. setWindowTitle("Web SDK Simulator");
  6.  
  7. setupUi(this);
  8. MySettings::instance()->setParent(this,Qt::Window | Qt::WindowSystemMenuHint);
  9. }
To copy to clipboard, switch view to plain text mode 

I have code like this where I am creating a widget Setting which is child of Control Panel (type QFrame).
The setting widget not showing any button on Mac while its display close button on title bar rightly.

I have tried many options of window flags but to no avail.
Pls menation if I am missing something or any work around to achoieve this.

Ton of thanks,
-netmat