Develop and Download Open Source Software

Browse Subversion Repository

Diff of /trunk/teraterm/teraterm/vtterm.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 7273 by doda, Wed Nov 21 08:45:33 2018 UTC revision 7274 by doda, Wed Nov 21 08:45:37 2018 UTC
# Line 2409  void CSSunSequence() /* Sun terminal pri Line 2409  void CSSunSequence() /* Sun terminal pri
2409                  }                  }
2410                  break;                  break;
2411    
2412              case 10: // Full-screen
2413                    /*
2414                     * 本来ならば PuTTY のようなフルスクリーンモードを実装するべきだが、
2415                     * とりあえずは手抜きで最大化を利用する
2416                     */
2417                    if (ts.WindowFlag & WF_WINDOWCHANGE) {
2418                            RequiredParams(2);
2419                            switch (Param[2]) {
2420                              case 0:
2421                                DispShowWindow(WINDOW_RESTORE);
2422                                break;
2423                              case 1:
2424                                DispShowWindow(WINDOW_MAXIMIZE);
2425                                break;
2426                              case 2:
2427                                DispShowWindow(WINDOW_TOGGLE_MAXIMIZE);
2428                                break;
2429                            }
2430                    }
2431                    break;
2432    
2433            case 11: // Report window state            case 11: // Report window state
2434                  if (ts.WindowFlag & WF_WINDOWREPORT) {                  if (ts.WindowFlag & WF_WINDOWREPORT) {
2435                          len = _snprintf_s_l(Report, sizeof(Report), _TRUNCATE, "%dt", CLocale, DispWindowIconified()?2:1);                          len = _snprintf_s_l(Report, sizeof(Report), _TRUNCATE, "%dt", CLocale, DispWindowIconified()?2:1);

Legend:
Removed from v.7273  
changed lines
  Added in v.7274

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26