]> asedeno.scripts.mit.edu Git - PuTTY.git/blob - mac/macdlg.c
Move the MessageBox-with-help function out into winutils.c, although it's
[PuTTY.git] / mac / macdlg.c
1 /* $Id$ */
2 /*
3  * Copyright (c) 2002 Ben Harris
4  * All rights reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person
7  * obtaining a copy of this software and associated documentation
8  * files (the "Software"), to deal in the Software without
9  * restriction, including without limitation the rights to use,
10  * copy, modify, merge, publish, distribute, sublicense, and/or
11  * sell copies of the Software, and to permit persons to whom the
12  * Software is furnished to do so, subject to the following
13  * conditions:
14  * 
15  * The above copyright notice and this permission notice shall be
16  * included in all copies or substantial portions of the Software.
17  * 
18  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21  * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
22  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
23  * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25  * SOFTWARE.
26  */
27
28 /*
29  * macdlg.c - settings dialogue box for Mac OS.
30  */
31
32 #include <MacTypes.h>
33 #include <AEDataModel.h>
34 #include <AppleEvents.h>
35 #include <Navigation.h>
36 #include <Resources.h>
37 #include <StandardFile.h>
38 #include <TextUtils.h>
39 #include <Windows.h>
40
41 #include <assert.h>
42 #include <string.h>
43
44 #include "putty.h"
45 #include "dialog.h"
46 #include "mac.h"
47 #include "macresid.h"
48 #include "storage.h"
49
50 static void mac_config(int);
51 static void mac_closedlg(WindowPtr);
52 static void mac_enddlg_config(WindowPtr, int);
53 static void mac_enddlg_reconfig(WindowPtr, int);
54
55 void mac_newsession(void)
56 {
57     mac_config(FALSE);
58 }
59
60 void mac_reconfig(void)
61 {
62     mac_config(TRUE);
63 }
64
65 static void mac_config(int midsession)
66 {
67     Session *s;
68     WinInfo *wi;
69     static struct sesslist sesslist;
70     Str255 mactitle;
71     char *str;
72
73     if (midsession) {
74         s = mac_windowsession(FrontWindow());
75     } else {  
76         s = snew(Session);
77         memset(s, 0, sizeof(*s));
78         do_defaults(NULL, &s->cfg);
79         s->hasfile = FALSE;
80     }
81
82     /* Copy the configuration somewhere else in case this is a *
83      * reconfiguration and the user cancels the operation      */
84
85     s->temp_cfg = s->cfg;
86
87     if (HAVE_COLOR_QD())
88         s->settings_window = GetNewCWindow(wSettings, NULL, (WindowPtr)-1);
89     else
90         s->settings_window = GetNewWindow(wSettings, NULL, (WindowPtr)-1);
91
92     get_sesslist(&sesslist, TRUE);
93     s->ctrlbox = ctrl_new_box();
94     setup_config_box(s->ctrlbox, &sesslist, midsession, 0, 0);
95
96     s->settings_ctrls.data = &s->temp_cfg;
97     if (midsession)
98         s->settings_ctrls.end = &mac_enddlg_reconfig;
99     else
100         s->settings_ctrls.end = &mac_enddlg_config;
101
102     macctrl_layoutbox(s->ctrlbox, s->settings_window, &s->settings_ctrls);
103
104     wi = snew(WinInfo);
105     memset(wi, 0, sizeof(*wi));
106     wi->s = s;
107     wi->mcs = &s->settings_ctrls;
108     wi->wtype = wSettings;
109     wi->update = &macctrl_update;
110     wi->click = &macctrl_click;
111     wi->key = &macctrl_key;
112     wi->activate = &macctrl_activate;
113     wi->adjustmenus = &macctrl_adjustmenus;
114     wi->close = &mac_closedlg;
115     SetWRefCon(s->settings_window, (long)wi);
116     if (midsession)
117         str = dupprintf("%s Reconfiguration", appname);
118     else
119         str = dupprintf("%s Configuration", appname);
120     c2pstrcpy(mactitle, str);
121     sfree(str);
122     SetWTitle(s->settings_window, mactitle);
123     ShowWindow(s->settings_window);
124 }
125
126 static void mac_closedlg(WindowPtr window)
127 {
128     Session *s = mac_windowsession(window);
129
130     macctrl_close(window);
131     DisposeWindow(window);
132     if (s->window == NULL)
133         sfree(s);
134 }
135
136 static void mac_enddlg_config(WindowPtr window, int value)
137 {
138     Session *s = mac_windowsession(window);
139
140     if (value == 0)
141         mac_closedlg(window);
142     else {
143         s->cfg = s->temp_cfg;
144         mac_startsession(s);
145         mac_closedlg(window);
146     }
147 }
148
149 static void mac_enddlg_reconfig(WindowPtr window, int value)
150 {
151     Session *s = mac_windowsession(window);
152
153     if (value == 0)
154         mac_closedlg(window);
155     else {
156         Config prev_cfg = s->cfg;
157         s->cfg = s->temp_cfg;
158         mac_closedlg(window);
159
160         /* Pass new config data to the logging module */
161         log_reconfig(s->logctx, &s->cfg);
162
163         /*
164          * Flush the line discipline's edit buffer in the
165          * case where local editing has just been disabled.
166          */
167         if (s->ldisc)
168             ldisc_send(s->ldisc, NULL, 0, 0);
169
170         /* Change the palette */
171         palette_reset(s);
172
173         /* Reinitialise line codepage */
174         init_ucs(s);
175
176         /* Pass new config data to the terminal */
177         term_reconfig(s->term, &s->cfg);
178
179         /* Pass new config data to the back end */
180         if (s->back)
181             s->back->reconfig(s->backhandle, &s->cfg);
182
183         /* Screen size changed ? */
184         if (s->cfg.height != prev_cfg.height ||
185             s->cfg.width != prev_cfg.width ||
186             s->cfg.savelines != prev_cfg.savelines) {
187             request_resize(s, s->cfg.width, s->cfg.height);
188         }
189
190         /* Set the window title */
191         if (s->cfg.wintitle[0])
192             set_title(s, s->cfg.wintitle);
193
194         /* Scroll bar */
195         if (s->cfg.scrollbar != prev_cfg.scrollbar)
196            request_resize(s, s->cfg.width, s->cfg.height);
197
198         /* TODO: zoom, font */
199     }
200 }
201
202 void mac_dupsession(void)
203 {
204     Session *s1 = mac_windowsession(FrontWindow());
205     Session *s2;
206
207     s2 = snew(Session);
208     memset(s2, 0, sizeof(*s2));
209     s2->cfg = s1->cfg;
210     s2->hasfile = s1->hasfile;
211     s2->savefile = s1->savefile;
212
213     mac_startsession(s2);
214 }
215
216 static OSErr mac_opensessionfrom(FSSpec *fss)
217 {
218     FInfo fi;
219     Session *s;
220     void *sesshandle;
221     OSErr err;
222
223     s = snew(Session);
224     memset(s, 0, sizeof(*s));
225
226     err = FSpGetFInfo(fss, &fi);
227     if (err != noErr) return err;
228     if (fi.fdFlags & kIsStationery)
229         s->hasfile = FALSE;
230     else {
231         s->hasfile = TRUE;
232         s->savefile = *fss;
233     }
234
235     sesshandle = open_settings_r_fsp(fss);
236     if (sesshandle == NULL) {
237         /* XXX need a way to pass up an error number */
238         err = -9999;
239         goto fail;
240     }
241     load_open_settings(sesshandle, TRUE, &s->cfg);
242     close_settings_r(sesshandle);
243
244     mac_startsession(s);
245     return noErr;
246
247   fail:
248     sfree(s);
249     return err;
250 }
251
252 static OSErr mac_openlist(AEDesc docs)
253 {
254     OSErr err;
255     long ndocs, i;
256     FSSpec fss;
257     AEKeyword keywd;
258     DescType type;
259     Size size;
260
261     err = AECountItems(&docs, &ndocs);
262     if (err != noErr) return err;
263
264     for (i = 0; i < ndocs; i++) {
265         err = AEGetNthPtr(&docs, i + 1, typeFSS,
266                           &keywd, &type, &fss, sizeof(fss), &size);
267         if (err != noErr) return err;;
268         err = mac_opensessionfrom(&fss);
269         if (err != noErr) return err;
270     }
271     return noErr;
272 }
273
274 void mac_opensession(void)
275 {
276
277     if (mac_gestalts.navsvers > 0) {
278         NavReplyRecord navr;
279         NavDialogOptions navopts;
280         NavTypeListHandle navtypes;
281         AEDesc defaultloc = { 'null', NULL };
282         AEDesc *navdefault = NULL;
283         short vol;
284         long dirid;
285         FSSpec fss;
286
287         if (NavGetDefaultDialogOptions(&navopts) != noErr) return;
288         /* XXX should we create sessions dir? */
289         if (get_session_dir(FALSE, &vol, &dirid) == noErr &&
290             FSMakeFSSpec(vol, dirid, NULL, &fss) == noErr &&
291             AECreateDesc(typeFSS, &fss, sizeof(fss), &defaultloc) == noErr)
292             navdefault = &defaultloc;
293         /* Can't meaningfully preview a saved session yet */
294         navopts.dialogOptionFlags &= ~kNavAllowPreviews;
295         navtypes = (NavTypeListHandle)GetResource('open', open_pTTY);
296         if (NavGetFile(navdefault, &navr, &navopts, NULL, NULL, NULL, navtypes,
297                        NULL) == noErr && navr.validRecord)
298             mac_openlist(navr.selection);
299         NavDisposeReply(&navr);
300         if (navtypes != NULL)
301             ReleaseResource((Handle)navtypes);
302     }
303 #if !TARGET_API_MAC_CARBON /* XXX Navigation Services */
304     else {
305         StandardFileReply sfr;
306         static const OSType sftypes[] = { 'Sess', 0, 0, 0 };
307
308         StandardGetFile(NULL, 1, sftypes, &sfr);
309         if (!sfr.sfGood) return;
310
311         mac_opensessionfrom(&sfr.sfFile);
312         /* XXX handle error */
313     }
314 #endif
315 }
316
317 void mac_savesession(void)
318 {
319     Session *s = mac_windowsession(FrontWindow());
320     void *sesshandle;
321
322     assert(s->hasfile);
323     sesshandle = open_settings_w_fsp(&s->savefile);
324     if (sesshandle == NULL) return; /* XXX report error */
325     save_open_settings(sesshandle, TRUE, &s->cfg);
326     close_settings_w(sesshandle);
327 }
328
329 void mac_savesessionas(void)
330 {
331 #if !TARGET_API_MAC_CARBON /* XXX Navigation Services */
332     Session *s = mac_windowsession(FrontWindow());
333     StandardFileReply sfr;
334     void *sesshandle;
335
336     StandardPutFile("\pSave session as:",
337                     s->hasfile ? s->savefile.name : "\puntitled", &sfr);
338     if (!sfr.sfGood) return;
339
340     if (!sfr.sfReplacing) {
341         FSpCreateResFile(&sfr.sfFile, PUTTY_CREATOR, SESS_TYPE, sfr.sfScript);
342         if (ResError() != noErr) return; /* XXX report error */
343     }
344     sesshandle = open_settings_w_fsp(&sfr.sfFile);
345     if (sesshandle == NULL) return; /* XXX report error */
346     save_open_settings(sesshandle, TRUE, &s->cfg);
347     close_settings_w(sesshandle);
348     s->hasfile = TRUE;
349     s->savefile = sfr.sfFile;
350 #endif
351 }
352
353 pascal OSErr mac_aevt_oapp(const AppleEvent *req, AppleEvent *reply,
354                            long refcon)
355 {
356     DescType type;
357     Size size;
358
359     if (AEGetAttributePtr(req, keyMissedKeywordAttr, typeWildCard,
360                           &type, NULL, 0, &size) == noErr)
361         return errAEParamMissed;
362
363     /* XXX we should do something here. */
364     return noErr;
365 }
366
367 pascal OSErr mac_aevt_odoc(const AppleEvent *req, AppleEvent *reply,
368                            long refcon)
369 {
370     DescType type;
371     Size size;
372     AEDescList docs = { typeNull, NULL };
373     OSErr err;
374
375     err = AEGetParamDesc(req, keyDirectObject, typeAEList, &docs);
376     if (err != noErr) goto out;
377
378     if (AEGetAttributePtr(req, keyMissedKeywordAttr, typeWildCard,
379                           &type, NULL, 0, &size) == noErr) {
380         err = errAEParamMissed;
381         goto out;
382     }
383
384     err = mac_openlist(docs);
385
386   out:
387     AEDisposeDesc(&docs);
388     return err;
389 }
390
391 pascal OSErr mac_aevt_pdoc(const AppleEvent *req, AppleEvent *reply,
392                            long refcon)
393 {
394     DescType type;
395     Size size;
396
397     if (AEGetAttributePtr(req, keyMissedKeywordAttr, typeWildCard,
398                           &type, NULL, 0, &size) == noErr)
399         return errAEParamMissed;
400
401     /* We can't meaningfully do anything here. */
402     return errAEEventNotHandled;
403 }
404
405 /*
406  * Local Variables:
407  * c-file-style: "simon"
408  * End:
409  */