tkWinDialog.c
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:75k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * tkWinDialog.c --
  3.  *
  4.  * Contains the Windows implementation of the common dialog boxes.
  5.  *
  6.  * Copyright (c) 1996-1997 Sun Microsystems, Inc.
  7.  *
  8.  * See the file "license.terms" for information on usage and redistribution
  9.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  10.  *
  11.  * RCS: @(#) $Id: tkWinDialog.c,v 1.30.2.5 2005/10/05 03:51:09 hobbs Exp $
  12.  *
  13.  */
  14. #include "tkWinInt.h"
  15. #include "tkFileFilter.h"
  16. #include <commdlg.h>    /* includes common dialog functionality */
  17. #include <dlgs.h>       /* includes common dialog template defines */
  18. #include <cderr.h>      /* includes the common dialog error codes */
  19. /*
  20.  * This controls the use of the new style tk_chooseDirectory dialog.
  21.  */
  22. #define USE_NEW_CHOOSEDIR 1
  23. #ifdef USE_NEW_CHOOSEDIR
  24. #include <shlobj.h>     /* includes SHBrowseForFolder */
  25. /* These needed for compilation with VC++ 5.2 */
  26. #ifndef BIF_EDITBOX
  27. #define BIF_EDITBOX 0x10
  28. #endif
  29. #ifndef BIF_VALIDATE
  30. #define BIF_VALIDATE 0x0020
  31. #endif
  32. #ifndef BFFM_VALIDATEFAILED
  33. #ifdef UNICODE
  34. #define BFFM_VALIDATEFAILED 4
  35. #else
  36. #define BFFM_VALIDATEFAILED 3
  37. #endif
  38. #endif 
  39. /*
  40.  * The following structure is used by the new Tk_ChooseDirectoryObjCmd
  41.  * to pass data between it and its callback. Unqiue to Winodws platform.
  42.  */
  43. typedef struct ChooseDirData {
  44.    TCHAR utfInitDir[MAX_PATH];       /* Initial folder to use */
  45.    TCHAR utfRetDir[MAX_PATH];        /* Returned folder to use */
  46.    Tcl_Interp *interp;
  47.    int mustExist;                    /* true if file must exist to return from
  48.       * callback */
  49. } CHOOSEDIRDATA;
  50. #endif
  51. typedef struct ThreadSpecificData { 
  52.     int debugFlag;            /* Flags whether we should output debugging 
  53.        * information while displaying a builtin 
  54.        * dialog. */
  55.     Tcl_Interp *debugInterp;  /* Interpreter to used for debugging. */
  56.     UINT WM_LBSELCHANGED;     /* Holds a registered windows event used for
  57.        * communicating between the Directory
  58.        * Chooser dialog and its hook proc. */
  59.     HHOOK hMsgBoxHook;        /* Hook proc for tk_messageBox and the */
  60.     HICON hSmallIcon;         /* icons used by a parent to be used in */
  61.     HICON hBigIcon;           /* the message box */
  62. } ThreadSpecificData;
  63. static Tcl_ThreadDataKey dataKey;
  64. /*
  65.  * The following structures are used by Tk_MessageBoxCmd() to parse 
  66.  * arguments and return results.
  67.  */
  68. static const TkStateMap iconMap[] = {
  69.     {MB_ICONERROR, "error"},
  70.     {MB_ICONINFORMATION, "info"},
  71.     {MB_ICONQUESTION, "question"},
  72.     {MB_ICONWARNING, "warning"},
  73.     {-1, NULL}
  74. };
  75.   
  76. static const TkStateMap typeMap[] = {
  77.     {MB_ABORTRETRYIGNORE, "abortretryignore"},
  78.     {MB_OK,  "ok"},
  79.     {MB_OKCANCEL, "okcancel"},
  80.     {MB_RETRYCANCEL, "retrycancel"},
  81.     {MB_YESNO, "yesno"},
  82.     {MB_YESNOCANCEL, "yesnocancel"},
  83.     {-1, NULL}
  84. };
  85. static const TkStateMap buttonMap[] = {
  86.     {IDABORT, "abort"},
  87.     {IDRETRY, "retry"},
  88.     {IDIGNORE, "ignore"},
  89.     {IDOK, "ok"},
  90.     {IDCANCEL, "cancel"},
  91.     {IDNO, "no"},
  92.     {IDYES, "yes"},
  93.     {-1, NULL}
  94. };
  95. static const int buttonFlagMap[] = {
  96.     MB_DEFBUTTON1, MB_DEFBUTTON2, MB_DEFBUTTON3, MB_DEFBUTTON4
  97. };
  98. static const struct {int type; int btnIds[3];} allowedTypes[] = {
  99.     {MB_ABORTRETRYIGNORE, {IDABORT, IDRETRY,  IDIGNORE}},
  100.     {MB_OK,  {IDOK,    -1,       -1      }},
  101.     {MB_OKCANCEL, {IDOK,    IDCANCEL, -1      }},
  102.     {MB_RETRYCANCEL, {IDRETRY, IDCANCEL, -1      }},
  103.     {MB_YESNO, {IDYES,   IDNO,     -1      }},
  104.     {MB_YESNOCANCEL, {IDYES,   IDNO,     IDCANCEL}}
  105. };
  106. #define NUM_TYPES (sizeof(allowedTypes) / sizeof(allowedTypes[0]))
  107. /*
  108.  * The value of TK_MULTI_MAX_PATH dictactes how many files can
  109.  * be retrieved with tk_get*File -multiple 1.  It must be allocated
  110.  * on the stack, so make it large enough but not too large.  -- hobbs
  111.  * The data is stored as <dir><file1><file2>...<fileN>.
  112.  * MAX_PATH == 260 on Win2K/NT, so *40 is ~10K.
  113.  */
  114. #define TK_MULTI_MAX_PATH (MAX_PATH*40)
  115. /*
  116.  * The following structure is used to pass information between the directory
  117.  * chooser procedure, Tk_ChooseDirectoryObjCmd(), and its dialog hook proc.
  118.  */
  119. typedef struct ChooseDir {
  120.     Tcl_Interp *interp; /* Interp, used only if debug is turned on, 
  121.  * for setting the "tk_dialog" variable. */
  122.     int lastCtrl; /* Used by hook proc to keep track of last
  123.  * control that had input focus, so when OK
  124.  * is pressed we know whether to browse a
  125.  * new directory or return. */
  126.     int lastIdx; /* Last item that was selected in directory 
  127.  * browser listbox. */
  128.     TCHAR path[MAX_PATH]; /* On return from choose directory dialog, 
  129.  * holds the selected path.  Cannot return 
  130.  * selected path in ofnPtr->lpstrFile because
  131.  * the default dialog proc stores a '' in 
  132.  * it, since, of course, no _file_ was 
  133.  * selected. */
  134.     OPENFILENAME *ofnPtr; /* pointer to the OFN structure */
  135. } ChooseDir;
  136. /*
  137.  * Definitions of procedures used only in this file.
  138.  */
  139. #ifdef USE_NEW_CHOOSEDIR
  140. static UINT APIENTRY ChooseDirectoryValidateProc(HWND hdlg, UINT uMsg,
  141.     LPARAM wParam, LPARAM lParam);
  142. #else
  143. static UINT APIENTRY ChooseDirectoryHookProc(HWND hdlg, UINT uMsg, 
  144.     WPARAM wParam, LPARAM lParam);
  145. #endif
  146. static UINT CALLBACK ColorDlgHookProc(HWND hDlg, UINT uMsg, WPARAM wParam,
  147.     LPARAM lParam);
  148. static int  GetFileNameA(ClientData clientData, 
  149.     Tcl_Interp *interp, int objc, 
  150.     Tcl_Obj *CONST objv[], int isOpen);
  151. static int  GetFileNameW(ClientData clientData, 
  152.     Tcl_Interp *interp, int objc, 
  153.     Tcl_Obj *CONST objv[], int isOpen);
  154. static int  MakeFilter(Tcl_Interp *interp, char *string, 
  155.     Tcl_DString *dsPtr);
  156. static UINT APIENTRY OFNHookProc(HWND hdlg, UINT uMsg, WPARAM wParam, 
  157.     LPARAM lParam);
  158. static UINT APIENTRY OFNHookProcW(HWND hdlg, UINT uMsg, WPARAM wParam, 
  159.     LPARAM lParam);
  160. static LRESULT CALLBACK MsgBoxCBTProc(int nCode, WPARAM wParam, LPARAM lParam);
  161. static void SetTkDialog(ClientData clientData);
  162. /*
  163.  *-------------------------------------------------------------------------
  164.  *
  165.  * EatSpuriousMessageBugFix --
  166.  *
  167.  * In the file open/save dialog, double clicking on a list item
  168.  * causes the dialog box to close, but an unwanted WM_LBUTTONUP
  169.  *  message is sent to the window underneath. If the window underneath
  170.  *  happens to be a windows control (eg a button) then it will be
  171.  *  activated by accident.
  172.  *
  173.  *  This problem does not occur in dialog boxes, because windows
  174.  *  must do some special processing to solve the problem. (separate
  175.  *  message processing functions are used to cope with keyboard
  176.  *  navigation of controls.)
  177.  *
  178.  *  Here is one solution. After returning, we poll the message queue
  179.  *  for 200ms looking for WM_LBUTTON up messages. If we see one it's
  180.  *  consumed. If we get a WM_LBUTTONDOWN message, then we exit early,
  181.  *  since the user must be doing something new. This fix only works
  182.  *  for the current application, so the problem will still occur if
  183.  *  the open dialog happens to be over another applications button.
  184.  *  However this is a fairly rare occurrance.
  185.  *
  186.  * Results:
  187.  * None.
  188.  *
  189.  * Side effects:
  190.  * Consumes an unwanted BUTTON messages.
  191.  *
  192.  *-------------------------------------------------------------------------
  193.  */
  194. static void
  195. EatSpuriousMessageBugFix(void)
  196. {
  197.     MSG msg;
  198.     DWORD nTime = GetTickCount() + 200;
  199.     while (GetTickCount() < nTime) {
  200. if (PeekMessage(&msg,0,WM_LBUTTONDOWN,WM_LBUTTONDOWN,PM_NOREMOVE)) {
  201.     break;
  202. }
  203. PeekMessage(&msg,0,WM_LBUTTONUP,WM_LBUTTONUP,PM_REMOVE);
  204.     }
  205. }
  206. /*
  207.  *-------------------------------------------------------------------------
  208.  *
  209.  * TkWinDialogDebug --
  210.  *
  211.  * Function to turn on/off debugging support for common dialogs under
  212.  * windows.  The variable "tk_debug" is set to the identifier of the
  213.  * dialog window when the modal dialog window pops up and it is safe to 
  214.  * send messages to the dialog.
  215.  *
  216.  * Results:
  217.  * None.
  218.  *
  219.  * Side effects:
  220.  * This variable only makes sense if just one dialog is up at a time.
  221.  *
  222.  *-------------------------------------------------------------------------
  223.  */
  224. void     
  225. TkWinDialogDebug(
  226.     int debug)
  227. {
  228.     ThreadSpecificData *tsdPtr = (ThreadSpecificData *) 
  229.             Tcl_GetThreadData(&dataKey, sizeof(ThreadSpecificData));
  230.     tsdPtr->debugFlag = debug;
  231. }
  232. /*
  233.  *-------------------------------------------------------------------------
  234.  *
  235.  * Tk_ChooseColorObjCmd --
  236.  *
  237.  * This procedure implements the color dialog box for the Windows
  238.  * platform. See the user documentation for details on what it
  239.  * does.
  240.  *
  241.  * Results:
  242.  * See user documentation.
  243.  *
  244.  * Side effects:
  245.  * A dialog window is created the first time this procedure is called.
  246.  * This window is not destroyed and will be reused the next time the
  247.  * application invokes the "tk_chooseColor" command.
  248.  *
  249.  *-------------------------------------------------------------------------
  250.  */
  251. int
  252. Tk_ChooseColorObjCmd(clientData, interp, objc, objv)
  253.     ClientData clientData; /* Main window associated with interpreter. */
  254.     Tcl_Interp *interp; /* Current interpreter. */
  255.     int objc; /* Number of arguments. */
  256.     Tcl_Obj *CONST objv[]; /* Argument objects. */
  257. {
  258.     Tk_Window tkwin, parent;
  259.     HWND hWnd;
  260.     int i, oldMode, winCode, result;
  261.     CHOOSECOLOR chooseColor;
  262.     static int inited = 0;
  263.     static COLORREF dwCustColors[16];
  264.     static long oldColor; /* the color selected last time */
  265.     static CONST char *optionStrings[] = {
  266. "-initialcolor", "-parent", "-title", NULL
  267.     };
  268.     enum options {
  269. COLOR_INITIAL, COLOR_PARENT, COLOR_TITLE
  270.     };
  271.     result = TCL_OK;
  272.     if (inited == 0) {
  273. /*
  274.  * dwCustColors stores the custom color which the user can
  275.  * modify. We store these colors in a static array so that the next
  276.  * time the color dialog pops up, the same set of custom colors
  277.  * remain in the dialog.
  278.  */
  279. for (i = 0; i < 16; i++) {
  280.     dwCustColors[i] = RGB(255-i * 10, i, i * 10);
  281. }
  282. oldColor = RGB(0xa0, 0xa0, 0xa0);
  283. inited = 1;
  284.     }
  285.     tkwin = (Tk_Window) clientData;
  286.     parent = tkwin;
  287.     chooseColor.lStructSize = sizeof(CHOOSECOLOR);
  288.     chooseColor.hwndOwner = NULL;
  289.     chooseColor.hInstance = NULL;
  290.     chooseColor.rgbResult = oldColor;
  291.     chooseColor.lpCustColors = dwCustColors;
  292.     chooseColor.Flags = CC_RGBINIT | CC_FULLOPEN | CC_ENABLEHOOK;
  293.     chooseColor.lCustData = (LPARAM) NULL;
  294.     chooseColor.lpfnHook = (LPOFNHOOKPROC) ColorDlgHookProc;
  295.     chooseColor.lpTemplateName = (LPTSTR) interp;
  296.     for (i = 1; i < objc; i += 2) {
  297. int index;
  298. char *string;
  299. Tcl_Obj *optionPtr, *valuePtr;
  300. optionPtr = objv[i];
  301. valuePtr = objv[i + 1];
  302. if (Tcl_GetIndexFromObj(interp, optionPtr, optionStrings, "option",
  303. TCL_EXACT, &index) != TCL_OK) {
  304.     return TCL_ERROR;
  305. }
  306. if (i + 1 == objc) {
  307.     string = Tcl_GetStringFromObj(optionPtr, NULL);
  308.     Tcl_AppendResult(interp, "value for "", string, "" missing", 
  309.     (char *) NULL);
  310.     return TCL_ERROR;
  311. }
  312. string = Tcl_GetStringFromObj(valuePtr, NULL);
  313. switch ((enum options) index) {
  314.     case COLOR_INITIAL: {
  315. XColor *colorPtr;
  316. colorPtr = Tk_GetColor(interp, tkwin, string);
  317. if (colorPtr == NULL) {
  318.     return TCL_ERROR;
  319. }
  320. chooseColor.rgbResult = RGB(colorPtr->red / 0x100, 
  321. colorPtr->green / 0x100, colorPtr->blue / 0x100);
  322. break;
  323.     }
  324.     case COLOR_PARENT: {
  325. parent = Tk_NameToWindow(interp, string, tkwin);
  326. if (parent == NULL) {
  327.     return TCL_ERROR;
  328. }
  329. break;
  330.     }
  331.     case COLOR_TITLE: {
  332. chooseColor.lCustData = (LPARAM) string;
  333. break;
  334.     }
  335. }
  336.     }
  337.     Tk_MakeWindowExist(parent);
  338.     chooseColor.hwndOwner = NULL;
  339.     hWnd = Tk_GetHWND(Tk_WindowId(parent));
  340.     chooseColor.hwndOwner = hWnd;
  341.     
  342.     oldMode = Tcl_SetServiceMode(TCL_SERVICE_ALL);
  343.     winCode = ChooseColor(&chooseColor);
  344.     (void) Tcl_SetServiceMode(oldMode);
  345.     /*
  346.      * Ensure that hWnd is enabled, because it can happen that we
  347.      * have updated the wrapper of the parent, which causes us to
  348.      * leave this child disabled (Windows loses sync).
  349.      */
  350.     EnableWindow(hWnd, 1);
  351.     /*
  352.      * Clear the interp result since anything may have happened during the
  353.      * modal loop.
  354.      */
  355.     Tcl_ResetResult(interp);
  356.     /*
  357.      * 3. Process the result of the dialog
  358.      */
  359.     if (winCode) {
  360. /*
  361.  * User has selected a color
  362.  */
  363. char color[100];
  364. sprintf(color, "#%02x%02x%02x",
  365. GetRValue(chooseColor.rgbResult), 
  366.         GetGValue(chooseColor.rgbResult), 
  367. GetBValue(chooseColor.rgbResult));
  368.         Tcl_AppendResult(interp, color, NULL);
  369. oldColor = chooseColor.rgbResult;
  370. result = TCL_OK;
  371.     }
  372.     return result;
  373. }
  374. /*
  375.  *-------------------------------------------------------------------------
  376.  *
  377.  * ColorDlgHookProc --
  378.  *
  379.  * Provides special handling of messages for the Color common dialog
  380.  * box.  Used to set the title when the dialog first appears.
  381.  *
  382.  * Results:
  383.  * The return value is 0 if the default dialog box procedure should
  384.  * handle the message, non-zero otherwise. 
  385.  *
  386.  * Side effects:
  387.  * Changes the title of the dialog window.
  388.  *
  389.  *----------------------------------------------------------------------
  390.  */
  391. static UINT CALLBACK 
  392. ColorDlgHookProc(hDlg, uMsg, wParam, lParam)
  393.     HWND hDlg; /* Handle to the color dialog. */
  394.     UINT uMsg; /* Type of message. */
  395.     WPARAM wParam; /* First message parameter. */
  396.     LPARAM lParam; /* Second message parameter. */
  397. {
  398.     ThreadSpecificData *tsdPtr = (ThreadSpecificData *) 
  399.             Tcl_GetThreadData(&dataKey, sizeof(ThreadSpecificData));
  400.     switch (uMsg) {
  401. case WM_INITDIALOG: {
  402.     const char *title;
  403.     CHOOSECOLOR *ccPtr;
  404.     Tcl_DString ds;
  405.     /* 
  406.      * Set the title string of the dialog.
  407.      */
  408.     ccPtr = (CHOOSECOLOR *) lParam;
  409.     title = (const char *) ccPtr->lCustData;
  410.     if ((title != NULL) && (title[0] != '')) {
  411. (*tkWinProcs->setWindowText)(hDlg,
  412. Tcl_WinUtfToTChar(title, -1, &ds));
  413. Tcl_DStringFree(&ds);
  414.     }
  415.     if (tsdPtr->debugFlag) {
  416. tsdPtr->debugInterp = (Tcl_Interp *) ccPtr->lpTemplateName;
  417. Tcl_DoWhenIdle(SetTkDialog, (ClientData) hDlg);
  418.     }
  419.     return TRUE;
  420. }
  421.     }
  422.     return FALSE;
  423. }
  424. /*
  425.  *----------------------------------------------------------------------
  426.  *
  427.  * Tk_GetOpenFileCmd --
  428.  *
  429.  * This procedure implements the "open file" dialog box for the
  430.  * Windows platform. See the user documentation for details on what
  431.  * it does.
  432.  *
  433.  * Results:
  434.  * See user documentation.
  435.  *
  436.  * Side effects:
  437.  * A dialog window is created the first this procedure is called.
  438.  *
  439.  *----------------------------------------------------------------------
  440.  */
  441. int
  442. Tk_GetOpenFileObjCmd(clientData, interp, objc, objv)
  443.     ClientData clientData; /* Main window associated with interpreter. */
  444.     Tcl_Interp *interp; /* Current interpreter. */
  445.     int objc; /* Number of arguments. */
  446.     Tcl_Obj *CONST objv[]; /* Argument objects. */
  447. {
  448.     if (TkWinGetPlatformId() == VER_PLATFORM_WIN32_NT) {
  449. return GetFileNameW(clientData, interp, objc, objv, 1);
  450.     } else {
  451. return GetFileNameA(clientData, interp, objc, objv, 1);
  452.     }
  453. }
  454. /*
  455.  *----------------------------------------------------------------------
  456.  *
  457.  * Tk_GetSaveFileCmd --
  458.  *
  459.  * Same as Tk_GetOpenFileCmd but opens a "save file" dialog box
  460.  * instead
  461.  *
  462.  * Results:
  463.  * Same as Tk_GetOpenFileCmd.
  464.  *
  465.  * Side effects:
  466.  * Same as Tk_GetOpenFileCmd.
  467.  *
  468.  *----------------------------------------------------------------------
  469.  */
  470. int
  471. Tk_GetSaveFileObjCmd(clientData, interp, objc, objv)
  472.     ClientData clientData; /* Main window associated with interpreter. */
  473.     Tcl_Interp *interp; /* Current interpreter. */
  474.     int objc; /* Number of arguments. */
  475.     Tcl_Obj *CONST objv[]; /* Argument objects. */
  476. {
  477.     if (TkWinGetPlatformId() == VER_PLATFORM_WIN32_NT) {
  478. return GetFileNameW(clientData, interp, objc, objv, 0);
  479.     } else {
  480. return GetFileNameA(clientData, interp, objc, objv, 0);
  481.     }
  482. }
  483. /*
  484.  *----------------------------------------------------------------------
  485.  *
  486.  * GetFileNameW --
  487.  *
  488.  * Calls GetOpenFileName() or GetSaveFileName().
  489.  *
  490.  * Results:
  491.  * See user documentation.
  492.  *
  493.  * Side effects:
  494.  * See user documentation.
  495.  *
  496.  *----------------------------------------------------------------------
  497.  */
  498. static int 
  499. GetFileNameW(clientData, interp, objc, objv, open)
  500.     ClientData clientData; /* Main window associated with interpreter. */
  501.     Tcl_Interp *interp; /* Current interpreter. */
  502.     int objc; /* Number of arguments. */
  503.     Tcl_Obj *CONST objv[]; /* Argument objects. */
  504.     int open; /* 1 to call GetOpenFileName(), 0 to 
  505.  * call GetSaveFileName(). */
  506. {
  507.     OPENFILENAMEW ofn;
  508.     WCHAR file[TK_MULTI_MAX_PATH];
  509.     int result, winCode, oldMode, i, multi = 0;
  510.     char *extension, *filter, *title;
  511.     Tk_Window tkwin;
  512.     HWND hWnd;
  513.     Tcl_DString utfFilterString, utfDirString;
  514.     Tcl_DString extString, filterString, dirString, titleString;
  515.     Tcl_Encoding unicodeEncoding = TkWinGetUnicodeEncoding();
  516.     ThreadSpecificData *tsdPtr = (ThreadSpecificData *) 
  517.             Tcl_GetThreadData(&dataKey, sizeof(ThreadSpecificData));
  518.     static CONST char *saveOptionStrings[] = {
  519. "-defaultextension", "-filetypes", "-initialdir", "-initialfile",
  520. "-parent", "-title", NULL
  521.     };
  522.     static CONST char *openOptionStrings[] = {
  523. "-defaultextension", "-filetypes", "-initialdir", "-initialfile",
  524. "-multiple", "-parent", "-title", NULL
  525.     };
  526.     CONST char **optionStrings;
  527.     enum options {
  528. FILE_DEFAULT, FILE_TYPES, FILE_INITDIR, FILE_INITFILE,
  529. FILE_MULTIPLE, FILE_PARENT, FILE_TITLE
  530.     };
  531.     result = TCL_ERROR;
  532.     file[0] = '';
  533.     /*
  534.      * Parse the arguments.
  535.      */
  536.     extension = NULL;
  537.     filter = NULL;
  538.     Tcl_DStringInit(&utfFilterString);
  539.     Tcl_DStringInit(&utfDirString);
  540.     tkwin = (Tk_Window) clientData;
  541.     title = NULL;
  542.     if (open) {
  543. optionStrings = openOptionStrings;
  544.     } else {
  545. optionStrings = saveOptionStrings;
  546.     }
  547.     for (i = 1; i < objc; i += 2) {
  548. int index;
  549. char *string;
  550. Tcl_Obj *optionPtr, *valuePtr;
  551. optionPtr = objv[i];
  552. valuePtr = objv[i + 1];
  553. if (Tcl_GetIndexFromObj(interp, optionPtr, optionStrings,
  554. "option", 0, &index) != TCL_OK) {
  555.     goto end;
  556. }
  557. /*
  558.  * We want to maximize code sharing between the open and save file
  559.  * dialog implementations; in particular, the switch statement below.
  560.  * We use different sets of option strings from the GetIndexFromObj
  561.  * call above, but a single enumeration for both.  The save file
  562.  * dialog doesn't support -multiple, but it falls in the middle of
  563.  * the enumeration.  Ultimately, this means that when the index found
  564.  * by GetIndexFromObj is >= FILE_MULTIPLE, when doing a save file
  565.  * dialog, we have to increment the index, so that it matches the
  566.  * open file dialog enumeration.
  567.  */
  568. if (!open && index >= FILE_MULTIPLE) {
  569.     index++;
  570. }
  571. if (i + 1 == objc) {
  572.     string = Tcl_GetStringFromObj(optionPtr, NULL);
  573.     Tcl_AppendResult(interp, "value for "", string, "" missing", 
  574.     (char *) NULL);
  575.     goto end;
  576. }
  577. string = Tcl_GetStringFromObj(valuePtr, NULL);
  578. switch ((enum options) index) {
  579.     case FILE_DEFAULT: {
  580. if (string[0] == '.') {
  581.     string++;
  582. }
  583. extension = string;
  584. break;
  585.     }
  586.     case FILE_TYPES: {
  587. Tcl_DStringFree(&utfFilterString);
  588. if (MakeFilter(interp, string, &utfFilterString) != TCL_OK) {
  589.     goto end;
  590. }
  591. filter = Tcl_DStringValue(&utfFilterString);
  592. break;
  593.     }
  594.     case FILE_INITDIR: {
  595. Tcl_DStringFree(&utfDirString);
  596. if (Tcl_TranslateFileName(interp, string,
  597. &utfDirString) == NULL) {
  598.     goto end;
  599. }
  600. break;
  601.     }
  602.     case FILE_INITFILE: {
  603. Tcl_DString ds;
  604. if (Tcl_TranslateFileName(interp, string, &ds) == NULL) {
  605.     goto end;
  606. }
  607. Tcl_UtfToExternal(NULL, unicodeEncoding, Tcl_DStringValue(&ds),
  608. Tcl_DStringLength(&ds), 0, NULL, (char *) file,
  609. sizeof(file), NULL, NULL, NULL);
  610. break;
  611.     }
  612.     case FILE_MULTIPLE: {
  613. if (Tcl_GetBooleanFromObj(interp, valuePtr,
  614. &multi) != TCL_OK) {
  615.     return TCL_ERROR;
  616. }
  617. break;
  618.     }
  619.     case FILE_PARENT: {
  620. tkwin = Tk_NameToWindow(interp, string, tkwin);
  621. if (tkwin == NULL) {
  622.     goto end;
  623. }
  624. break;
  625.     }
  626.     case FILE_TITLE: {
  627. title = string;
  628. break;
  629.     }
  630. }
  631.     }
  632.     if (filter == NULL) {
  633. if (MakeFilter(interp, "", &utfFilterString) != TCL_OK) {
  634.     goto end;
  635. }
  636.     }
  637.     Tk_MakeWindowExist(tkwin);
  638.     hWnd = Tk_GetHWND(Tk_WindowId(tkwin));
  639.     ZeroMemory(&ofn, sizeof(OPENFILENAMEW));
  640.     ofn.lStructSize = sizeof(OPENFILENAMEW);
  641.     ofn.hwndOwner = hWnd;
  642. #ifdef _WIN64
  643.     ofn.hInstance = (HINSTANCE) GetWindowLongPtr(ofn.hwndOwner, 
  644. GWLP_HINSTANCE);
  645. #else
  646.     ofn.hInstance = (HINSTANCE) GetWindowLong(ofn.hwndOwner, 
  647. GWL_HINSTANCE);
  648. #endif
  649.     ofn.lpstrFile = (WCHAR *) file;
  650.     ofn.nMaxFile = TK_MULTI_MAX_PATH;
  651.     ofn.Flags = OFN_HIDEREADONLY | OFN_PATHMUSTEXIST 
  652.   | OFN_NOCHANGEDIR | OFN_EXPLORER;
  653.     ofn.lpfnHook = (LPOFNHOOKPROC) OFNHookProcW;
  654.     ofn.lCustData = (LPARAM) interp;
  655.     if (open != 0) {
  656. ofn.Flags |= OFN_FILEMUSTEXIST;
  657.     } else {
  658. ofn.Flags |= OFN_OVERWRITEPROMPT;
  659.     }
  660.     if (tsdPtr->debugFlag != 0) {
  661. ofn.Flags |= OFN_ENABLEHOOK;
  662.     }
  663.     if (multi != 0) {
  664. ofn.Flags |= OFN_ALLOWMULTISELECT;
  665.     }
  666.     if (extension != NULL) {
  667. Tcl_UtfToExternalDString(unicodeEncoding, extension, -1, &extString);
  668. ofn.lpstrDefExt = (WCHAR *) Tcl_DStringValue(&extString);
  669.     }
  670.     Tcl_UtfToExternalDString(unicodeEncoding,
  671.     Tcl_DStringValue(&utfFilterString),
  672.     Tcl_DStringLength(&utfFilterString), &filterString);
  673.     ofn.lpstrFilter = (WCHAR *) Tcl_DStringValue(&filterString);
  674.     if (Tcl_DStringValue(&utfDirString)[0] != '') {
  675. Tcl_UtfToExternalDString(unicodeEncoding,
  676. Tcl_DStringValue(&utfDirString),
  677. Tcl_DStringLength(&utfDirString), &dirString);
  678.     } else {
  679. /*
  680.  * NT 5.0 changed the meaning of lpstrInitialDir, so we have
  681.  * to ensure that we set the [pwd] if the user didn't specify
  682.  * anything else.
  683.  */
  684. Tcl_DString cwd;
  685. Tcl_DStringFree(&utfDirString);
  686. if ((Tcl_GetCwd(interp, &utfDirString) == (char *) NULL) ||
  687. (Tcl_TranslateFileName(interp,
  688. Tcl_DStringValue(&utfDirString), &cwd) == NULL)) {
  689.     Tcl_ResetResult(interp);
  690. } else {
  691.     Tcl_UtfToExternalDString(unicodeEncoding, Tcl_DStringValue(&cwd),
  692.     Tcl_DStringLength(&cwd), &dirString);
  693. }
  694. Tcl_DStringFree(&cwd);
  695.     }
  696.     ofn.lpstrInitialDir = (WCHAR *) Tcl_DStringValue(&dirString);
  697.     if (title != NULL) {
  698. Tcl_UtfToExternalDString(unicodeEncoding, title, -1, &titleString);
  699. ofn.lpstrTitle = (WCHAR *) Tcl_DStringValue(&titleString);
  700.     }
  701.     /*
  702.      * Popup the dialog.
  703.      */
  704.     oldMode = Tcl_SetServiceMode(TCL_SERVICE_ALL);
  705.     if (open != 0) {
  706. winCode = GetOpenFileNameW(&ofn);
  707.     } else {
  708. winCode = GetSaveFileNameW(&ofn);
  709.     }
  710.     Tcl_SetServiceMode(oldMode);
  711.     EatSpuriousMessageBugFix();
  712.     /*
  713.      * Ensure that hWnd is enabled, because it can happen that we
  714.      * have updated the wrapper of the parent, which causes us to
  715.      * leave this child disabled (Windows loses sync).
  716.      */
  717.     EnableWindow(hWnd, 1);
  718.     /*
  719.      * Clear the interp result since anything may have happened during the
  720.      * modal loop.
  721.      */
  722.     Tcl_ResetResult(interp);
  723.     /*
  724.      * Process the results.
  725.      */
  726.     if (winCode != 0) {
  727. if (ofn.Flags & OFN_ALLOWMULTISELECT) {
  728.             /*
  729.      * The result in custData->szFile contains many items,
  730.      * separated with null characters.  It is terminated with
  731.      * two nulls in a row.  The first element is the directory
  732.      * path.
  733.      */
  734.     char *dir;
  735.     char *p;
  736.     char *file;
  737.     WCHAR *files;
  738.     Tcl_DString ds;
  739.     Tcl_DString fullname, filename;
  740.     Tcl_Obj *returnList;
  741.     int count = 0;
  742.     returnList = Tcl_NewObj();
  743.     Tcl_IncrRefCount(returnList);
  744.     files = ofn.lpstrFile;
  745.     Tcl_ExternalToUtfDString(unicodeEncoding, (char *) files, -1, &ds);
  746.     /* Get directory */
  747.     dir = Tcl_DStringValue(&ds);
  748.     for (p = dir; p && *p; p++) {
  749. /*
  750.  * Change the pathname to the Tcl "normalized" pathname, where
  751.  * back slashes are used instead of forward slashes
  752.  */
  753. if (*p == '\') {
  754.     *p = '/';
  755. }
  756.     }
  757.     while (*files != '') {
  758. while (*files != '') {
  759.     files++;
  760. }
  761. files++;
  762. if (*files != '') {
  763.     count++;
  764.     Tcl_ExternalToUtfDString(unicodeEncoding,
  765.     (char *)files, -1, &filename);
  766.     file = Tcl_DStringValue(&filename);
  767.     for (p = file; *p != ''; p++) {
  768. if (*p == '\') {
  769.     *p = '/';
  770. }
  771.     }
  772.     Tcl_DStringInit(&fullname);
  773.     Tcl_DStringAppend(&fullname, dir, -1);
  774.     Tcl_DStringAppend(&fullname, "/", -1);
  775.     Tcl_DStringAppend(&fullname, file, -1);
  776.     Tcl_ListObjAppendElement(interp, returnList,
  777.     Tcl_NewStringObj(Tcl_DStringValue(&fullname), -1));
  778.     Tcl_DStringFree(&fullname);
  779.     Tcl_DStringFree(&filename);
  780. }
  781.     }
  782.     if (count == 0) {
  783. /*
  784.  * Only one file was returned.
  785.  */
  786. Tcl_ListObjAppendElement(interp, returnList,
  787. Tcl_NewStringObj(dir, -1));
  788.     }
  789.     Tcl_SetObjResult(interp, returnList);
  790.     Tcl_DecrRefCount(returnList);
  791.     Tcl_DStringFree(&ds);
  792. } else {
  793.     char *p;
  794.     Tcl_DString ds;
  795.     
  796.     Tcl_ExternalToUtfDString(unicodeEncoding,
  797.     (char *) ofn.lpstrFile, -1, &ds);
  798.     for (p = Tcl_DStringValue(&ds); *p != ''; p++) {
  799. /*
  800.  * Change the pathname to the Tcl "normalized" pathname, where
  801.  * back slashes are used instead of forward slashes
  802.  */
  803. if (*p == '\') {
  804.     *p = '/';
  805. }
  806.     }
  807.     Tcl_AppendResult(interp, Tcl_DStringValue(&ds), NULL);
  808.     Tcl_DStringFree(&ds);
  809. }
  810. result = TCL_OK;
  811.     } else {
  812. /*
  813.  * Use the CommDlgExtendedError() function to retrieve the error code.
  814.  * This function can return one of about two dozen codes; most of
  815.  * these indicate some sort of gross system failure (insufficient
  816.  * memory, bad window handles, etc.).  Most of the error codes will be
  817.  * ignored; as we find we want more specific error messages for
  818.  * particular errors, we can extend the code as needed.
  819.  *
  820.  * We could also check for FNERR_BUFFERTOOSMALL, but we can't
  821.  * really do anything about it when it happens.
  822.  */
  823. if (CommDlgExtendedError() == FNERR_INVALIDFILENAME) {
  824.     char *p;
  825.     Tcl_DString ds;
  826.     
  827.     Tcl_ExternalToUtfDString(unicodeEncoding,
  828.     (char *) ofn.lpstrFile, -1, &ds);
  829.     for (p = Tcl_DStringValue(&ds); *p != ''; p++) {
  830. /*
  831.  * Change the pathname to the Tcl "normalized" pathname,
  832.  * where back slashes are used instead of forward slashes
  833.  */
  834. if (*p == '\') {
  835.     *p = '/';
  836. }
  837.     }
  838.     Tcl_SetResult(interp, "invalid filename "", TCL_STATIC);
  839.     Tcl_AppendResult(interp, Tcl_DStringValue(&ds), """, NULL);
  840.     Tcl_DStringFree(&ds);
  841. } else {
  842.     result = TCL_OK;
  843. }
  844.     }
  845.     
  846.     if (ofn.lpstrTitle != NULL) {
  847. Tcl_DStringFree(&titleString);
  848.     }
  849.     if (ofn.lpstrInitialDir != NULL) {
  850. Tcl_DStringFree(&dirString);
  851.     }
  852.     Tcl_DStringFree(&filterString);
  853.     if (ofn.lpstrDefExt != NULL) {
  854. Tcl_DStringFree(&extString);
  855.     }
  856.     end:
  857.     Tcl_DStringFree(&utfDirString);
  858.     Tcl_DStringFree(&utfFilterString);
  859.     return result;
  860. }
  861. /*
  862.  *-------------------------------------------------------------------------
  863.  *
  864.  * OFNHookProcW --
  865.  *
  866.  * Hook procedure called only if debugging is turned on.  Sets
  867.  * the "tk_dialog" variable when the dialog is ready to receive
  868.  * messages.
  869.  *
  870.  * Results:
  871.  * Returns 0 to allow default processing of messages to occur.
  872.  *
  873.  * Side effects:
  874.  * None.
  875.  *
  876.  *-------------------------------------------------------------------------
  877.  */
  878. static UINT APIENTRY 
  879. OFNHookProcW(
  880.     HWND hdlg, // handle to child dialog window
  881.     UINT uMsg, // message identifier
  882.     WPARAM wParam, // message parameter
  883.     LPARAM lParam)  // message parameter
  884. {
  885.     ThreadSpecificData *tsdPtr = (ThreadSpecificData *) 
  886.             Tcl_GetThreadData(&dataKey, sizeof(ThreadSpecificData));
  887.     OPENFILENAMEW *ofnPtr;
  888.     if (uMsg == WM_INITDIALOG) {
  889. #ifdef _WIN64
  890. SetWindowLongPtr(hdlg, GWLP_USERDATA, lParam);
  891. #else
  892. SetWindowLong(hdlg, GWL_USERDATA, lParam);
  893. #endif
  894.     } else if (uMsg == WM_WINDOWPOSCHANGED) {
  895. /*
  896.  * This message is delivered at the right time to enable Tk
  897.  * to set the debug information.  Unhooks itself so it 
  898.  * won't set the debug information every time it gets a 
  899.  * WM_WINDOWPOSCHANGED message.
  900.  */
  901. #ifdef _WIN64
  902.         ofnPtr = (OPENFILENAMEW *) GetWindowLongPtr(hdlg, GWLP_USERDATA);
  903. #else
  904.         ofnPtr = (OPENFILENAMEW *) GetWindowLong(hdlg, GWL_USERDATA);
  905. #endif
  906. if (ofnPtr != NULL) {
  907.     hdlg = GetParent(hdlg);
  908.     tsdPtr->debugInterp = (Tcl_Interp *) ofnPtr->lCustData;
  909.     Tcl_DoWhenIdle(SetTkDialog, (ClientData) hdlg);
  910. #ifdef _WIN64
  911.     SetWindowLongPtr(hdlg, GWLP_USERDATA, (LPARAM) NULL);
  912. #else
  913.     SetWindowLong(hdlg, GWL_USERDATA, (LPARAM) NULL);
  914. #endif
  915. }
  916.     }
  917.     return 0;
  918. }
  919. /*
  920.  *----------------------------------------------------------------------
  921.  *
  922.  * GetFileNameA --
  923.  *
  924.  * Calls GetOpenFileName() or GetSaveFileName().
  925.  *
  926.  * Results:
  927.  * See user documentation.
  928.  *
  929.  * Side effects:
  930.  * See user documentation.
  931.  *
  932.  *----------------------------------------------------------------------
  933.  */
  934. static int 
  935. GetFileNameA(clientData, interp, objc, objv, open)
  936.     ClientData clientData; /* Main window associated with interpreter. */
  937.     Tcl_Interp *interp; /* Current interpreter. */
  938.     int objc; /* Number of arguments. */
  939.     Tcl_Obj *CONST objv[]; /* Argument objects. */
  940.     int open; /* 1 to call GetOpenFileName(), 0 to 
  941.  * call GetSaveFileName(). */
  942. {
  943.     OPENFILENAME ofn;
  944.     TCHAR file[TK_MULTI_MAX_PATH], savePath[MAX_PATH];
  945.     int result, winCode, oldMode, i, multi = 0;
  946.     char *extension, *filter, *title;
  947.     Tk_Window tkwin;
  948.     HWND hWnd;
  949.     Tcl_DString utfFilterString, utfDirString;
  950.     Tcl_DString extString, filterString, dirString, titleString;
  951.     ThreadSpecificData *tsdPtr = (ThreadSpecificData *) 
  952.             Tcl_GetThreadData(&dataKey, sizeof(ThreadSpecificData));
  953.     static CONST char *saveOptionStrings[] = {
  954. "-defaultextension", "-filetypes", "-initialdir", "-initialfile",
  955. "-parent", "-title", NULL
  956.     };
  957.     static CONST char *openOptionStrings[] = {
  958. "-defaultextension", "-filetypes", "-initialdir", "-initialfile",
  959. "-multiple", "-parent", "-title", NULL
  960.     };
  961.     CONST char **optionStrings;
  962.     enum options {
  963. FILE_DEFAULT, FILE_TYPES, FILE_INITDIR, FILE_INITFILE,
  964. FILE_MULTIPLE, FILE_PARENT, FILE_TITLE
  965.     };
  966.     result = TCL_ERROR;
  967.     file[0] = '';
  968.     /*
  969.      * Parse the arguments.
  970.      */
  971.     extension = NULL;
  972.     filter = NULL;
  973.     Tcl_DStringInit(&utfFilterString);
  974.     Tcl_DStringInit(&utfDirString);
  975.     tkwin = (Tk_Window) clientData;
  976.     title = NULL;
  977.     if (open) {
  978. optionStrings = openOptionStrings;
  979.     } else {
  980. optionStrings = saveOptionStrings;
  981.     }
  982.     for (i = 1; i < objc; i += 2) {
  983. int index;
  984. char *string;
  985. Tcl_Obj *optionPtr, *valuePtr;
  986. optionPtr = objv[i];
  987. valuePtr = objv[i + 1];
  988. if (Tcl_GetIndexFromObj(interp, optionPtr, optionStrings,
  989. "option", 0, &index) != TCL_OK) {
  990.     goto end;
  991. }
  992. /*
  993.  * We want to maximize code sharing between the open and save file
  994.  * dialog implementations; in particular, the switch statement below.
  995.  * We use different sets of option strings from the GetIndexFromObj
  996.  * call above, but a single enumeration for both.  The save file
  997.  * dialog doesn't support -multiple, but it falls in the middle of
  998.  * the enumeration.  Ultimately, this means that when the index found
  999.  * by GetIndexFromObj is >= FILE_MULTIPLE, when doing a save file
  1000.  * dialog, we have to increment the index, so that it matches the
  1001.  * open file dialog enumeration.
  1002.  */
  1003. if (!open && index >= FILE_MULTIPLE) {
  1004.     index++;
  1005. }
  1006. if (i + 1 == objc) {
  1007.     string = Tcl_GetStringFromObj(optionPtr, NULL);
  1008.     Tcl_AppendResult(interp, "value for "", string, "" missing", 
  1009.     (char *) NULL);
  1010.     goto end;
  1011. }
  1012. string = Tcl_GetStringFromObj(valuePtr, NULL);
  1013. switch ((enum options) index) {
  1014.     case FILE_DEFAULT: {
  1015. if (string[0] == '.') {
  1016.     string++;
  1017. }
  1018. extension = string;
  1019. break;
  1020.     }
  1021.     case FILE_TYPES: {
  1022. Tcl_DStringFree(&utfFilterString);
  1023. if (MakeFilter(interp, string, &utfFilterString) != TCL_OK) {
  1024.     goto end;
  1025. }
  1026. filter = Tcl_DStringValue(&utfFilterString);
  1027. break;
  1028.     }
  1029.     case FILE_INITDIR: {
  1030. Tcl_DStringFree(&utfDirString);
  1031. if (Tcl_TranslateFileName(interp, string,
  1032. &utfDirString) == NULL) {
  1033.     goto end;
  1034. }
  1035. break;
  1036.     }
  1037.     case FILE_INITFILE: {
  1038. Tcl_DString ds;
  1039. if (Tcl_TranslateFileName(interp, string, &ds) == NULL) {
  1040.     goto end;
  1041. }
  1042. Tcl_UtfToExternal(NULL, NULL, Tcl_DStringValue(&ds), 
  1043. Tcl_DStringLength(&ds), 0, NULL, (char *) file, 
  1044. sizeof(file), NULL, NULL, NULL);
  1045. break;
  1046.     }
  1047.     case FILE_MULTIPLE: {
  1048. if (Tcl_GetBooleanFromObj(interp, valuePtr,
  1049. &multi) != TCL_OK) {
  1050.     return TCL_ERROR;
  1051. }
  1052. break;
  1053.     }
  1054.     case FILE_PARENT: {
  1055. tkwin = Tk_NameToWindow(interp, string, tkwin);
  1056. if (tkwin == NULL) {
  1057.     goto end;
  1058. }
  1059. break;
  1060.     }
  1061.     case FILE_TITLE: {
  1062. title = string;
  1063. break;
  1064.     }
  1065. }
  1066.     }
  1067.     if (filter == NULL) {
  1068. if (MakeFilter(interp, "", &utfFilterString) != TCL_OK) {
  1069.     goto end;
  1070. }
  1071.     }
  1072.     Tk_MakeWindowExist(tkwin);
  1073.     hWnd = Tk_GetHWND(Tk_WindowId(tkwin));
  1074.     ofn.lStructSize = sizeof(ofn);
  1075.     ofn.hwndOwner = hWnd;
  1076. #ifdef _WIN64
  1077.     ofn.hInstance = (HINSTANCE) GetWindowLongPtr(ofn.hwndOwner, 
  1078. GWLP_HINSTANCE);
  1079. #else
  1080.     ofn.hInstance = (HINSTANCE) GetWindowLong(ofn.hwndOwner, 
  1081. GWL_HINSTANCE);
  1082. #endif
  1083.     ofn.lpstrFilter = NULL;
  1084.     ofn.lpstrCustomFilter = NULL;
  1085.     ofn.nMaxCustFilter = 0;
  1086.     ofn.nFilterIndex = 0;
  1087.     ofn.lpstrFile = (LPTSTR) file;
  1088.     ofn.nMaxFile = TK_MULTI_MAX_PATH;
  1089.     ofn.lpstrFileTitle = NULL;
  1090.     ofn.nMaxFileTitle = 0;
  1091.     ofn.lpstrInitialDir = NULL;
  1092.     ofn.lpstrTitle = NULL;
  1093.     ofn.Flags = OFN_HIDEREADONLY | OFN_PATHMUSTEXIST 
  1094.   | OFN_NOCHANGEDIR | OFN_EXPLORER;
  1095.     ofn.nFileOffset = 0;
  1096.     ofn.nFileExtension = 0;
  1097.     ofn.lpstrDefExt = NULL;
  1098.     ofn.lpfnHook = (LPOFNHOOKPROC) OFNHookProc;
  1099.     ofn.lCustData = (LPARAM) interp;
  1100.     ofn.lpTemplateName = NULL;
  1101.     if (open != 0) {
  1102. ofn.Flags |= OFN_FILEMUSTEXIST;
  1103.     } else {
  1104. ofn.Flags |= OFN_OVERWRITEPROMPT;
  1105.     }
  1106.     if (tsdPtr->debugFlag != 0) {
  1107. ofn.Flags |= OFN_ENABLEHOOK;
  1108.     }
  1109.     if (multi != 0) {
  1110. ofn.Flags |= OFN_ALLOWMULTISELECT;
  1111.     }
  1112.     if (extension != NULL) {
  1113. Tcl_UtfToExternalDString(NULL, extension, -1, &extString);
  1114. ofn.lpstrDefExt = (LPTSTR) Tcl_DStringValue(&extString);
  1115.     }
  1116.     Tcl_UtfToExternalDString(NULL, Tcl_DStringValue(&utfFilterString),
  1117.     Tcl_DStringLength(&utfFilterString), &filterString);
  1118.     ofn.lpstrFilter = (LPTSTR) Tcl_DStringValue(&filterString);
  1119.     if (Tcl_DStringValue(&utfDirString)[0] != '') {
  1120. Tcl_UtfToExternalDString(NULL, Tcl_DStringValue(&utfDirString),
  1121. Tcl_DStringLength(&utfDirString), &dirString);
  1122.     } else {
  1123. /*
  1124.  * NT 5.0 changed the meaning of lpstrInitialDir, so we have
  1125.  * to ensure that we set the [pwd] if the user didn't specify
  1126.  * anything else.
  1127.  */
  1128. Tcl_DString cwd;
  1129. Tcl_DStringFree(&utfDirString);
  1130. if ((Tcl_GetCwd(interp, &utfDirString) == (char *) NULL) ||
  1131. (Tcl_TranslateFileName(interp,
  1132. Tcl_DStringValue(&utfDirString), &cwd) == NULL)) {
  1133.     Tcl_ResetResult(interp);
  1134. } else {
  1135.     Tcl_UtfToExternalDString(NULL, Tcl_DStringValue(&cwd),
  1136.     Tcl_DStringLength(&cwd), &dirString);
  1137. }
  1138. Tcl_DStringFree(&cwd);
  1139.     }
  1140.     ofn.lpstrInitialDir = (LPTSTR) Tcl_DStringValue(&dirString);
  1141.     if (title != NULL) {
  1142. Tcl_UtfToExternalDString(NULL, title, -1, &titleString);
  1143. ofn.lpstrTitle = (LPTSTR) Tcl_DStringValue(&titleString);
  1144.     }
  1145.     /*
  1146.      * Popup the dialog.
  1147.      */
  1148.     GetCurrentDirectory(MAX_PATH, savePath);
  1149.     oldMode = Tcl_SetServiceMode(TCL_SERVICE_ALL);
  1150.     if (open != 0) {
  1151. winCode = GetOpenFileName(&ofn);
  1152.     } else {
  1153. winCode = GetSaveFileName(&ofn);
  1154.     }
  1155.     Tcl_SetServiceMode(oldMode);
  1156.     EatSpuriousMessageBugFix();
  1157.     SetCurrentDirectory(savePath);
  1158.     /*
  1159.      * Ensure that hWnd is enabled, because it can happen that we
  1160.      * have updated the wrapper of the parent, which causes us to
  1161.      * leave this child disabled (Windows loses sync).
  1162.      */
  1163.     EnableWindow(hWnd, 1);
  1164.     /*
  1165.      * Clear the interp result since anything may have happened during the
  1166.      * modal loop.
  1167.      */
  1168.     Tcl_ResetResult(interp);
  1169.     /*
  1170.      * Process the results.
  1171.      */
  1172.     if (winCode != 0) {
  1173. if (ofn.Flags & OFN_ALLOWMULTISELECT) {
  1174.             /*
  1175.      * The result in custData->szFile contains many items,
  1176.      * separated with null characters.  It is terminated with
  1177.      * two nulls in a row.  The first element is the directory
  1178.      * path.
  1179.      */
  1180.     char *dir;
  1181.     char *p;
  1182.     char *file;
  1183.     char *files;
  1184.     Tcl_DString ds;
  1185.     Tcl_DString fullname, filename;
  1186.     Tcl_Obj *returnList;
  1187.     int count = 0;
  1188.     returnList = Tcl_NewObj();
  1189.     Tcl_IncrRefCount(returnList);
  1190.     files = ofn.lpstrFile;
  1191.     Tcl_ExternalToUtfDString(NULL, (char *) files, -1, &ds);
  1192.     /* Get directory */
  1193.     dir = Tcl_DStringValue(&ds);
  1194.     for (p = dir; p && *p; p++) {
  1195. /*
  1196.  * Change the pathname to the Tcl "normalized" pathname, where
  1197.  * back slashes are used instead of forward slashes
  1198.  */
  1199. if (*p == '\') {
  1200.     *p = '/';
  1201. }
  1202.     }
  1203.     while (*files != '') {
  1204. while (*files != '') {
  1205.     files++;
  1206. }
  1207. files++;
  1208. if (*files != '') {
  1209.     count++;
  1210.     Tcl_ExternalToUtfDString(NULL,
  1211.     (char *)files, -1, &filename);
  1212.     file = Tcl_DStringValue(&filename);
  1213.     for (p = file; *p != ''; p++) {
  1214. if (*p == '\') {
  1215.     *p = '/';
  1216. }
  1217.     }
  1218.     Tcl_DStringInit(&fullname);
  1219.     Tcl_DStringAppend(&fullname, dir, -1);
  1220.     Tcl_DStringAppend(&fullname, "/", -1);
  1221.     Tcl_DStringAppend(&fullname, file, -1);
  1222.     Tcl_ListObjAppendElement(interp, returnList,
  1223.     Tcl_NewStringObj(Tcl_DStringValue(&fullname), -1));
  1224.     Tcl_DStringFree(&fullname);
  1225.     Tcl_DStringFree(&filename);
  1226. }
  1227.     }
  1228.     if (count == 0) {
  1229. /*
  1230.  * Only one file was returned.
  1231.  */
  1232. Tcl_ListObjAppendElement(interp, returnList,
  1233. Tcl_NewStringObj(dir, -1));
  1234.     }
  1235.     Tcl_SetObjResult(interp, returnList);
  1236.     Tcl_DecrRefCount(returnList);
  1237.     Tcl_DStringFree(&ds);
  1238. } else {
  1239.     char *p;
  1240.     Tcl_DString ds;
  1241.     Tcl_ExternalToUtfDString(NULL, (char *) ofn.lpstrFile, -1, &ds);
  1242.     for (p = Tcl_DStringValue(&ds); *p != ''; p++) {
  1243. /*
  1244.  * Change the pathname to the Tcl "normalized" pathname, where
  1245.  * back slashes are used instead of forward slashes
  1246.  */
  1247. if (*p == '\') {
  1248.     *p = '/';
  1249. }
  1250.     }
  1251.     Tcl_AppendResult(interp, Tcl_DStringValue(&ds), NULL);
  1252.     Tcl_DStringFree(&ds);
  1253. }
  1254. result = TCL_OK;
  1255.     } else {
  1256. /*
  1257.  * Use the CommDlgExtendedError() function to retrieve the error code.
  1258.  * This function can return one of about two dozen codes; most of
  1259.  * these indicate some sort of gross system failure (insufficient
  1260.  * memory, bad window handles, etc.).  Most of the error codes will be
  1261.  * ignored;; as we find we want specific error messages for particular
  1262.  * errors, we can extend the code as needed.
  1263.  *
  1264.  * We could also check for FNERR_BUFFERTOOSMALL, but we can't
  1265.  * really do anything about it when it happens.
  1266.  */
  1267. if (CommDlgExtendedError() == FNERR_INVALIDFILENAME) {
  1268.     char *p;
  1269.     Tcl_DString ds;
  1270.     Tcl_ExternalToUtfDString(NULL, (char *) ofn.lpstrFile, -1, &ds);
  1271.     for (p = Tcl_DStringValue(&ds); *p != ''; p++) {
  1272. /*
  1273.  * Change the pathname to the Tcl "normalized" pathname,
  1274.  * where back slashes are used instead of forward slashes
  1275.  */
  1276. if (*p == '\') {
  1277.     *p = '/';
  1278. }
  1279.     }
  1280.     Tcl_SetResult(interp, "invalid filename "", TCL_STATIC);
  1281.     Tcl_AppendResult(interp, Tcl_DStringValue(&ds), """, NULL);
  1282.     Tcl_DStringFree(&ds);
  1283. } else {
  1284.     result = TCL_OK;
  1285. }
  1286.     }
  1287.     if (ofn.lpstrTitle != NULL) {
  1288. Tcl_DStringFree(&titleString);
  1289.     }
  1290.     if (ofn.lpstrInitialDir != NULL) {
  1291. Tcl_DStringFree(&dirString);
  1292.     }
  1293.     Tcl_DStringFree(&filterString);
  1294.     if (ofn.lpstrDefExt != NULL) {
  1295. Tcl_DStringFree(&extString);
  1296.     }
  1297.     end:
  1298.     Tcl_DStringFree(&utfDirString);
  1299.     Tcl_DStringFree(&utfFilterString);
  1300.     return result;
  1301. }
  1302. /*
  1303.  *-------------------------------------------------------------------------
  1304.  *
  1305.  * OFNHookProc --
  1306.  *
  1307.  * Hook procedure called only if debugging is turned on.  Sets
  1308.  * the "tk_dialog" variable when the dialog is ready to receive
  1309.  * messages.
  1310.  *
  1311.  * Results:
  1312.  * Returns 0 to allow default processing of messages to occur.
  1313.  *
  1314.  * Side effects:
  1315.  * None.
  1316.  *
  1317.  *-------------------------------------------------------------------------
  1318.  */
  1319. static UINT APIENTRY 
  1320. OFNHookProc(
  1321.     HWND hdlg, // handle to child dialog window
  1322.     UINT uMsg, // message identifier
  1323.     WPARAM wParam, // message parameter
  1324.     LPARAM lParam)  // message parameter
  1325. {
  1326.     ThreadSpecificData *tsdPtr = (ThreadSpecificData *) 
  1327.             Tcl_GetThreadData(&dataKey, sizeof(ThreadSpecificData));
  1328.     OPENFILENAME *ofnPtr;
  1329.     if (uMsg == WM_INITDIALOG) {
  1330. #ifdef _WIN64
  1331. SetWindowLongPtr(hdlg, GWLP_USERDATA, lParam);
  1332. #else
  1333. SetWindowLong(hdlg, GWL_USERDATA, lParam);
  1334. #endif
  1335.     } else if (uMsg == WM_WINDOWPOSCHANGED) {
  1336. /*
  1337.  * This message is delivered at the right time to both 
  1338.  * old-style and explorer-style hook procs to enable Tk
  1339.  * to set the debug information.  Unhooks itself so it 
  1340.  * won't set the debug information every time it gets a 
  1341.  * WM_WINDOWPOSCHANGED message.
  1342.  */
  1343. #ifdef _WIN64
  1344.         ofnPtr = (OPENFILENAME *) GetWindowLongPtr(hdlg, GWLP_USERDATA);
  1345. #else
  1346.         ofnPtr = (OPENFILENAME *) GetWindowLong(hdlg, GWL_USERDATA);
  1347. #endif
  1348. if (ofnPtr != NULL) {
  1349.     if (ofnPtr->Flags & OFN_EXPLORER) {
  1350. hdlg = GetParent(hdlg);
  1351.     }
  1352.     tsdPtr->debugInterp = (Tcl_Interp *) ofnPtr->lCustData;
  1353.     Tcl_DoWhenIdle(SetTkDialog, (ClientData) hdlg);
  1354. #ifdef _WIN64
  1355.     SetWindowLongPtr(hdlg, GWLP_USERDATA, (LPARAM) NULL);
  1356. #else
  1357.     SetWindowLong(hdlg, GWL_USERDATA, (LPARAM) NULL);
  1358. #endif
  1359. }
  1360.     }
  1361.     return 0;
  1362. }
  1363. /*
  1364.  *----------------------------------------------------------------------
  1365.  *
  1366.  * MakeFilter --
  1367.  *
  1368.  * Allocate a buffer to store the filters in a format understood by
  1369.  * Windows
  1370.  *
  1371.  * Results:
  1372.  * A standard TCL return value.
  1373.  *
  1374.  * Side effects:
  1375.  * ofnPtr->lpstrFilter is modified.
  1376.  *
  1377.  *----------------------------------------------------------------------
  1378.  */
  1379. static int 
  1380. MakeFilter(interp, string, dsPtr) 
  1381.     Tcl_Interp *interp; /* Current interpreter. */
  1382.     char *string; /* String value of the -filetypes option */
  1383.     Tcl_DString *dsPtr; /* Filled with windows filter string. */
  1384. {
  1385.     char *filterStr;
  1386.     char *p;
  1387.     int pass;
  1388.     FileFilterList flist;
  1389.     FileFilter *filterPtr;
  1390.     TkInitFileFilters(&flist);
  1391.     if (TkGetFileFilters(interp, &flist, string, 1) != TCL_OK) {
  1392. return TCL_ERROR;
  1393.     }
  1394.     if (flist.filters == NULL) {
  1395. /*
  1396.  * Use "All Files (*.*) as the default filter if none is specified
  1397.  */
  1398. char *defaultFilter = "All Files (*.*)";
  1399. p = filterStr = (char*)ckalloc(30 * sizeof(char));
  1400. strcpy(p, defaultFilter);
  1401. p+= strlen(defaultFilter);
  1402. *p++ = '';
  1403. *p++ = '*';
  1404. *p++ = '.';
  1405. *p++ = '*';
  1406. *p++ = '';
  1407. *p++ = '';
  1408. *p = '';
  1409.     } else {
  1410. /* We format the filetype into a string understood by Windows:
  1411.  * {"Text Documents" {.doc .txt} {TEXT}} becomes
  1412.  * "Text Documents (*.doc,*.txt)*.doc;*.txt"
  1413.  *
  1414.  * See the Windows OPENFILENAME manual page for details on the filter
  1415.  * string format.
  1416.  */
  1417. /*
  1418.  * Since we may only add asterisks (*) to the filter, we need at most
  1419.  * twice the size of the string to format the filter
  1420.  */
  1421. filterStr = ckalloc((unsigned int) strlen(string) * 3);
  1422. for (filterPtr = flist.filters, p = filterStr; filterPtr;
  1423.         filterPtr = filterPtr->next) {
  1424.     char *sep;
  1425.     FileFilterClause *clausePtr;
  1426.     /*
  1427.      *  First, put in the name of the file type
  1428.      */
  1429.     strcpy(p, filterPtr->name);
  1430.     p+= strlen(filterPtr->name);
  1431.     *p++ = ' ';
  1432.     *p++ = '(';
  1433.     for (pass = 1; pass <= 2; pass++) {
  1434. /*
  1435.  * In the first pass, we format the extensions in the 
  1436.  * name field. In the second pass, we format the extensions in
  1437.  * the filter pattern field
  1438.  */
  1439. sep = "";
  1440. for (clausePtr=filterPtr->clauses;clausePtr;
  1441.          clausePtr=clausePtr->next) {
  1442.     GlobPattern *globPtr;
  1443.     for (globPtr=clausePtr->patterns; globPtr;
  1444.     globPtr=globPtr->next) {
  1445. strcpy(p, sep);
  1446. p+= strlen(sep);
  1447. strcpy(p, globPtr->pattern);
  1448. p+= strlen(globPtr->pattern);
  1449. if (pass==1) {
  1450.     sep = ",";
  1451. } else {
  1452.     sep = ";";
  1453. }
  1454.     }
  1455. }
  1456. if (pass == 1) {
  1457.     if (pass == 1) {
  1458. *p ++ = ')';
  1459.     }
  1460. }
  1461. *p ++ = '';
  1462.     }
  1463. }
  1464. /*
  1465.  * Windows requires the filter string to be ended by two NULL
  1466.  * characters.
  1467.  */
  1468. *p++ = '';
  1469. *p = '';
  1470.     }
  1471.     Tcl_DStringAppend(dsPtr, filterStr, (int) (p - filterStr));
  1472.     ckfree((char *) filterStr);
  1473.     TkFreeFileFilters(&flist);
  1474.     return TCL_OK;
  1475. }
  1476. #ifdef USE_NEW_CHOOSEDIR
  1477. /*
  1478.  *----------------------------------------------------------------------
  1479.  *
  1480.  * Tk_ChooseDirectoryObjCmd --
  1481.  *
  1482.  * This procedure implements the "tk_chooseDirectory" dialog box
  1483.  * for the Windows platform. See the user documentation for details
  1484.  * on what it does. Uses the newer SHBrowseForFolder explorer type
  1485.  * interface.
  1486.  *
  1487.  * Results:
  1488.  * See user documentation.
  1489.  *
  1490.  * Side effects:
  1491.  * A modal dialog window is created.  Tcl_SetServiceMode() is
  1492.  * called to allow background events to be processed
  1493.  *
  1494.  *----------------------------------------------------------------------
  1495. The procedure tk_chooseDirectory pops up a dialog box for the user to
  1496. select a directory.  The following option-value pairs are possible as
  1497. command line arguments:
  1498. -initialdir dirname
  1499. Specifies that the directories in directory should be displayed when the
  1500. dialog pops up.  If this parameter is not specified, then the directories
  1501. in the current working directory are displayed.  If the parameter specifies
  1502. a relative path, the return value will convert the relative path to an
  1503. absolute path.  This option may not always work on the Macintosh.  This is
  1504. not a bug.  Rather, the General Controls control panel on the Mac allows
  1505. the end user to override the application default directory.
  1506. -parent window
  1507. Makes window the logical parent of the dialog.  The dialog is displayed on
  1508. top of its parent window.
  1509. -title titleString
  1510. Specifies a string to display as the title of the dialog box.  If this
  1511. option is not specified, then a default title will be displayed.
  1512. -mustexist boolean
  1513. Specifies whether the user may specify non-existant directories.  If this
  1514. parameter is true, then the user may only select directories that already
  1515. exist.  The default value is false.
  1516. New Behaviour:
  1517. - If mustexist = 0 and a user entered folder does not exist, a prompt will
  1518.   pop-up asking if the user wants another chance to change it. The old
  1519.   dialog just returned the bogus entry. On mustexist = 1, the entries MUST
  1520.   exist before exiting the box with OK.
  1521.   Bugs:
  1522. - If valid abs directory name is entered into the entry box and Enter
  1523.   pressed, the box will close returning the name. This is inconsistent when
  1524.   entering relative names or names with forward slashes, which are
  1525.   invalidated then corrected in the callback. After correction, the box is
  1526.   held open to allow further modification by the user.
  1527. - Not sure how to implement localization of message prompts.
  1528. - -title is really -message.
  1529. ToDo:
  1530. - Fix bugs.
  1531. - test to see what platforms this really works on.  May require v4.71
  1532.   of shell32.dll everywhere (what is standard?).
  1533.  *
  1534.  */
  1535. int
  1536. Tk_ChooseDirectoryObjCmd(clientData, interp, objc, objv)
  1537.     ClientData clientData;      /* Main window associated with interpreter. */
  1538.     Tcl_Interp *interp; /* Current interpreter. */
  1539.     int objc; /* Number of arguments. */
  1540.     Tcl_Obj *CONST objv[]; /* Argument objects. */
  1541. {
  1542.     char path[MAX_PATH];
  1543.     int oldMode, result, i;
  1544.     LPCITEMIDLIST pidl; /* Returned by browser */
  1545.     BROWSEINFO bInfo; /* Used by browser */
  1546.     CHOOSEDIRDATA cdCBData; /* Structure to pass back and forth */
  1547.     LPMALLOC pMalloc; /* Used by shell */
  1548.     Tk_Window tkwin;
  1549.     HWND hWnd;
  1550.     char *utfTitle; /* Title for window */
  1551.     TCHAR saveDir[MAX_PATH];
  1552.     Tcl_DString titleString; /* UTF Title */
  1553.     Tcl_DString initDirString; /* Initial directory */
  1554.     static CONST char *optionStrings[] = {
  1555.         "-initialdir", "-mustexist",  "-parent",  "-title", (char *) NULL
  1556.     };
  1557.     enum options {
  1558.         DIR_INITIAL,   DIR_EXIST,  DIR_PARENT, FILE_TITLE
  1559.     };
  1560.     /*
  1561.      * Initialize
  1562.      */
  1563.     result = TCL_ERROR;
  1564.     path[0] = '';
  1565.     utfTitle = NULL;
  1566.     ZeroMemory(&cdCBData, sizeof(CHOOSEDIRDATA));
  1567.     cdCBData.interp = interp;
  1568.     tkwin = (Tk_Window) clientData;
  1569.     /*
  1570.      * Process the command line options
  1571.      */
  1572.     for (i = 1; i < objc; i += 2) {
  1573.         int index;
  1574.         char *string;
  1575.         Tcl_Obj *optionPtr, *valuePtr;
  1576.         optionPtr = objv[i];
  1577.         valuePtr = objv[i + 1];
  1578.         if (Tcl_GetIndexFromObj(interp, optionPtr, optionStrings, "option",
  1579.                 0, &index) != TCL_OK) {
  1580.             goto cleanup;
  1581.         }
  1582.         if (i + 1 == objc) {
  1583.             string = Tcl_GetStringFromObj(optionPtr, NULL);
  1584.             Tcl_AppendResult(interp, "value for "", string, "" missing",
  1585.                     (char *) NULL);
  1586.             goto cleanup;
  1587.         }
  1588. string = Tcl_GetString(valuePtr);
  1589.         switch ((enum options) index) {
  1590.             case DIR_INITIAL: {
  1591.                 if (Tcl_TranslateFileName(interp, string,
  1592. &initDirString) == NULL) {
  1593.     goto cleanup;
  1594. }
  1595.                 string = Tcl_DStringValue(&initDirString);
  1596.                 /*
  1597.                  * Convert possible relative path to full path to keep
  1598.                  * dialog happy
  1599.                  */
  1600.                 GetFullPathName(string, MAX_PATH, saveDir, NULL);
  1601.                 lstrcpyn(cdCBData.utfInitDir, saveDir, MAX_PATH);
  1602.                 Tcl_DStringFree(&initDirString);
  1603.                 break;
  1604.             }
  1605.             case DIR_EXIST: {
  1606.                 if (Tcl_GetBooleanFromObj(interp, valuePtr,
  1607.                         &cdCBData.mustExist) != TCL_OK) {
  1608.                     goto cleanup;
  1609.                 }
  1610.                 break;
  1611.             }
  1612.             case DIR_PARENT: {
  1613.                 tkwin = Tk_NameToWindow(interp, string, tkwin);
  1614.                 if (tkwin == NULL) {
  1615.                     goto cleanup;
  1616.                 }
  1617.                 break;
  1618.             }
  1619.             case FILE_TITLE: {
  1620.                 utfTitle = string;
  1621.                 break;
  1622.             }
  1623.         }
  1624.     }
  1625.     /*
  1626.      * Get ready to call the browser
  1627.      */
  1628.     Tk_MakeWindowExist(tkwin);
  1629.     hWnd = Tk_GetHWND(Tk_WindowId(tkwin));
  1630.     /*
  1631.      * Setup the parameters used by SHBrowseForFolder
  1632.      */
  1633.     bInfo.hwndOwner      = hWnd;
  1634.     bInfo.pszDisplayName = path;
  1635.     bInfo.pidlRoot       = NULL;
  1636.     if (lstrlen(cdCBData.utfInitDir) == 0) {
  1637.         GetCurrentDirectory(MAX_PATH, cdCBData.utfInitDir);
  1638.     }
  1639.     bInfo.lParam = (LPARAM) &cdCBData;
  1640.     if (utfTitle != NULL) {
  1641.         Tcl_UtfToExternalDString(NULL, utfTitle, -1, &titleString);
  1642.         bInfo.lpszTitle = (LPTSTR) Tcl_DStringValue(&titleString);
  1643.     } else {
  1644.         bInfo.lpszTitle = "Please choose a directory, then select OK.";
  1645.     }
  1646.     /*
  1647.      * Set flags to add edit box (needs 4.71 Shell DLLs), status text line,
  1648.      * validate edit box and
  1649.      */
  1650.     bInfo.ulFlags  =  BIF_EDITBOX | BIF_STATUSTEXT | BIF_RETURNFSANCESTORS
  1651.         | BIF_VALIDATE;
  1652.     /*
  1653.      * Callback to handle events
  1654.      */
  1655.     bInfo.lpfn     = (BFFCALLBACK) ChooseDirectoryValidateProc;
  1656.     /*
  1657.      * Display dialog in background and process result.
  1658.      * We look to give the user a chance to change their mind
  1659.      * on an invalid folder if mustexist is 0;
  1660.      */
  1661.     oldMode = Tcl_SetServiceMode(TCL_SERVICE_ALL);
  1662.     GetCurrentDirectory(MAX_PATH, saveDir);
  1663.     if (SHGetMalloc(&pMalloc) == NOERROR) {
  1664. pidl = SHBrowseForFolder(&bInfo);
  1665. /* Null for cancel button or invalid dir, otherwise valid*/
  1666. if (pidl != NULL) {
  1667.     if (!SHGetPathFromIDList(pidl, path)) {
  1668. Tcl_SetResult(interp, "Error: Not a file system foldern",
  1669. TCL_VOLATILE);
  1670.     };
  1671.     pMalloc->lpVtbl->Free(pMalloc, (void *) pidl);
  1672. } else if (lstrlen(cdCBData.utfRetDir) > 0) {
  1673.     lstrcpy(path, cdCBData.utfRetDir);
  1674. }
  1675. pMalloc->lpVtbl->Release(pMalloc);
  1676.     }
  1677.     SetCurrentDirectory(saveDir);
  1678.     Tcl_SetServiceMode(oldMode);
  1679.     /*
  1680.      * Ensure that hWnd is enabled, because it can happen that we
  1681.      * have updated the wrapper of the parent, which causes us to
  1682.      * leave this child disabled (Windows loses sync).
  1683.      */
  1684.     EnableWindow(hWnd, 1);
  1685.     /*
  1686.      * Change the pathname to the Tcl "normalized" pathname, where
  1687.      * back slashes are used instead of forward slashes
  1688.      */
  1689.     Tcl_ResetResult(interp);
  1690.     if (*path) {
  1691.         char *p;
  1692.         Tcl_DString ds;
  1693.         Tcl_ExternalToUtfDString(NULL, (char *) path, -1, &ds);
  1694.         for (p = Tcl_DStringValue(&ds); *p != ''; p++) {
  1695.             if (*p == '\') {
  1696.                 *p = '/';
  1697.             }
  1698.         }
  1699.         Tcl_AppendResult(interp, Tcl_DStringValue(&ds), NULL);
  1700.         Tcl_DStringFree(&ds);
  1701.     }
  1702.     result = TCL_OK;
  1703.     if (utfTitle != NULL) {
  1704.         Tcl_DStringFree(&titleString);
  1705.     }
  1706.     cleanup:
  1707.     return result;
  1708. }
  1709. /*
  1710.  *----------------------------------------------------------------------
  1711.  *
  1712.  * ChooseDirectoryValidateProc --
  1713.  *
  1714.  * Hook procedure called by the explorer ChooseDirectory dialog when events
  1715.  * occur.  It is used to validate the text entry the user may have entered.
  1716.  *
  1717.  * Results:
  1718.  * Returns 0 to allow default processing of message, or 1 to
  1719.  * tell default dialog procedure not to close.
  1720.  *
  1721.  *----------------------------------------------------------------------
  1722.  */
  1723. static UINT APIENTRY
  1724. ChooseDirectoryValidateProc (
  1725.     HWND hwnd,
  1726.     UINT message,
  1727.     LPARAM lParam,
  1728.     LPARAM lpData)
  1729. {
  1730.     TCHAR selDir[MAX_PATH];
  1731.     CHOOSEDIRDATA *chooseDirSharedData;
  1732.     Tcl_DString initDirString;
  1733.     char string[MAX_PATH];
  1734.     ThreadSpecificData *tsdPtr = (ThreadSpecificData *)
  1735.         Tcl_GetThreadData(&dataKey, sizeof(ThreadSpecificData));
  1736.     chooseDirSharedData = (CHOOSEDIRDATA *)lpData;
  1737. #ifdef _WIN64
  1738.     SetWindowLongPtr(hwnd, GWLP_USERDATA, lpData);
  1739. #else
  1740.     SetWindowLong(hwnd, GWL_USERDATA, lpData);
  1741. #endif
  1742.     if (tsdPtr->debugFlag) {
  1743.         tsdPtr->debugInterp = (Tcl_Interp *) chooseDirSharedData->interp;
  1744.         Tcl_DoWhenIdle(SetTkDialog, (ClientData) hwnd);
  1745.     }
  1746.     chooseDirSharedData->utfRetDir[0] = '';
  1747.     switch (message) {
  1748.         case BFFM_VALIDATEFAILED:
  1749.             /*
  1750.              * First save and check to see if it is a valid path name, if
  1751.              * so then make that path the one shown in the
  1752.              * window. Otherwise, it failed the check and should be treated
  1753.              * as such. Use Set/GetCurrentDirectory which allows relative
  1754.              * path names and names with forward slashes. Use
  1755.              * Tcl_TranslateFileName to make sure names like ~ are
  1756.              * converted correctly.
  1757.              */
  1758.             Tcl_TranslateFileName(chooseDirSharedData->interp,
  1759.                     (char *)lParam, &initDirString);
  1760.             lstrcpyn (string, Tcl_DStringValue(&initDirString), MAX_PATH);
  1761.             Tcl_DStringFree(&initDirString);
  1762.             if (SetCurrentDirectory((char *)string) == 0) {
  1763.                 LPTSTR lpFilePart[MAX_PATH];
  1764.                 /*
  1765.                  * Get the full path name to the user entry,
  1766.                  * at this point it doesn't exist so see if
  1767.                  * it is supposed to. Otherwise just return it.
  1768.                  */
  1769.                 GetFullPathName(string, MAX_PATH,
  1770. chooseDirSharedData->utfRetDir, /*unused*/ lpFilePart);
  1771.                 if (chooseDirSharedData->mustExist) {
  1772.                     /*
  1773.                      * User HAS to select a valid directory.
  1774.                      */
  1775.                     wsprintf(selDir, TEXT("Directory '%.200s' does not exist,nplease select or enter an existing directory."), chooseDirSharedData->utfRetDir);
  1776.                     MessageBox(NULL, selDir, NULL, MB_ICONEXCLAMATION|MB_OK);
  1777.     chooseDirSharedData->utfRetDir[0] = '';
  1778.                     return 1;
  1779.                 }
  1780.             } else {
  1781.                 /*
  1782.                  * Changed to new folder OK, return immediatly with the
  1783.                  * current directory in utfRetDir.
  1784.                  */
  1785.                 GetCurrentDirectory(MAX_PATH, chooseDirSharedData->utfRetDir);
  1786.                 return 0;
  1787.             }
  1788.             return 0;
  1789.         case BFFM_SELCHANGED:
  1790.             /*
  1791.              * Set the status window to the currently selected path.
  1792.              * And enable the OK button if a file system folder, otherwise
  1793.              * disable the OK button for things like server names.
  1794.              * perhaps a new switch -enablenonfolders can be used to allow
  1795.              * non folders to be selected.
  1796.              *
  1797.              * Not called when user changes edit box directly.
  1798.              */
  1799.             if (SHGetPathFromIDList((LPITEMIDLIST) lParam, selDir)) {
  1800.                 SendMessage(hwnd, BFFM_SETSTATUSTEXT, 0, (LPARAM) selDir);
  1801.                 // enable the OK button
  1802.                 SendMessage(hwnd, BFFM_ENABLEOK, 0, (LPARAM) 1);
  1803.                 SetCurrentDirectory(selDir);
  1804.             } else {
  1805.                 // disable the OK button
  1806.                 SendMessage(hwnd, BFFM_ENABLEOK, 0, (LPARAM) 0);
  1807.             }
  1808.             UpdateWindow(hwnd);
  1809.             return 1;
  1810.         case BFFM_INITIALIZED: {
  1811.             /*
  1812.              * Directory browser intializing - tell it where to start from,
  1813.              * user specified parameter.
  1814.              */
  1815.     char *initDir = chooseDirSharedData->utfInitDir;
  1816.     SetCurrentDirectory(initDir);
  1817.     if (*initDir == '\') {
  1818. /*
  1819.  * BFFM_SETSELECTION only understands UNC paths as pidls,
  1820.  * so convert path to pidl using IShellFolder interface.
  1821.  */
  1822. LPMALLOC pMalloc;
  1823. LPSHELLFOLDER psfFolder;
  1824. if (SUCCEEDED(SHGetMalloc(&pMalloc))) {
  1825.     if (SUCCEEDED(SHGetDesktopFolder(&psfFolder))) {
  1826. LPITEMIDLIST pidlMain;
  1827. ULONG ulCount, ulAttr;
  1828. Tcl_DString ds;
  1829. Tcl_UtfToExternalDString(TkWinGetUnicodeEncoding(),
  1830. initDir, -1, &ds);
  1831. if (SUCCEEDED(psfFolder->lpVtbl->ParseDisplayName(
  1832.   psfFolder, hwnd, NULL,
  1833.   (WCHAR *) Tcl_DStringValue(&ds),
  1834.   &ulCount, &pidlMain, &ulAttr))
  1835. && (pidlMain != NULL)) {
  1836.     SendMessage(hwnd, BFFM_SETSELECTION, FALSE,
  1837.     (LPARAM)pidlMain);
  1838.     pMalloc->lpVtbl->Free(pMalloc, pidlMain);
  1839. }
  1840. psfFolder->lpVtbl->Release(psfFolder);
  1841. Tcl_DStringFree(&ds);
  1842.     }
  1843.     pMalloc->lpVtbl->Release(pMalloc);
  1844. }
  1845.     } else {
  1846. SendMessage(hwnd, BFFM_SETSELECTION, TRUE, (LPARAM)initDir);
  1847.     }
  1848.     SendMessage(hwnd, BFFM_ENABLEOK, 0, (LPARAM) 1);
  1849.             break;
  1850. }
  1851.     }
  1852.     return 0;
  1853. }
  1854. #else
  1855. /*
  1856.  *----------------------------------------------------------------------
  1857.  *
  1858.  * Tk_ChooseDirectoryObjCmd --
  1859.  *
  1860.  * This procedure implements the "tk_chooseDirectory" dialog box 
  1861.  * for the Windows platform. See the user documentation for details 
  1862.  * on what it does.
  1863.  *
  1864.  * Results:
  1865.  * See user documentation.
  1866.  *
  1867.  * Side effects:
  1868.  * A modal dialog window is created.  Tcl_SetServiceMode() is
  1869.  * called to allow background events to be processed
  1870.  *
  1871.  *----------------------------------------------------------------------
  1872.  */
  1873. int
  1874. Tk_ChooseDirectoryObjCmd(clientData, interp, objc, objv)
  1875.     ClientData clientData; /* Main window associated with interpreter. */
  1876.     Tcl_Interp *interp; /* Current interpreter. */
  1877.     int objc; /* Number of arguments. */
  1878.     Tcl_Obj *CONST objv[]; /* Argument objects. */
  1879. {
  1880.     OPENFILENAME ofn;
  1881.     TCHAR path[MAX_PATH], savePath[MAX_PATH];
  1882.     ChooseDir cd;
  1883.     int result, mustExist, code, mode, i;
  1884.     Tk_Window tkwin;
  1885.     HWND hWnd;
  1886.     char *utfTitle;
  1887.     Tcl_DString utfDirString;
  1888.     Tcl_DString titleString, dirString;
  1889.     ThreadSpecificData *tsdPtr = (ThreadSpecificData *) 
  1890.             Tcl_GetThreadData(&dataKey, sizeof(ThreadSpecificData));
  1891.     static CONST char *optionStrings[] = {
  1892. "-initialdir", "-mustexist", "-parent", "-title",
  1893. NULL
  1894.     };
  1895.     enum options {
  1896. DIR_INITIAL, DIR_EXIST, DIR_PARENT, FILE_TITLE
  1897.     };
  1898.     if (tsdPtr->WM_LBSELCHANGED == 0) {
  1899.         tsdPtr->WM_LBSELCHANGED = RegisterWindowMessage(LBSELCHSTRING);
  1900.     }
  1901.    
  1902.     result = TCL_ERROR;
  1903.     path[0] = '';
  1904.     Tcl_DStringInit(&utfDirString);
  1905.     mustExist = 0;
  1906.     tkwin = (Tk_Window) clientData;
  1907.     utfTitle = NULL;
  1908.     for (i = 1; i < objc; i += 2) {
  1909. int index;
  1910. char *string;
  1911. Tcl_Obj *optionPtr, *valuePtr;
  1912. optionPtr = objv[i];
  1913. valuePtr = objv[i + 1];
  1914. if (Tcl_GetIndexFromObj(interp, optionPtr, optionStrings, "option",
  1915. 0, &index) != TCL_OK) {
  1916.     goto cleanup;
  1917. }
  1918. if (i + 1 == objc) {
  1919.     string = Tcl_GetStringFromObj(optionPtr, NULL);
  1920.     Tcl_AppendResult(interp, "value for "", string, "" missing", 
  1921.     (char *) NULL);
  1922.     goto cleanup;
  1923. }
  1924. string = Tcl_GetStringFromObj(valuePtr, NULL);
  1925. switch ((enum options) index) {
  1926.     case DIR_INITIAL: {
  1927. Tcl_DStringFree(&utfDirString);
  1928. if (Tcl_TranslateFileName(interp, string, 
  1929. &utfDirString) == NULL) {
  1930.     goto cleanup;
  1931. }
  1932. break;
  1933.     }
  1934.     case DIR_EXIST: {
  1935. if (Tcl_GetBooleanFromObj(interp, valuePtr, &mustExist) != TCL_OK) {
  1936.     goto cleanup;
  1937. }
  1938. break;
  1939.     }
  1940.     case DIR_PARENT: {
  1941. tkwin = Tk_NameToWindow(interp, string, tkwin);
  1942. if (tkwin == NULL) {
  1943.     goto cleanup;
  1944. }
  1945. break;
  1946.     }
  1947.     case FILE_TITLE: {
  1948. utfTitle = string;
  1949. break;
  1950.     }
  1951. }
  1952.     }
  1953.     Tk_MakeWindowExist(tkwin);
  1954.     hWnd = Tk_GetHWND(Tk_WindowId(tkwin));
  1955.     cd.interp = interp;
  1956.     cd.ofnPtr = &ofn;
  1957.     ofn.lStructSize = sizeof(ofn);
  1958.     ofn.hwndOwner = hWnd;
  1959. #ifdef _WIN64
  1960.     ofn.hInstance = (HINSTANCE) GetWindowLongPtr(ofn.hwndOwner, 
  1961. GWLP_HINSTANCE);
  1962. #else
  1963.     ofn.hInstance = (HINSTANCE) GetWindowLong(ofn.hwndOwner, 
  1964. GWL_HINSTANCE);
  1965. #endif
  1966.     ofn.lpstrFilter = NULL;
  1967.     ofn.lpstrCustomFilter = NULL;
  1968.     ofn.nMaxCustFilter = 0;
  1969.     ofn.nFilterIndex = 0;
  1970.     ofn.lpstrFile = NULL; //(TCHAR *) path;
  1971.     ofn.nMaxFile = MAX_PATH;
  1972.     ofn.lpstrFileTitle = NULL;
  1973.     ofn.nMaxFileTitle = 0;
  1974.     ofn.lpstrInitialDir = NULL;
  1975.     ofn.lpstrTitle = NULL;
  1976.     ofn.Flags = OFN_HIDEREADONLY
  1977.   | OFN_ENABLEHOOK | OFN_ENABLETEMPLATE;
  1978.     ofn.nFileOffset = 0;
  1979.     ofn.nFileExtension = 0;
  1980.     ofn.lpstrDefExt = NULL;
  1981.     ofn.lCustData = (LPARAM) &cd;
  1982.     ofn.lpfnHook = (LPOFNHOOKPROC) ChooseDirectoryHookProc;
  1983.     ofn.lpTemplateName = MAKEINTRESOURCE(FILEOPENORD);
  1984.     if (Tcl_DStringValue(&utfDirString)[0] != '') {
  1985. Tcl_UtfToExternalDString(NULL, Tcl_DStringValue(&utfDirString), 
  1986. Tcl_DStringLength(&utfDirString), &dirString);
  1987.     } else {
  1988. /*
  1989.  * NT 5.0 changed the meaning of lpstrInitialDir, so we have
  1990.  * to ensure that we set the [pwd] if the user didn't specify
  1991.  * anything else.
  1992.  */
  1993. Tcl_DString cwd;
  1994. Tcl_DStringFree(&utfDirString);
  1995. if ((Tcl_GetCwd(interp, &utfDirString) == (char *) NULL) ||
  1996. (Tcl_TranslateFileName(interp,
  1997. Tcl_DStringValue(&utfDirString), &cwd) == NULL)) {
  1998.     Tcl_ResetResult(interp);
  1999. } else {
  2000.     Tcl_UtfToExternalDString(NULL, Tcl_DStringValue(&cwd),
  2001.     Tcl_DStringLength(&cwd), &dirString);
  2002. }
  2003. Tcl_DStringFree(&cwd);
  2004.     }
  2005.     ofn.lpstrInitialDir = (LPTSTR) Tcl_DStringValue(&dirString);
  2006.     if (mustExist) {
  2007. ofn.Flags |= OFN_PATHMUSTEXIST;
  2008.     }
  2009.     if (utfTitle != NULL) {
  2010. Tcl_UtfToExternalDString(NULL, utfTitle, -1, &titleString);
  2011. ofn.lpstrTitle = (LPTSTR) Tcl_DStringValue(&titleString);
  2012.     }
  2013.     /*
  2014.      * Display dialog.  The choose directory dialog doesn't preserve the
  2015.      * current directory, so it must be saved and restored here.
  2016.      */
  2017.     
  2018.     GetCurrentDirectory(MAX_PATH, savePath);
  2019.     mode = Tcl_SetServiceMode(TCL_SERVICE_ALL);
  2020.     code = GetOpenFileName(&ofn);
  2021.     Tcl_SetServiceMode(mode);
  2022.     SetCurrentDirectory(savePath);
  2023.     /*
  2024.      * Ensure that hWnd is enabled, because it can happen that we
  2025.      * have updated the wrapper of the parent, which causes us to
  2026.      * leave this child disabled (Windows loses sync).
  2027.      */
  2028.     EnableWindow(hWnd, 1);
  2029.     Tcl_ResetResult(interp);
  2030.     if (code != 0) {
  2031. /*
  2032.  * Change the pathname to the Tcl "normalized" pathname, where
  2033.  * back slashes are used instead of forward slashes
  2034.  */
  2035. char *p;
  2036. Tcl_DString ds;
  2037. Tcl_ExternalToUtfDString(NULL, (char *) cd.path, -1, &ds);
  2038. for (p = Tcl_DStringValue(&ds); *p != ''; p++) {
  2039.     if (*p == '\') {
  2040. *p = '/';
  2041.     }
  2042. }
  2043. Tcl_AppendResult(interp, Tcl_DStringValue(&ds), NULL);
  2044. Tcl_DStringFree(&ds);
  2045.     }
  2046.     if (ofn.lpstrTitle != NULL) {
  2047. Tcl_DStringFree(&titleString);
  2048.     }
  2049.     if (ofn.lpstrInitialDir != NULL) {
  2050. Tcl_DStringFree(&dirString);
  2051.     }
  2052.     result = TCL_OK;
  2053.     cleanup:
  2054.     Tcl_DStringFree(&utfDirString);
  2055.     return result;
  2056. }
  2057. /*
  2058.  *----------------------------------------------------------------------
  2059.  *
  2060.  * ChooseDirectoryHookProc --
  2061.  *
  2062.  * Hook procedure called by the ChooseDirectory dialog to modify
  2063.  * its default behavior.  The ChooseDirectory dialog is really an
  2064.  * OpenFile dialog with certain controls rearranged and certain
  2065.  * behaviors changed.  For instance, typing a name in the 
  2066.  * ChooseDirectory dialog selects a directory, rather than 
  2067.  * selecting a file.
  2068.  *
  2069.  * Results:
  2070.  * Returns 0 to allow default processing of message, or 1 to 
  2071.  * tell default dialog procedure not to process the message.
  2072.  *
  2073.  * Side effects:
  2074.  * A dialog window is created the first this procedure is called.
  2075.  * This window is not destroyed and will be reused the next time
  2076.  * the application invokes the "tk_getOpenFile" or
  2077.  * "tk_getSaveFile" command.
  2078.  *
  2079.  *----------------------------------------------------------------------
  2080.  */
  2081. static UINT APIENTRY 
  2082. ChooseDirectoryHookProc(
  2083.     HWND hwnd,
  2084.     UINT message,
  2085.     WPARAM wParam,
  2086.     LPARAM lParam)
  2087. {
  2088.     ThreadSpecificData *tsdPtr = (ThreadSpecificData *) 
  2089.             Tcl_GetThreadData(&dataKey, sizeof(ThreadSpecificData));
  2090.     OPENFILENAME *ofnPtr;
  2091.     ChooseDir *cdPtr;
  2092.     if (message == WM_INITDIALOG) {
  2093. ofnPtr = (OPENFILENAME *) lParam;
  2094. cdPtr = (ChooseDir *) ofnPtr->lCustData;
  2095. cdPtr->lastCtrl = 0;
  2096. cdPtr->lastIdx = 1000;
  2097. cdPtr->path[0] = '';
  2098. #ifdef _WIN64
  2099. SetWindowLongPtr(hwnd, GWLP_USERDATA, (LONG_PTR) cdPtr);
  2100. #else
  2101. SetWindowLong(hwnd, GWL_USERDATA, (LONG) cdPtr);
  2102. #endif
  2103. if (ofnPtr->lpstrInitialDir == NULL) {
  2104.     GetCurrentDirectory(MAX_PATH, cdPtr->path);
  2105. } else {
  2106.     lstrcpy(cdPtr->path, ofnPtr->lpstrInitialDir);
  2107. }
  2108. SetDlgItemText(hwnd, edt10, cdPtr->path);
  2109. SendDlgItemMessage(hwnd, edt10, EM_SETSEL, 0, -1);
  2110. if (tsdPtr->debugFlag) {
  2111.     tsdPtr->debugInterp = cdPtr->interp;
  2112.     Tcl_DoWhenIdle(SetTkDialog, (ClientData) hwnd);
  2113. }
  2114. return 0;
  2115.     }
  2116.     /*
  2117.      * GWL_USERDATA keeps track of cdPtr.
  2118.      */
  2119.     
  2120. #ifdef _WIN64
  2121.     cdPtr = (ChooseDir *) GetWindowLongPtr(hwnd, GWLP_USERDATA);
  2122. #else
  2123.     cdPtr = (ChooseDir *) GetWindowLong(hwnd, GWL_USERDATA);
  2124. #endif
  2125.     if (cdPtr == NULL) {
  2126. return 0;
  2127.     }
  2128.     ofnPtr = cdPtr->ofnPtr;
  2129.     if (message == tsdPtr->WM_LBSELCHANGED) {
  2130. /*
  2131.  * Called when double-clicking on directory.
  2132.  * If directory wasn't already open, browse that directory.
  2133.  * If directory was already open, return selected directory.
  2134.  */
  2135. int idCtrl, thisItem;
  2136. idCtrl = (int) wParam;
  2137.         thisItem = LOWORD(lParam);
  2138. GetCurrentDirectory(MAX_PATH, cdPtr->path);
  2139. if (idCtrl == lst2) {
  2140.     if (cdPtr->lastIdx == thisItem) {
  2141. EndDialog(hwnd, IDOK);
  2142. return 1;
  2143.     }
  2144.     cdPtr->lastIdx = thisItem;
  2145. }
  2146. SetDlgItemText(hwnd, edt10, cdPtr->path);
  2147. SendDlgItemMessage(hwnd, edt10, EM_SETSEL, 0, -1);
  2148.     } else if (message == WM_COMMAND) {
  2149. int idCtrl, notifyCode;
  2150. idCtrl = LOWORD(wParam);
  2151. notifyCode = HIWORD(wParam);
  2152. if ((idCtrl != IDOK) || (notifyCode != BN_CLICKED)) {
  2153.     /*
  2154.      * OK Button wasn't clicked.  Do the default.
  2155.      */
  2156.     if ((idCtrl == lst2) || (idCtrl == edt10)) {
  2157. cdPtr->lastCtrl = idCtrl;
  2158.     }
  2159.     return 0;
  2160. }
  2161. /*
  2162.  * Dialogs also get the message that OK was clicked when Enter 
  2163.  * is pressed in some other control.  Find out what window
  2164.  * we were really in when we got the supposed "OK", because the 
  2165.  * behavior is different.
  2166.  */
  2167. if (cdPtr->lastCtrl == edt10) {
  2168.     /*
  2169.      * Hit Enter or clicked OK while typing a directory name in the 
  2170.      * edit control.
  2171.      * If it's a new name, try to go to that directory.
  2172.      * If the name hasn't changed since last time, return selected 
  2173.      * directory.
  2174.      */
  2175.     int changed;
  2176.     TCHAR tmp[MAX_PATH];
  2177.     if (GetDlgItemText(hwnd, edt10, tmp, MAX_PATH) == 0) {
  2178. return 0;
  2179.     }
  2180.     changed = lstrcmp(cdPtr->path, tmp);
  2181.     lstrcpy(cdPtr->path, tmp);
  2182.     if (SetCurrentDirectory(cdPtr->path) == 0) {
  2183. /*
  2184.  * Non-existent directory.
  2185.  */
  2186. if (ofnPtr->Flags & OFN_PATHMUSTEXIST) {
  2187.     /*
  2188.      * Directory must exist.  Complain, then rehighlight text.
  2189.      */
  2190.     wsprintf(tmp, _T("Cannot change directory to "%.200s"."),
  2191.     cdPtr->path);
  2192.     MessageBox(hwnd, tmp, NULL, MB_OK);
  2193.     SendDlgItemMessage(hwnd, edt10, EM_SETSEL, 0, -1);
  2194.     return 0;
  2195. if (changed) {
  2196.     /*
  2197.      * Directory was invalid, but we want to keep displaying
  2198.      * this name.  Don't update the listbox that displays the 
  2199.      * current directory heirarchy, or it'll erase the name.
  2200.      */
  2201.     
  2202.     SendDlgItemMessage(hwnd, edt10, EM_SETSEL, 0, -1);
  2203.     return 0;
  2204. }
  2205.     }
  2206.     if (changed == 0) {
  2207. /*
  2208.  * Name hasn't changed since the last time we hit return
  2209.  * or double-clicked on a directory, so return this.
  2210.  */
  2211. EndDialog(hwnd, IDOK);
  2212. return 1;
  2213.     }
  2214.     
  2215.     cdPtr->lastCtrl = IDOK;
  2216.     /*
  2217.      * The following is the magic code, determined by running 
  2218.      * Spy++ on some other directory chooser, that it takes to 
  2219.      * get this dialog to update the listbox to display the 
  2220.      * current directory.
  2221.      */
  2222.     SetDlgItemText(hwnd, edt1, cdPtr->path);
  2223.     SendMessage(hwnd, WM_COMMAND, (WPARAM) MAKELONG(cmb2, 0x8003), 
  2224.     (LPARAM) GetDlgItem(hwnd, cmb2));
  2225.     return 0;
  2226. } else if (idCtrl == lst2) {
  2227.     /*
  2228.      * Enter key was pressed while in listbox.  
  2229.      * If it's a new directory, allow default behavior to open dir.
  2230.      * If the directory hasn't changed, return selected directory.
  2231.      */
  2232.     int thisItem;
  2233.     thisItem = (int) SendDlgItemMessage(hwnd, lst2, LB_GETCURSEL, 0, 0);
  2234.     if (cdPtr->lastIdx == thisItem) {
  2235. GetCurrentDirectory(MAX_PATH, cdPtr->path);
  2236. EndDialog(hwnd, IDOK);
  2237. return 1;
  2238.     }
  2239. } else if (idCtrl == IDOK) {
  2240.     /* 
  2241.      * The OK button was clicked. Return the value currently selected
  2242.              * in the entry.
  2243.      */
  2244.     GetCurrentDirectory(MAX_PATH, cdPtr->path);
  2245.     EndDialog(hwnd, IDOK);
  2246.     return 1;
  2247. }
  2248.     }
  2249.     return 0;
  2250. }
  2251. #endif
  2252. /*
  2253.  *----------------------------------------------------------------------
  2254.  *
  2255.  * Tk_MessageBoxObjCmd --
  2256.  *
  2257.  * This procedure implements the MessageBox window for the
  2258.  * Windows platform. See the user documentation for details on what
  2259.  * it does.
  2260.  *
  2261.  * Results:
  2262.  * See user documentation.
  2263.  *
  2264.  * Side effects:
  2265.  * None. The MessageBox window will be destroy before this procedure
  2266.  * returns.
  2267.  *
  2268.  *----------------------------------------------------------------------
  2269.  */
  2270. int
  2271. Tk_MessageBoxObjCmd(clientData, interp, objc, objv)
  2272.     ClientData clientData; /* Main window associated with interpreter. */
  2273.     Tcl_Interp *interp; /* Current interpreter. */
  2274.     int objc; /* Number of arguments. */
  2275.     Tcl_Obj *CONST objv[]; /* Argument objects. */
  2276. {
  2277.     Tk_Window tkwin, parent;
  2278.     HWND hWnd;
  2279.     char *message, *title;
  2280.     int defaultBtn, icon, type;
  2281.     int i, oldMode, winCode;
  2282.     UINT flags;
  2283.     Tcl_DString messageString, titleString;
  2284.     Tcl_Encoding unicodeEncoding = TkWinGetUnicodeEncoding();
  2285.     static CONST char *optionStrings[] = {
  2286. "-default", "-icon", "-message", "-parent",
  2287. "-title", "-type", NULL
  2288.     };
  2289.     enum options {
  2290. MSG_DEFAULT, MSG_ICON, MSG_MESSAGE, MSG_PARENT,
  2291. MSG_TITLE, MSG_TYPE
  2292.     };
  2293.     ThreadSpecificData *tsdPtr = (ThreadSpecificData *) 
  2294.             Tcl_GetThreadData(&dataKey, sizeof(ThreadSpecificData));
  2295.     tkwin = (Tk_Window) clientData;
  2296.     defaultBtn = -1;
  2297.     icon = MB_ICONINFORMATION;
  2298.     message = NULL;
  2299.     parent = tkwin;
  2300.     title = NULL;
  2301.     type = MB_OK;
  2302.     for (i = 1; i < objc; i += 2) {
  2303. int index;
  2304. char *string;
  2305. Tcl_Obj *optionPtr, *valuePtr;
  2306. optionPtr = objv[i];
  2307. valuePtr = objv[i + 1];
  2308. if (Tcl_GetIndexFromObj(interp, optionPtr, optionStrings, "option",
  2309. TCL_EXACT, &index) != TCL_OK) {
  2310.     return TCL_ERROR;
  2311. }
  2312. if (i + 1 == objc) {
  2313.     string = Tcl_GetStringFromObj(optionPtr, NULL);
  2314.     Tcl_AppendResult(interp, "value for "", string, "" missing", 
  2315.     (char *) NULL);
  2316.     return TCL_ERROR;
  2317. }
  2318.         string = Tcl_GetStringFromObj(valuePtr, NULL);
  2319. switch ((enum options) index) {
  2320.         case MSG_DEFAULT:
  2321.     defaultBtn = TkFindStateNumObj(interp, optionPtr, buttonMap, 
  2322.     valuePtr);
  2323.     if (defaultBtn < 0) {
  2324. return TCL_ERROR;
  2325.     }
  2326.     break;
  2327. case MSG_ICON:
  2328.     icon = TkFindStateNumObj(interp, optionPtr, iconMap, valuePtr);
  2329.     if (icon < 0) {
  2330. return TCL_ERROR;
  2331.     }
  2332.     break;
  2333. case MSG_MESSAGE:
  2334.     message = string;
  2335.     break;
  2336. case MSG_PARENT: 
  2337.     parent = Tk_NameToWindow(interp, string, tkwin);
  2338.     if (parent == NULL) {
  2339. return TCL_ERROR;
  2340.     }
  2341.     break;
  2342. case MSG_TITLE:
  2343.     title = string;
  2344.     break;
  2345. case MSG_TYPE:
  2346.     type = TkFindStateNumObj(interp, optionPtr, typeMap, valuePtr);
  2347.     if (type < 0) {
  2348. return TCL_ERROR;
  2349.     }
  2350.     break;
  2351. }
  2352.     }
  2353.     Tk_MakeWindowExist(parent);
  2354.     hWnd = Tk_GetHWND(Tk_WindowId(parent));
  2355.     
  2356.     flags = 0;
  2357.     if (defaultBtn >= 0) {
  2358. int defaultBtnIdx;
  2359. defaultBtnIdx = -1;
  2360. for (i = 0; i < NUM_TYPES; i++) {
  2361.     if (type == allowedTypes[i].type) {
  2362. int j;
  2363. for (j = 0; j < 3; j++) {
  2364.     if (allowedTypes[i].btnIds[j] == defaultBtn) {
  2365. defaultBtnIdx = j;
  2366. break;
  2367.     }
  2368. }
  2369. if (defaultBtnIdx < 0) {
  2370.     Tcl_AppendResult(interp, "invalid default button "",
  2371.     TkFindStateString(buttonMap, defaultBtn), 
  2372.     """, NULL);
  2373.     return TCL_ERROR;
  2374. }
  2375. break;
  2376.     }
  2377. }
  2378. flags = buttonFlagMap[defaultBtnIdx];
  2379.     }
  2380.     flags |= icon | type | MB_SYSTEMMODAL;
  2381.     Tcl_UtfToExternalDString(unicodeEncoding, message, -1, &messageString);
  2382.     Tcl_UtfToExternalDString(unicodeEncoding, title, -1, &titleString);
  2383.     oldMode = Tcl_SetServiceMode(TCL_SERVICE_ALL);
  2384.     /*
  2385.      * MessageBoxW exists for all platforms.  Use it to allow unicode
  2386.      * error message to be displayed correctly where possible by the OS.
  2387.      *
  2388.      * In order to have the parent window icon reflected in a MessageBox,
  2389.      * we have to create a hook that will trigger when the MessageBox is
  2390.      * being created.
  2391.      */
  2392.     tsdPtr->hSmallIcon = TkWinGetIcon(parent, ICON_SMALL);
  2393.     tsdPtr->hBigIcon   = TkWinGetIcon(parent, ICON_BIG);
  2394.     tsdPtr->hMsgBoxHook = SetWindowsHookEx(WH_CBT, MsgBoxCBTProc, NULL,
  2395.     GetCurrentThreadId());
  2396.     winCode = MessageBoxW(hWnd, (WCHAR *) Tcl_DStringValue(&messageString),
  2397. (WCHAR *) Tcl_DStringValue(&titleString), flags);
  2398.     UnhookWindowsHookEx(tsdPtr->hMsgBoxHook);
  2399.     (void) Tcl_SetServiceMode(oldMode);
  2400.     /*
  2401.      * Ensure that hWnd is enabled, because it can happen that we
  2402.      * have updated the wrapper of the parent, which causes us to
  2403.      * leave this child disabled (Windows loses sync).
  2404.      */
  2405.     EnableWindow(hWnd, 1);
  2406.     Tcl_DStringFree(&messageString);
  2407.     Tcl_DStringFree(&titleString);
  2408.     Tcl_SetResult(interp, TkFindStateString(buttonMap, winCode), TCL_STATIC);
  2409.     return TCL_OK;
  2410. }
  2411. static LRESULT CALLBACK
  2412. MsgBoxCBTProc(int nCode, WPARAM wParam, LPARAM lParam)
  2413. {
  2414.     ThreadSpecificData *tsdPtr = (ThreadSpecificData *) 
  2415. Tcl_GetThreadData(&dataKey, sizeof(ThreadSpecificData));
  2416.     if (nCode == HCBT_CREATEWND) {
  2417. /*
  2418.  * Window owned by our task is being created.  Since the hook is
  2419.  * installed just before the MessageBox call and removed after the
  2420.  * MessageBox call, the window being created is either the message
  2421.  * box or one of its controls.  Check that the class is WC_DIALOG
  2422.  * to ensure that it's the one we want.
  2423.  */
  2424. LPCBT_CREATEWND lpcbtcreate = (LPCBT_CREATEWND)lParam;
  2425. if (WC_DIALOG == lpcbtcreate->lpcs->lpszClass) {
  2426.     HWND hwnd = (HWND) wParam;
  2427.     SendMessage(hwnd, WM_SETICON, ICON_SMALL,
  2428.     (LPARAM) tsdPtr->hSmallIcon);
  2429.     SendMessage(hwnd, WM_SETICON, ICON_BIG,
  2430.     (LPARAM) tsdPtr->hBigIcon);
  2431. }
  2432.     }
  2433.     /*
  2434.      * Call the next hook proc, if there is one
  2435.      */
  2436.     return CallNextHookEx(tsdPtr->hMsgBoxHook, nCode, wParam, lParam);
  2437. }
  2438. static void 
  2439. SetTkDialog(ClientData clientData)
  2440. {
  2441.     ThreadSpecificData *tsdPtr = (ThreadSpecificData *) 
  2442.             Tcl_GetThreadData(&dataKey, sizeof(ThreadSpecificData));
  2443.     char buf[32];
  2444.     sprintf(buf, "0x%p", (HWND) clientData);
  2445.     Tcl_SetVar(tsdPtr->debugInterp, "tk_dialog", buf, TCL_GLOBAL_ONLY);
  2446. }