]> granicus.if.org Git - vim/commitdiff
updated for version 7.0-074 v7.0.074
authorBram Moolenaar <Bram@vim.org>
Tue, 29 Aug 2006 19:26:50 +0000 (19:26 +0000)
committerBram Moolenaar <Bram@vim.org>
Tue, 29 Aug 2006 19:26:50 +0000 (19:26 +0000)
src/gui_w32.c
src/gui_w48.c
src/version.c

index cf1f6fcdb617a2e7c88b0c69b64fec383c9c1ad6..edb0be404fa8e35ffd61887d78a5e55471dbdc58 100644 (file)
@@ -889,117 +889,90 @@ _WndProc(
 # ifdef FEAT_MBYTE
            case TTN_GETDISPINFOW:
 # endif
-           case TTN_NEEDTEXT:
-# ifdef FEAT_GUI_TABLINE
-               if (gui_mch_showing_tabline()
-                       && ((LPNMHDR)lParam)->hwndFrom ==
-                                              TabCtrl_GetToolTips(s_tabhwnd))
+           case TTN_GETDISPINFO:
                {
-                   LPNMTTDISPINFO      lpdi;
-                   POINT               pt;
-                   static char         *tt_text = NULL;
-                   static int          tt_text_len = 0;
-
-                   /*
-                    * Mouse is over the GUI tabline. Display the tooltip
-                    * for the tab under the cursor
-                    */
-                   lpdi = (LPNMTTDISPINFO)lParam;
-                   lpdi->hinst = NULL;
-                   lpdi->szText[0] = '\0';
-
-                   /*
-                    * Get the cursor position within the tab control
-                    */
-                   GetCursorPos(&pt);
-                   if (ScreenToClient(s_tabhwnd, &pt) != 0)
-                   {
-                       TCHITTESTINFO htinfo;
-                       int idx;
+                   LPNMHDR             hdr = (LPNMHDR)lParam;
+                   char_u              *str = NULL;
+                   static void         *tt_text = NULL;
+
+                   vim_free(tt_text);
+                   tt_text = NULL;
 
+# ifdef FEAT_GUI_TABLINE
+                   if (gui_mch_showing_tabline()
+                          && hdr->hwndFrom == TabCtrl_GetToolTips(s_tabhwnd))
+                   {
+                       POINT           pt;
                        /*
-                        * Get the tab under the cursor
+                        * Mouse is over the GUI tabline. Display the
+                        * tooltip for the tab under the cursor
+                        *
+                        * Get the cursor position within the tab control
                         */
-                       htinfo.pt.x = pt.x;
-                       htinfo.pt.y = pt.y;
-                       idx = TabCtrl_HitTest(s_tabhwnd, &htinfo);
-                       if (idx != -1)
+                       GetCursorPos(&pt);
+                       if (ScreenToClient(s_tabhwnd, &pt) != 0)
                        {
-                           tabpage_T *tp;
-
-                           tp = find_tabpage(idx + 1);
-                           if (tp != NULL)
+                           TCHITTESTINFO htinfo;
+                           int idx;
+
+                           /*
+                            * Get the tab under the cursor
+                            */
+                           htinfo.pt.x = pt.x;
+                           htinfo.pt.y = pt.y;
+                           idx = TabCtrl_HitTest(s_tabhwnd, &htinfo);
+                           if (idx != -1)
                            {
-#  ifdef FEAT_MBYTE
-                               WCHAR   *wstr = NULL;
-#  endif
-                               get_tabline_label(tp, TRUE);
-#  ifdef FEAT_MBYTE
-                               if (enc_codepage >= 0
-                                            && (int)GetACP() != enc_codepage)
-                               {
-                                   wstr = enc_to_ucs2(NameBuff, NULL);
-                                   if (wstr != NULL)
-                                   {
-                                       int wlen;
-
-                                       wlen = ((int)wcslen(wstr) + 1)
-                                                             * sizeof(WCHAR);
-                                       if (tt_text_len < wlen)
-                                       {
-                                           tt_text = vim_realloc(tt_text,
-                                                                       wlen);
-                                           if (tt_text != NULL)
-                                               tt_text_len = wlen;
-                                       }
-                                       if (tt_text != NULL)
-                                           wcscpy((WCHAR *)tt_text, wstr);
-                                       lpdi->lpszText = tt_text;
-                                       vim_free(wstr);
-                                   }
-                               }
-                               if (wstr == NULL)
-#  endif
+                               tabpage_T *tp;
+
+                               tp = find_tabpage(idx + 1);
+                               if (tp != NULL)
                                {
-                                   int len;
-
-                                   len = (int)STRLEN(NameBuff) + 1;
-                                   if (tt_text_len < len)
-                                   {
-                                       tt_text = vim_realloc(tt_text, len);
-                                       if (tt_text != NULL)
-                                           tt_text_len = len;
-                                   }
-                                   if (tt_text != NULL)
-                                       STRCPY(tt_text, NameBuff);
-                                   lpdi->lpszText = tt_text;
+                                   get_tabline_label(tp, TRUE);
+                                   str = NameBuff;
                                }
                            }
                        }
                    }
-               }
-               else
 # endif
-               {
 # ifdef FEAT_TOOLBAR
-                   LPTOOLTIPTEXT       lpttt;
-                   UINT                idButton;
-                   int                 idx;
-                   vimmenu_T           *pMenu;
-
-                   lpttt = (LPTOOLTIPTEXT)lParam;
-                   idButton = (UINT) lpttt->hdr.idFrom;
-                   pMenu = gui_mswin_find_menu(root_menu, idButton);
-                   if (pMenu)
+#  ifdef FEAT_GUI_TABLINE
+                   else
+#  endif
+                   {
+                       UINT            idButton;
+                       vimmenu_T       *pMenu;
+
+                       idButton = (UINT) hdr->idFrom;
+                       pMenu = gui_mswin_find_menu(root_menu, idButton);
+                       if (pMenu)
+                           str = pMenu->strings[MENU_INDEX_TIP];
+                   }
+# endif
+                   if (str != NULL)
                    {
-                       idx = MENU_INDEX_TIP;
-                       if (pMenu->strings[idx])
+# ifdef FEAT_MBYTE
+                       if (hdr->code == TTN_GETDISPINFOW)
                        {
-                           lpttt->hinst = NULL;  /* string, not resource */
-                           lpttt->lpszText = pMenu->strings[idx];
+                           LPNMTTDISPINFOW     lpdi = (LPNMTTDISPINFOW)lParam;
+
+                           tt_text = enc_to_ucs2(str, NULL);
+                           lpdi->lpszText = tt_text;
+                           /* can't show tooltip if failed */
                        }
-                   }
+                       else
 # endif
+                       {
+                           LPNMTTDISPINFO      lpdi = (LPNMTTDISPINFO)lParam;
+
+                           if (STRLEN(str) < sizeof(lpdi->szText)
+                                   || ((tt_text = vim_strsave(str)) == NULL))
+                               vim_strncpy(lpdi->szText, str,
+                                               sizeof(lpdi->szText) - 1);
+                           else
+                               lpdi->lpszText = tt_text;
+                       }
+                   }
                }
                break;
 # ifdef FEAT_GUI_TABLINE
index 06039a5fb7110a1238f8d57276abe008df377c81..5fb3b97984b49e6ef568bc82544279be88f738d5 100644 (file)
@@ -2194,7 +2194,18 @@ gui_mch_show_toolbar(int showit)
        return;
 
     if (showit)
+    {
+# ifdef FEAT_MBYTE
+#  ifndef TB_SETUNICODEFORMAT
+    /* For older compilers.  We assume this never changes. */
+#   define TB_SETUNICODEFORMAT 0x2005
+#  endif
+       /* Enable/disable unicode support */
+       int uu = (enc_codepage >= 0 && (int)GetACP() != enc_codepage);
+       SendMessage(s_toolbarhwnd, TB_SETUNICODEFORMAT, (WPARAM)uu, (LPARAM)0);
+# endif
        ShowWindow(s_toolbarhwnd, SW_SHOW);
+    }
     else
        ShowWindow(s_toolbarhwnd, SW_HIDE);
 }
index f7ab6154a56945519485936656694bacc572d550..c84bb8e3eaa90465707ec51cca2b518f79520385 100644 (file)
@@ -666,6 +666,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    74,
 /**/
     73,
 /**/