If a new session was saved from Change Settings, a side-effect on Windows was
[u/mdw/putty] / mac / macdlg.c
index 93a2a3f..0a7aeba 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: macdlg.c,v 1.16 2003/03/25 23:18:59 ben Exp $ */
+/* $Id$ */
 /*
  * Copyright (c) 2002 Ben Harris
  * All rights reserved.
@@ -35,6 +35,7 @@
 #include <Navigation.h>
 #include <Resources.h>
 #include <StandardFile.h>
+#include <TextUtils.h>
 #include <Windows.h>
 
 #include <assert.h>
 #include "macresid.h"
 #include "storage.h"
 
+static void mac_config(int);
 static void mac_closedlg(WindowPtr);
+static void mac_enddlg_config(WindowPtr, int);
+static void mac_enddlg_reconfig(WindowPtr, int);
 
 void mac_newsession(void)
 {
+    mac_config(FALSE);
+}
+
+void mac_reconfig(void)
+{
+    mac_config(TRUE);
+}
+
+static void mac_config(int midsession)
+{
     Session *s;
     WinInfo *wi;
-    static struct sesslist sesslist;
+    Str255 mactitle;
+    char *str;
+
+    if (midsession) {
+        s = mac_windowsession(FrontWindow());
+    } else {  
+        s = snew(Session);
+        memset(s, 0, sizeof(*s));
+        do_defaults(NULL, &s->cfg);
+        s->hasfile = FALSE;
+       s->session_closed = FALSE;
+    }
 
-    s = smalloc(sizeof(*s));
-    memset(s, 0, sizeof(*s));
-    do_defaults(NULL, &s->cfg);
-    s->hasfile = FALSE;
+    /* Copy the configuration somewhere else in case this is a *
+     * reconfiguration and the user cancels the operation      */
+
+    s->temp_cfg = s->cfg;
 
     if (HAVE_COLOR_QD())
        s->settings_window = GetNewCWindow(wSettings, NULL, (WindowPtr)-1);
     else
        s->settings_window = GetNewWindow(wSettings, NULL, (WindowPtr)-1);
 
-    get_sesslist(&sesslist, TRUE);
     s->ctrlbox = ctrl_new_box();
-    setup_config_box(s->ctrlbox, &sesslist, FALSE, 0);
+    setup_config_box(s->ctrlbox, midsession, 0, 0);
+
+    s->settings_ctrls.data = &s->temp_cfg;
+    if (midsession)
+        s->settings_ctrls.end = &mac_enddlg_reconfig;
+    else
+        s->settings_ctrls.end = &mac_enddlg_config;
 
-    s->settings_ctrls.data = &s->cfg;
     macctrl_layoutbox(s->ctrlbox, s->settings_window, &s->settings_ctrls);
 
-    wi = smalloc(sizeof(*wi));
+    wi = snew(WinInfo);
     memset(wi, 0, sizeof(*wi));
     wi->s = s;
     wi->mcs = &s->settings_ctrls;
@@ -83,6 +112,13 @@ void mac_newsession(void)
     wi->adjustmenus = &macctrl_adjustmenus;
     wi->close = &mac_closedlg;
     SetWRefCon(s->settings_window, (long)wi);
+    if (midsession)
+        str = dupprintf("%s Reconfiguration", appname);
+    else
+        str = dupprintf("%s Configuration", appname);
+    c2pstrcpy(mactitle, str);
+    sfree(str);
+    SetWTitle(s->settings_window, mactitle);
     ShowWindow(s->settings_window);
 }
 
@@ -96,13 +132,78 @@ static void mac_closedlg(WindowPtr window)
        sfree(s);
 }
 
+static void mac_enddlg_config(WindowPtr window, int value)
+{
+    Session *s = mac_windowsession(window);
+
+    if (value == 0)
+       mac_closedlg(window);
+    else {
+        s->cfg = s->temp_cfg;
+       mac_startsession(s);
+       mac_closedlg(window);
+    }
+}
+
+static void mac_enddlg_reconfig(WindowPtr window, int value)
+{
+    Session *s = mac_windowsession(window);
+
+    if (value == 0)
+       mac_closedlg(window);
+    else {
+        Config prev_cfg = s->cfg;
+        s->cfg = s->temp_cfg;
+       mac_closedlg(window);
+
+       /* Pass new config data to the logging module */
+       log_reconfig(s->logctx, &s->cfg);
+
+       /*
+        * Flush the line discipline's edit buffer in the
+        * case where local editing has just been disabled.
+        */
+       if (s->ldisc)
+           ldisc_send(s->ldisc, NULL, 0, 0);
+
+       /* Change the palette */
+       palette_reset(s);
+
+       /* Reinitialise line codepage */
+       init_ucs(s);
+
+       /* Pass new config data to the terminal */
+       term_reconfig(s->term, &s->cfg);
+
+       /* Pass new config data to the back end */
+       if (s->back)
+            s->back->reconfig(s->backhandle, &s->cfg);
+
+       /* Screen size changed ? */
+       if (s->cfg.height != prev_cfg.height ||
+           s->cfg.width != prev_cfg.width ||
+           s->cfg.savelines != prev_cfg.savelines) {
+           request_resize(s, s->cfg.width, s->cfg.height);
+       }
+
+       /* Set the window title */
+       if (s->cfg.wintitle[0])
+            set_title(s, s->cfg.wintitle);
+
+       /* Scroll bar */
+       if (s->cfg.scrollbar != prev_cfg.scrollbar)
+           request_resize(s, s->cfg.width, s->cfg.height);
+
+       /* TODO: zoom, font */
+    }
+}
 
 void mac_dupsession(void)
 {
     Session *s1 = mac_windowsession(FrontWindow());
     Session *s2;
 
-    s2 = smalloc(sizeof(*s2));
+    s2 = snew(Session);
     memset(s2, 0, sizeof(*s2));
     s2->cfg = s1->cfg;
     s2->hasfile = s1->hasfile;
@@ -118,7 +219,7 @@ static OSErr mac_opensessionfrom(FSSpec *fss)
     void *sesshandle;
     OSErr err;
 
-    s = smalloc(sizeof(*s));
+    s = snew(Session);
     memset(s, 0, sizeof(*s));
 
     err = FSpGetFInfo(fss, &fi);