I have a plug-in for Reader 10 written using wxWidgets 3.0 under Mac OS X 10.7 and I have all problems
described in OP post. Issue with sockets is added. (when releasing socket object it has deleted twice sometimes)
In this thread Adobe says that a new wxWidges sample will be coming shortly.
The wxPlugin from SDK 11 samples looks like this:
ACCB1ASBoolACCB2 PluginInit(void)
{
#ifndef MAC_PLATFORM
/* The following code is not supported on Mac. */
wxInitialize();
mainFrame = new AcrobatFrame;
wxTheApp->SetTopWindow(mainFrame);
return MyPluginSetmenu();
#else
returntrue;
#endif
}
Is that true that wxWidgets officialy not supported in Acrobat SDK?
Is there some approved and tested technique for proper using of wxWidgets with Acrobat SDK for Mac?