From 262bf46d18ffea9754cee9d7600288c971e8b19f Mon Sep 17 00:00:00 2001 From: kgv Date: Sat, 2 Nov 2013 19:09:03 +0400 Subject: [PATCH] Draw_Window - workaround broken Tk.framework installations in OS X SDKs --- src/Draw/Draw_Window.cxx | 40 ++++++++++++++++++++++++----------- src/DrawResources/DrawDefault | 1 + 2 files changed, 29 insertions(+), 12 deletions(-) diff --git a/src/Draw/Draw_Window.cxx b/src/Draw/Draw_Window.cxx index 63e2e87a5c..77f39bc032 100755 --- a/src/Draw/Draw_Window.cxx +++ b/src/Draw/Draw_Window.cxx @@ -135,15 +135,30 @@ defaultPrompt: #endif #include -#include + +#if defined(__APPLE__) && !defined(MACOSX_USE_GLX) + // use forward declaration for small subset of used Tk functions + // to workaround broken standard Tk framework installation within OS X SDKs + // which *HAS* X11 headers in Tk.framework but doesn't install them appropriately + #define _TK + typedef struct Tk_Window_* Tk_Window; + typedef const char* Tk_Uid; + + extern "C" int Tk_Init (Tcl_Interp* interp); + extern "C" void Tk_MainLoop(); + extern "C" Tk_Window Tk_MainWindow (Tcl_Interp* interp) ; + extern "C" Tk_Uid Tk_GetUid (const char* str); + extern "C" const char* Tk_SetAppName (Tk_Window tkwin, const char* name) ; + extern "C" void Tk_GeometryRequest (Tk_Window tkwin, int reqWidth, int reqHeight); + +#else + #include +#endif /* * Global variables used by the main program: */ -static Tk_Window mainWindow; /* The main window for the application. If - * NULL then the application no longer - * exists. */ char *tcl_RcFileName = NULL; /* Name of a user-specific startup script * to source if the application is being run * interactively (e.g. "~/.wishrc"). Set @@ -1092,9 +1107,8 @@ Standard_Boolean Init_Appli() Tcl_StaticPackage(interp, "Tk", Tk_Init, (Tcl_PackageInitProc *) NULL); - mainWindow = - Tk_MainWindow(interp) ; - if (mainWindow == NULL) { + Tk_Window aMainWindow = Tk_MainWindow(interp) ; + if (aMainWindow == NULL) { #if ((TCL_MAJOR_VERSION > 8) || ((TCL_MAJOR_VERSION == 8) && (TCL_MINOR_VERSION >= 5))) fprintf(stderr, "%s\n", Tcl_GetStringResult(interp)); #else @@ -1102,11 +1116,13 @@ Standard_Boolean Init_Appli() #endif exit(1); } - Tk_Name(mainWindow) = - Tk_GetUid(Tk_SetAppName(mainWindow, - "Draw")) ; +#if defined(__APPLE__) && !defined(MACOSX_USE_GLX) + Tk_SetAppName(aMainWindow, "Draw"); +#else + Tk_Name(aMainWindow) = Tk_GetUid(Tk_SetAppName(aMainWindow, "Draw")); +#endif - Tk_GeometryRequest(mainWindow, 200, 200); + Tk_GeometryRequest (aMainWindow, 200, 200); #if !defined(__APPLE__) || defined(MACOSX_USE_GLX) if (Draw_DisplayConnection.IsNull()) @@ -1118,7 +1134,7 @@ Standard_Boolean Init_Appli() catch (Standard_Failure) { std::cout << "Cannot open display. Interpret commands in batch mode." << std::endl; - return Standard_False; + return Standard_False; } } if (Draw_WindowDisplay == NULL) diff --git a/src/DrawResources/DrawDefault b/src/DrawResources/DrawDefault index 17fe7485f6..7edb85033a 100755 --- a/src/DrawResources/DrawDefault +++ b/src/DrawResources/DrawDefault @@ -39,6 +39,7 @@ if { [file isdirectory $dir] } { if { ${stationname} == "windows" } { wm iconbitmap . -default [file join $dir lamp.ico] } + wm title . Draw } } else { puts "Warning: could not find DRAW directory"