comparison src/gui_w32.c @ 824:8dd456c1e283 v7.0c13

updated for version 7.0c13
author vimboss
date Sun, 09 Apr 2006 21:54:49 +0000
parents 23f82b5d2814
children 8bebcabccc2c
comparison
equal deleted inserted replaced
823:9ab23f1e137f 824:8dd456c1e283
738 RECT rect; 738 RECT rect;
739 739
740 GetCursorPos((LPPOINT)&pt); 740 GetCursorPos((LPPOINT)&pt);
741 GetWindowRect(s_textArea, &rect); 741 GetWindowRect(s_textArea, &rect);
742 if (pt.y < rect.top) 742 if (pt.y < rect.top)
743 { 743 send_tabline_menu_event(0, TABLINE_MENU_NEW);
744 char_u string[3];
745
746 string[0] = CSI;
747 string[1] = KS_TABMENU;
748 string[2] = KE_FILLER;
749 add_to_input_buf(string, 3);
750 string[0] = 0;
751 string[1] = (char_u)(long)TABLINE_MENU_NEW;
752 add_to_input_buf_csi(string, 2);
753 }
754 } 744 }
755 return MyWindowProc(hwnd, uMsg, wParam, lParam); 745 return MyWindowProc(hwnd, uMsg, wParam, lParam);
756 } 746 }
757 #endif 747 #endif
758 748