--- np2/macosx/toolwin.cpp 2003/11/03 10:19:43 1.1 +++ np2/macosx/toolwin.cpp 2003/11/05 16:08:59 1.4 @@ -5,13 +5,14 @@ #include "dosio.h" #include "ini.h" #include "resource.h" -#include "toolmac.h" +#include "toolwin.h" #include "np2opening.h" #include "dialogutils.h" #include "dialog.h" #include "soundmng.h" #include "fdefine.h" + enum { IDC_TOOLHDDACC = 0, IDC_TOOLFDD1ACC, @@ -114,6 +115,16 @@ static DragReceiveHandlerUPP dr; // ---- +static bool isPuma(void) { + long res; + Gestalt(gestaltSystemVersion, &res); + if (res<0x1020) { + return(true); + } + return(false); +} + + static PicHandle skinload(const char *path, Rect* bounds) { char fname[MAX_PATH]; @@ -441,6 +452,8 @@ static void toolwindestroy(void) { static pascal OSStatus cfWinproc(EventHandlerCallRef myHandler, EventRef event, void* userData) { OSStatus err = eventNotHandledErr; HICommand cmd; + ControlRef sub; + int i; if (GetEventClass(event)==kEventClassCommand && GetEventKind(event)==kEventCommandProcess ) { GetEventParameter(event, kEventParamDirectObject, typeHICommand, NULL, sizeof(HICommand), NULL, &cmd); @@ -497,6 +510,17 @@ static pascal OSStatus cfWinproc(EventHa err=noErr; break; + case kEventWindowDrawContent: + case kEventWindowShown: + for (i=0; i