svnno****@sourc*****
svnno****@sourc*****
2011年 10月 30日 (日) 21:55:38 JST
Revision: 4694 http://sourceforge.jp/projects/ttssh2/svn/view?view=rev&revision=4694 Author: maya Date: 2011-10-30 21:55:38 +0900 (Sun, 30 Oct 2011) Log Message: ----------- ããã¼ããã£ã¹ãã³ãã³ãã®ãªã¢ã«ã¿ã¤ã ã¢ã¼ãã§ã¯ãå ¥åããæåãã¨ãã£ããã³ã³ããã¼ã«ã«æ®ããªãããã«ãã http://sourceforge.jp/ticket/browse.php?group_id=1412&tid=26449 Modified Paths: -------------- trunk/doc/en/html/about/history.html trunk/doc/ja/html/about/history.html trunk/teraterm/teraterm/vtwin.cpp -------------- next part -------------- Modified: trunk/doc/en/html/about/history.html =================================================================== --- trunk/doc/en/html/about/history.html 2011-10-30 10:42:48 UTC (rev 4693) +++ trunk/doc/en/html/about/history.html 2011-10-30 12:55:38 UTC (rev 4694) @@ -37,6 +37,7 @@ <ul> <li>added support for OSC 10 (Change VT window text foreground color), 11 (Change VT window text background color), 15 (Change TEK window text foreground color) and 16 (Change TEK window text background color) control string.</li> <li>added the <a href="../menu/window.html#minimize">[Minimize All]</a> and the <a href="../menu/window.html#restore">[Restore All]</a> menu into the <a href="../menu/window.html">[Window]</a> menu.</li> + <!--li>u[hLXgR}hɨ¢ÄAA^C[hÌêAL[üÍÅGfBbgRg[ɶªcçÈ¢æ¤Éµ½B</li--> <li>added the "<a href="../macro/command/getspecialfolder.html">getspecialfolder</a>" macro command.</li> <li>adjusted the up and down space size of the shown message at the "<a href="../macro/command/messagebox.html">messagebox</a>", "<a href="../macro/command/inputbox.html">inputbox</a>" and "<a href="../macro/command/statusbox.html">statusbox</a>" macro commands.</li> </ul> Modified: trunk/doc/ja/html/about/history.html =================================================================== --- trunk/doc/ja/html/about/history.html 2011-10-30 10:42:48 UTC (rev 4693) +++ trunk/doc/ja/html/about/history.html 2011-10-30 12:55:38 UTC (rev 4694) @@ -37,6 +37,7 @@ <ul> <li>OSC 10 (VTEBhE¶FÏX), 11 (VTEBhEwiFÏX), 15 (TEKEBhE¶FÏX), 16 (TEKEBhEwiFÏX) §ä¶ñÉε½B</li> <li><a href="../menu/window.html">[Window]</a> j [É <a href="../menu/window.html#minimize">[Minimize All]</a>, <a href="../menu/window.html#restore">[Restore All]</a> j [ðÇÁµ½B</li> + <li>u[hLXgR}hɨ¢ÄAA^C[hÌêAL[üÍÅGfBbgRg[ɶªcçÈ¢æ¤Éµ½B</li> <li>}NR}h "<a href="../macro/command/getspecialfolder.html">getspecialfolder</a>" ðÇÁµ½B</li> <li>}NR}h "<a href="../macro/command/messagebox.html">messagebox</a>", "<a href="../macro/command/inputbox.html">inputbox</a>", "<a href="../macro/command/statusbox.html">statusbox</a>"ÅA\¦³êébZ[WÌãºÌ]Ì嫳𲮵½B </li> </ul> Modified: trunk/teraterm/teraterm/vtwin.cpp =================================================================== --- trunk/teraterm/teraterm/vtwin.cpp 2011-10-30 10:42:48 UTC (rev 4693) +++ trunk/teraterm/teraterm/vtwin.cpp 2011-10-30 12:55:38 UTC (rev 4694) @@ -4435,7 +4435,7 @@ int i; HWND hd; int count; -OutputDebugPrintf("msg=%d wParam=%d lParam=%d\n", msg, wParam, lParam); + if (wParam == 0x0d) { // Enter key SetWindowText(dlg, ""); SendMessage(dlg, EM_SETSEL, 0, 0); @@ -4463,6 +4463,19 @@ } break; + case WM_CHAR: +#if 0 + switch (wParam) { + case VK_RETURN: + case VK_ESCAPE: + // x¹ªoÈ¢æ¤É·é + return FALSE; + } + // not break; +#endif + // ü͵½¶ªªIDC_COMMAND_EDITÉcçÈ¢æ¤ÉÌÄé + return FALSE; + default: return CallWindowProc(OrigBroadcastEditProc, dlg, msg, wParam, lParam); }