Hello friends,
I’m writing a photoshop plugin on Mac, and want to create the UI with Qt. But when I just show a simple dialog, the photoshop menu was gone, and wasn’t responsible even after close the dialog.
====CODES====
void
PhotoshopPlugin::ShowDialog( )
{
int
argc = 0;
QApplication
a(argc, 0);
HelloDialog w(NULL, 0);
w.show();
a.exec();
}
I know the QmfcApp for windows, which will handle the Qt & MFC migration, and it works for me. But I can’t find a Mac version of the qmfcApp.
Any suggestions will be greatly appreciated.
Thanks,
Daniel