Add input-focus support for System 7, where the Control Manager can't do
[u/mdw/putty] / mac / macctrls.c
CommitLineData
a460b361 1/* $Id: macctrls.c,v 1.18 2003/03/29 18:32:36 ben Exp $ */
8a7e67ec 2/*
3 * Copyright (c) 2003 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#include <MacTypes.h>
29#include <Appearance.h>
30#include <Controls.h>
31#include <ControlDefinitions.h>
56c01970 32#include <Menus.h>
fa4942e7 33#include <Resources.h>
0e9ce565 34#include <Script.h>
8a7e67ec 35#include <Sound.h>
0e9ce565 36#include <TextEdit.h>
8a7e67ec 37#include <TextUtils.h>
0e9ce565 38#include <ToolUtils.h>
8a7e67ec 39#include <Windows.h>
40
93ba25f8 41#include <assert.h>
ee10bc56 42#include <string.h>
93ba25f8 43
8a7e67ec 44#include "putty.h"
45#include "mac.h"
46#include "macresid.h"
47#include "dialog.h"
48#include "tree234.h"
49
56c01970 50/* Range of menu IDs for popup menus */
51#define MENU_MIN 1024
52#define MENU_MAX 2048
53
54
8a7e67ec 55union macctrl {
56 struct macctrl_generic {
57 enum {
58 MACCTRL_TEXT,
1f1ec0e5 59 MACCTRL_EDITBOX,
8a7e67ec 60 MACCTRL_RADIO,
61 MACCTRL_CHECKBOX,
56c01970 62 MACCTRL_BUTTON,
63 MACCTRL_POPUP
8a7e67ec 64 } type;
65 /* Template from which this was generated */
66 union control *ctrl;
ee10bc56 67 /* Next control in this panel */
68 union macctrl *next;
1f1ec0e5 69 void *privdata;
70 int freeprivdata;
8a7e67ec 71 } generic;
72 struct {
73 struct macctrl_generic generic;
74 ControlRef tbctrl;
75 } text;
76 struct {
77 struct macctrl_generic generic;
1f1ec0e5 78 ControlRef tbctrl;
79 } editbox;
80 struct {
81 struct macctrl_generic generic;
8a7e67ec 82 ControlRef *tbctrls;
83 } radio;
84 struct {
85 struct macctrl_generic generic;
86 ControlRef tbctrl;
87 } checkbox;
88 struct {
89 struct macctrl_generic generic;
90 ControlRef tbctrl;
91 } button;
56c01970 92 struct {
93 struct macctrl_generic generic;
94 ControlRef tbctrl;
95 MenuRef menu;
96 int menuid;
97 unsigned int nids;
98 int *ids;
99 } popup;
8a7e67ec 100};
101
102struct mac_layoutstate {
103 Point pos;
104 unsigned int width;
ee10bc56 105 unsigned int panelnum;
8a7e67ec 106};
107
108#define ctrlevent(mcs, mc, event) do { \
109 if ((mc)->generic.ctrl->generic.handler != NULL) \
93ba25f8 110 (*(mc)->generic.ctrl->generic.handler)((mc)->generic.ctrl, (mcs),\
8a7e67ec 111 (mcs)->data, (event)); \
112} while (0)
113
93ba25f8 114#define findbyctrl(mcs, ctrl) \
115 find234((mcs)->byctrl, (ctrl), macctrl_cmp_byctrl_find)
116
8a7e67ec 117static void macctrl_layoutset(struct mac_layoutstate *, struct controlset *,
118 WindowPtr, struct macctrls *);
ee10bc56 119static void macctrl_switchtopanel(struct macctrls *, unsigned int);
a460b361 120static void macctrl_setfocus(struct macctrls *, union macctrl *);
8a7e67ec 121static void macctrl_text(struct macctrls *, WindowPtr,
122 struct mac_layoutstate *, union control *);
1f1ec0e5 123static void macctrl_editbox(struct macctrls *, WindowPtr,
124 struct mac_layoutstate *, union control *);
8a7e67ec 125static void macctrl_radio(struct macctrls *, WindowPtr,
126 struct mac_layoutstate *, union control *);
127static void macctrl_checkbox(struct macctrls *, WindowPtr,
128 struct mac_layoutstate *, union control *);
129static void macctrl_button(struct macctrls *, WindowPtr,
130 struct mac_layoutstate *, union control *);
56c01970 131static void macctrl_popup(struct macctrls *, WindowPtr,
132 struct mac_layoutstate *, union control *);
fa4942e7 133#if !TARGET_API_MAC_CARBON
134static pascal SInt32 macctrl_sys7_text_cdef(SInt16, ControlRef,
135 ControlDefProcMessage, SInt32);
0e9ce565 136static pascal SInt32 macctrl_sys7_editbox_cdef(SInt16, ControlRef,
137 ControlDefProcMessage, SInt32);
5537f572 138static pascal SInt32 macctrl_sys7_default_cdef(SInt16, ControlRef,
139 ControlDefProcMessage, SInt32);
fa4942e7 140#endif
141
142#if !TARGET_API_MAC_CARBON
143/*
144 * This trick enables us to keep all the CDEF code in the main
145 * application, which makes life easier. For details, see
146 * <http://developer.apple.com/technotes/tn/tn2003.html#custom_code_base>.
147 */
148
149#pragma options align=mac68k
150typedef struct {
151 short jmpabs; /* 4EF9 */
152 ControlDefUPP theUPP;
153} **PatchCDEF;
154#pragma options align=reset
155#endif
156
157static void macctrl_init()
158{
159#if !TARGET_API_MAC_CARBON
160 static int inited = 0;
161 PatchCDEF cdef;
162
163 if (inited) return;
164 cdef = (PatchCDEF)GetResource(kControlDefProcResourceType, CDEF_Text);
165 (*cdef)->theUPP = NewControlDefProc(macctrl_sys7_text_cdef);
0e9ce565 166 cdef = (PatchCDEF)GetResource(kControlDefProcResourceType, CDEF_EditBox);
167 (*cdef)->theUPP = NewControlDefProc(macctrl_sys7_editbox_cdef);
5537f572 168 cdef = (PatchCDEF)GetResource(kControlDefProcResourceType, CDEF_Default);
169 (*cdef)->theUPP = NewControlDefProc(macctrl_sys7_default_cdef);
fa4942e7 170 inited = 1;
171#endif
172}
173
8a7e67ec 174
175static int macctrl_cmp_byctrl(void *av, void *bv)
176{
177 union macctrl *a = (union macctrl *)av;
178 union macctrl *b = (union macctrl *)bv;
179
180 if (a->generic.ctrl < b->generic.ctrl)
181 return -1;
182 else if (a->generic.ctrl > b->generic.ctrl)
183 return +1;
184 else
185 return 0;
186}
187
93ba25f8 188static int macctrl_cmp_byctrl_find(void *av, void *bv)
189{
190 union control *a = (union control *)av;
191 union macctrl *b = (union macctrl *)bv;
192
193 if (a < b->generic.ctrl)
194 return -1;
195 else if (a > b->generic.ctrl)
196 return +1;
197 else
198 return 0;
199}
200
8a7e67ec 201void macctrl_layoutbox(struct controlbox *cb, WindowPtr window,
202 struct macctrls *mcs)
203{
204 int i;
205 struct mac_layoutstate curstate;
206 ControlRef root;
207 Rect rect;
fa4942e7 208
209 macctrl_init();
8a7e67ec 210#if TARGET_API_MAC_CARBON
211 GetPortBounds(GetWindowPort(window), &rect);
212#else
213 rect = window->portRect;
214#endif
215 curstate.pos.h = rect.left + 13;
ee10bc56 216 curstate.pos.v = rect.bottom - 59;
8a7e67ec 217 curstate.width = rect.right - rect.left - (13 * 2);
218 if (mac_gestalts.apprvers >= 0x100)
219 CreateRootControl(window, &root);
1f1ec0e5 220 mcs->window = window;
8a7e67ec 221 mcs->byctrl = newtree234(macctrl_cmp_byctrl);
a460b361 222 mcs->focus = NULL;
ee10bc56 223 /* Count the number of panels */
224 mcs->npanels = 1;
225 for (i = 1; i < cb->nctrlsets; i++)
226 if (strcmp(cb->ctrlsets[i]->pathname, cb->ctrlsets[i-1]->pathname))
227 mcs->npanels++;
228 mcs->panels = smalloc(sizeof(*mcs->panels) * mcs->npanels);
229 memset(mcs->panels, 0, sizeof(*mcs->panels) * mcs->npanels);
230 curstate.panelnum = 0;
231 for (i = 0; i < cb->nctrlsets; i++) {
232 if (i > 0 && strcmp(cb->ctrlsets[i]->pathname,
233 cb->ctrlsets[i-1]->pathname)) {
234 curstate.pos.v = rect.top + 13;
235 curstate.panelnum++;
236 assert(curstate.panelnum < mcs->npanels);
237 }
8a7e67ec 238 macctrl_layoutset(&curstate, cb->ctrlsets[i], window, mcs);
ee10bc56 239 }
1f1ec0e5 240 macctrl_switchtopanel(mcs, 1);
8a7e67ec 241}
242
243static void macctrl_layoutset(struct mac_layoutstate *curstate,
244 struct controlset *s,
245 WindowPtr window, struct macctrls *mcs)
246{
247 unsigned int i;
248
249 fprintf(stderr, "--- begin set ---\n");
93ba25f8 250 fprintf(stderr, "pathname = %s\n", s->pathname);
8a7e67ec 251 if (s->boxname && *s->boxname)
252 fprintf(stderr, "boxname = %s\n", s->boxname);
253 if (s->boxtitle)
254 fprintf(stderr, "boxtitle = %s\n", s->boxtitle);
255
256
257 for (i = 0; i < s->ncontrols; i++) {
258 union control *ctrl = s->ctrls[i];
259 char const *s;
260
261 switch (ctrl->generic.type) {
262 case CTRL_TEXT: s = "text"; break;
263 case CTRL_EDITBOX: s = "editbox"; break;
264 case CTRL_RADIO: s = "radio"; break;
265 case CTRL_CHECKBOX: s = "checkbox"; break;
266 case CTRL_BUTTON: s = "button"; break;
267 case CTRL_LISTBOX: s = "listbox"; break;
268 case CTRL_COLUMNS: s = "columns"; break;
269 case CTRL_FILESELECT: s = "fileselect"; break;
270 case CTRL_FONTSELECT: s = "fontselect"; break;
271 case CTRL_TABDELAY: s = "tabdelay"; break;
272 default: s = "unknown"; break;
273 }
274 fprintf(stderr, " control: %s\n", s);
275 switch (ctrl->generic.type) {
276 case CTRL_TEXT:
277 macctrl_text(mcs, window, curstate, ctrl);
278 break;
1f1ec0e5 279 case CTRL_EDITBOX:
280 macctrl_editbox(mcs, window, curstate, ctrl);
281 break;
8a7e67ec 282 case CTRL_RADIO:
283 macctrl_radio(mcs, window, curstate, ctrl);
284 break;
285 case CTRL_CHECKBOX:
286 macctrl_checkbox(mcs, window, curstate, ctrl);
287 break;
288 case CTRL_BUTTON:
289 macctrl_button(mcs, window, curstate, ctrl);
290 break;
56c01970 291 case CTRL_LISTBOX:
292 if (ctrl->listbox.height == 0)
293 macctrl_popup(mcs, window, curstate, ctrl);
294 break;
8a7e67ec 295 }
296 }
297}
298
ee10bc56 299static void macctrl_switchtopanel(struct macctrls *mcs, unsigned int which)
300{
301 unsigned int i, j;
302 union macctrl *mc;
303
0a33efe1 304#define hideshow(c) do { \
305 if (i == which) ShowControl(c); else HideControl(c); \
306} while (0)
307
308 mcs->curpanel = which;
ee10bc56 309 /* Panel 0 is special and always visible. */
310 for (i = 1; i < mcs->npanels; i++)
a460b361 311 for (mc = mcs->panels[i]; mc != NULL; mc = mc->generic.next) {
312#if !TARGET_API_MAC_CARBON
313 if (mcs->focus == mc)
314 macctrl_setfocus(mcs, NULL);
315#endif
ee10bc56 316 switch (mc->generic.type) {
317 case MACCTRL_TEXT:
0a33efe1 318 hideshow(mc->text.tbctrl);
ee10bc56 319 break;
1f1ec0e5 320 case MACCTRL_EDITBOX:
321 hideshow(mc->editbox.tbctrl);
322 break;
ee10bc56 323 case MACCTRL_RADIO:
324 for (j = 0; j < mc->generic.ctrl->radio.nbuttons; j++)
0a33efe1 325 hideshow(mc->radio.tbctrls[j]);
ee10bc56 326 break;
327 case MACCTRL_CHECKBOX:
0a33efe1 328 hideshow(mc->checkbox.tbctrl);
ee10bc56 329 break;
330 case MACCTRL_BUTTON:
0a33efe1 331 hideshow(mc->button.tbctrl);
332 break;
333 case MACCTRL_POPUP:
334 hideshow(mc->popup.tbctrl);
ee10bc56 335 break;
ee10bc56 336 }
a460b361 337 }
338}
339
340#if !TARGET_API_MAC_CARBON
341/*
342 * System 7 focus manipulation
343 */
344static void macctrl_defocus(union macctrl *mc)
345{
346
347 assert(mac_gestalts.apprvers < 0x100);
348 switch (mc->generic.type) {
349 case MACCTRL_EDITBOX:
350 TEDeactivate((TEHandle)(*mc->editbox.tbctrl)->contrlData);
351 break;
352 }
353}
354
355static void macctrl_enfocus(union macctrl *mc)
356{
357
358 assert(mac_gestalts.apprvers < 0x100);
359 switch (mc->generic.type) {
360 case MACCTRL_EDITBOX:
361 TEActivate((TEHandle)(*mc->editbox.tbctrl)->contrlData);
362 break;
363 }
ee10bc56 364}
365
a460b361 366static void macctrl_setfocus(struct macctrls *mcs, union macctrl *mc)
367{
368
369 if (mcs->focus != NULL)
370 macctrl_defocus(mcs->focus);
371 mcs->focus = mc;
372 if (mc != NULL)
373 macctrl_enfocus(mc);
374}
375#endif
376
8a7e67ec 377static void macctrl_text(struct macctrls *mcs, WindowPtr window,
378 struct mac_layoutstate *curstate,
379 union control *ctrl)
380{
381 union macctrl *mc = smalloc(sizeof *mc);
382 Rect bounds;
383
384 fprintf(stderr, " label = %s\n", ctrl->text.label);
385 mc->generic.type = MACCTRL_TEXT;
386 mc->generic.ctrl = ctrl;
1f1ec0e5 387 mc->generic.privdata = NULL;
8a7e67ec 388 bounds.left = curstate->pos.h;
389 bounds.right = bounds.left + curstate->width;
390 bounds.top = curstate->pos.v;
391 bounds.bottom = bounds.top + 16;
392 if (mac_gestalts.apprvers >= 0x100) {
393 SInt16 height;
394 Size olen;
395
396 mc->text.tbctrl = NewControl(window, &bounds, NULL, TRUE, 0, 0, 0,
397 kControlStaticTextProc, (long)mc);
398 SetControlData(mc->text.tbctrl, kControlEntireControl,
399 kControlStaticTextTextTag,
400 strlen(ctrl->text.label), ctrl->text.label);
401 GetControlData(mc->text.tbctrl, kControlEntireControl,
402 kControlStaticTextTextHeightTag,
403 sizeof(height), &height, &olen);
404 fprintf(stderr, " height = %d\n", height);
405 SizeControl(mc->text.tbctrl, curstate->width, height);
406 curstate->pos.v += height + 6;
407 } else {
fa4942e7 408 Str255 title;
409
410 c2pstrcpy(title, ctrl->text.label);
411 mc->text.tbctrl = NewControl(window, &bounds, title, TRUE, 0, 0, 0,
412 SYS7_TEXT_PROC, (long)mc);
8a7e67ec 413 }
414 add234(mcs->byctrl, mc);
ee10bc56 415 mc->generic.next = mcs->panels[curstate->panelnum];
416 mcs->panels[curstate->panelnum] = mc;
8a7e67ec 417}
418
fa4942e7 419#if !TARGET_API_MAC_CARBON
420static pascal SInt32 macctrl_sys7_text_cdef(SInt16 variant, ControlRef control,
421 ControlDefProcMessage msg, SInt32 param)
422{
423 RgnHandle rgn;
424
425 switch (msg) {
426 case drawCntl:
427 if ((*control)->contrlVis)
428 TETextBox((*control)->contrlTitle + 1, (*control)->contrlTitle[0],
429 &(*control)->contrlRect, teFlushDefault);
430 return 0;
431 case calcCRgns:
432 if (param & (1 << 31)) {
433 param &= ~(1 << 31);
434 goto calcthumbrgn;
435 }
436 /* FALLTHROUGH */
437 case calcCntlRgn:
438 rgn = (RgnHandle)param;
439 RectRgn(rgn, &(*control)->contrlRect);
440 return 0;
441 case calcThumbRgn:
442 calcthumbrgn:
443 rgn = (RgnHandle)param;
444 SetEmptyRgn(rgn);
445 return 0;
446 }
447
448 return 0;
449}
450#endif
451
1f1ec0e5 452static void macctrl_editbox(struct macctrls *mcs, WindowPtr window,
453 struct mac_layoutstate *curstate,
454 union control *ctrl)
455{
456 union macctrl *mc = smalloc(sizeof *mc);
457 Rect bounds;
458
459 fprintf(stderr, " label = %s\n", ctrl->editbox.label);
460 fprintf(stderr, " percentwidth = %d\n", ctrl->editbox.percentwidth);
461 if (ctrl->editbox.password) fprintf(stderr, " password\n");
462 if (ctrl->editbox.has_list) fprintf(stderr, " has list\n");
463 mc->generic.type = MACCTRL_EDITBOX;
464 mc->generic.ctrl = ctrl;
465 mc->generic.privdata = NULL;
466 bounds.left = curstate->pos.h;
467 bounds.right = bounds.left + curstate->width;
0e9ce565 468 bounds.top = curstate->pos.v;
469 bounds.bottom = bounds.top + 22;
1f1ec0e5 470 if (mac_gestalts.apprvers >= 0x100) {
0e9ce565 471 InsetRect(&bounds, 2, 2);
1f1ec0e5 472 mc->text.tbctrl = NewControl(window, &bounds, NULL, TRUE, 0, 0, 0,
473 ctrl->editbox.password ?
474 kControlEditTextPasswordProc :
475 kControlEditTextProc, (long)mc);
1f1ec0e5 476 } else {
0e9ce565 477 mc->text.tbctrl = NewControl(window, &bounds, NULL, TRUE, 0, 0, 0,
478 SYS7_EDITBOX_PROC, (long)mc);
1f1ec0e5 479 }
0e9ce565 480 curstate->pos.v += 28;
481 add234(mcs->byctrl, mc);
482 mc->generic.next = mcs->panels[curstate->panelnum];
483 mcs->panels[curstate->panelnum] = mc;
484 ctrlevent(mcs, mc, EVENT_REFRESH);
1f1ec0e5 485}
486
0e9ce565 487#if !TARGET_API_MAC_CARBON
488static pascal SInt32 macctrl_sys7_editbox_cdef(SInt16 variant,
489 ControlRef control,
490 ControlDefProcMessage msg,
491 SInt32 param)
492{
493 RgnHandle rgn;
494 Rect rect;
495 TEHandle te;
496 long ssfs;
a460b361 497 Point mouse;
0e9ce565 498
499 switch (msg) {
500 case initCntl:
501 rect = (*control)->contrlRect;
502 InsetRect(&rect, 3, 3); /* 2 if it's 20 pixels high */
503 te = TENew(&rect, &rect);
504 ssfs = GetScriptVariable(smSystemScript, smScriptSysFondSize);
505 (*te)->txSize = LoWord(ssfs);
506 (*te)->txFont = HiWord(ssfs);
507 (*control)->contrlData = (Handle)te;
508 return noErr;
509 case dispCntl:
510 TEDispose((TEHandle)(*control)->contrlData);
511 return 0;
512 case drawCntl:
513 if ((*control)->contrlVis) {
514 rect = (*control)->contrlRect;
515 PenNormal();
516 FrameRect(&rect);
517 InsetRect(&rect, 3, 3);
518 TEUpdate(&rect, (TEHandle)(*control)->contrlData);
519 }
520 return 0;
a460b361 521 case testCntl:
522 mouse.h = LoWord(param);
523 mouse.v = HiWord(param);
524 return
525 PtInRect(mouse, &(*(TEHandle)(*control)->contrlData)->viewRect) ?
526 kControlEditTextPart : kControlNoPart;
0e9ce565 527 case calcCRgns:
528 if (param & (1 << 31)) {
529 param &= ~(1 << 31);
530 goto calcthumbrgn;
531 }
532 /* FALLTHROUGH */
533 case calcCntlRgn:
534 rgn = (RgnHandle)param;
535 RectRgn(rgn, &(*control)->contrlRect);
536 return 0;
537 case calcThumbRgn:
538 calcthumbrgn:
539 rgn = (RgnHandle)param;
540 SetEmptyRgn(rgn);
541 return 0;
542 }
543
544 return 0;
545}
546#endif
547
8a7e67ec 548static void macctrl_radio(struct macctrls *mcs, WindowPtr window,
549 struct mac_layoutstate *curstate,
550 union control *ctrl)
551{
552 union macctrl *mc = smalloc(sizeof *mc);
553 Rect bounds;
554 Str255 title;
555 unsigned int i, colwidth;
556
557 fprintf(stderr, " label = %s\n", ctrl->radio.label);
558 mc->generic.type = MACCTRL_RADIO;
559 mc->generic.ctrl = ctrl;
1f1ec0e5 560 mc->generic.privdata = NULL;
8a7e67ec 561 mc->radio.tbctrls =
562 smalloc(sizeof(*mc->radio.tbctrls) * ctrl->radio.nbuttons);
563 colwidth = (curstate->width + 13) / ctrl->radio.ncolumns;
564 for (i = 0; i < ctrl->radio.nbuttons; i++) {
565 fprintf(stderr, " button = %s\n", ctrl->radio.buttons[i]);
35790008 566 bounds.top = curstate->pos.v - 2;
567 bounds.bottom = bounds.top + 18;
8a7e67ec 568 bounds.left = curstate->pos.h + colwidth * (i % ctrl->radio.ncolumns);
569 if (i == ctrl->radio.nbuttons - 1 ||
570 i % ctrl->radio.ncolumns == ctrl->radio.ncolumns - 1) {
571 bounds.right = curstate->pos.h + curstate->width;
35790008 572 curstate->pos.v += 18;
8a7e67ec 573 } else
574 bounds.right = bounds.left + colwidth - 13;
575 c2pstrcpy(title, ctrl->radio.buttons[i]);
576 mc->radio.tbctrls[i] = NewControl(window, &bounds, title, TRUE,
577 0, 0, 1, radioButProc, (long)mc);
578 }
35790008 579 curstate->pos.v += 4;
8a7e67ec 580 add234(mcs->byctrl, mc);
ee10bc56 581 mc->generic.next = mcs->panels[curstate->panelnum];
582 mcs->panels[curstate->panelnum] = mc;
8a7e67ec 583 ctrlevent(mcs, mc, EVENT_REFRESH);
584}
585
586static void macctrl_checkbox(struct macctrls *mcs, WindowPtr window,
587 struct mac_layoutstate *curstate,
588 union control *ctrl)
589{
590 union macctrl *mc = smalloc(sizeof *mc);
591 Rect bounds;
592 Str255 title;
593
594 fprintf(stderr, " label = %s\n", ctrl->checkbox.label);
595 mc->generic.type = MACCTRL_CHECKBOX;
596 mc->generic.ctrl = ctrl;
1f1ec0e5 597 mc->generic.privdata = NULL;
8a7e67ec 598 bounds.left = curstate->pos.h;
599 bounds.right = bounds.left + curstate->width;
600 bounds.top = curstate->pos.v;
601 bounds.bottom = bounds.top + 16;
602 c2pstrcpy(title, ctrl->checkbox.label);
603 mc->checkbox.tbctrl = NewControl(window, &bounds, title, TRUE, 0, 0, 1,
604 checkBoxProc, (long)mc);
605 add234(mcs->byctrl, mc);
606 curstate->pos.v += 22;
ee10bc56 607 mc->generic.next = mcs->panels[curstate->panelnum];
608 mcs->panels[curstate->panelnum] = mc;
8a7e67ec 609 ctrlevent(mcs, mc, EVENT_REFRESH);
610}
611
612static void macctrl_button(struct macctrls *mcs, WindowPtr window,
613 struct mac_layoutstate *curstate,
614 union control *ctrl)
615{
616 union macctrl *mc = smalloc(sizeof *mc);
617 Rect bounds;
618 Str255 title;
619
620 fprintf(stderr, " label = %s\n", ctrl->button.label);
621 if (ctrl->button.isdefault)
622 fprintf(stderr, " is default\n");
623 mc->generic.type = MACCTRL_BUTTON;
624 mc->generic.ctrl = ctrl;
1f1ec0e5 625 mc->generic.privdata = NULL;
8a7e67ec 626 bounds.left = curstate->pos.h;
627 bounds.right = bounds.left + 100; /* XXX measure string */
628 bounds.top = curstate->pos.v;
629 bounds.bottom = bounds.top + 20;
630 c2pstrcpy(title, ctrl->button.label);
631 mc->button.tbctrl = NewControl(window, &bounds, title, TRUE, 0, 0, 1,
632 pushButProc, (long)mc);
633 if (mac_gestalts.apprvers >= 0x100) {
634 Boolean isdefault = ctrl->button.isdefault;
635
636 SetControlData(mc->button.tbctrl, kControlEntireControl,
637 kControlPushButtonDefaultTag,
638 sizeof(isdefault), &isdefault);
5537f572 639 } else if (ctrl->button.isdefault) {
640 InsetRect(&bounds, -4, -4);
641 NewControl(window, &bounds, title, TRUE, 0, 0, 1,
642 SYS7_DEFAULT_PROC, (long)mc);
8a7e67ec 643 }
855d05c4 644 if (mac_gestalts.apprvers >= 0x110) {
645 Boolean iscancel = ctrl->button.iscancel;
646
647 SetControlData(mc->button.tbctrl, kControlEntireControl,
648 kControlPushButtonCancelTag,
649 sizeof(iscancel), &iscancel);
650 }
8a7e67ec 651 add234(mcs->byctrl, mc);
ee10bc56 652 mc->generic.next = mcs->panels[curstate->panelnum];
653 mcs->panels[curstate->panelnum] = mc;
8a7e67ec 654 curstate->pos.v += 26;
655}
656
5537f572 657#if !TARGET_API_MAC_CARBON
658static pascal SInt32 macctrl_sys7_default_cdef(SInt16 variant,
659 ControlRef control,
660 ControlDefProcMessage msg,
661 SInt32 param)
662{
663 RgnHandle rgn;
664 Rect rect;
665 int oval;
666
667 switch (msg) {
668 case drawCntl:
669 if ((*control)->contrlVis) {
670 rect = (*control)->contrlRect;
671 PenNormal();
672 PenSize(3, 3);
673 oval = (rect.bottom - rect.top) / 2 + 2;
674 FrameRoundRect(&rect, oval, oval);
675 }
676 return 0;
677 case calcCRgns:
678 if (param & (1 << 31)) {
679 param &= ~(1 << 31);
680 goto calcthumbrgn;
681 }
682 /* FALLTHROUGH */
683 case calcCntlRgn:
684 rgn = (RgnHandle)param;
685 RectRgn(rgn, &(*control)->contrlRect);
686 return 0;
687 case calcThumbRgn:
688 calcthumbrgn:
689 rgn = (RgnHandle)param;
690 SetEmptyRgn(rgn);
691 return 0;
692 }
693
694 return 0;
695}
696#endif
697
56c01970 698static void macctrl_popup(struct macctrls *mcs, WindowPtr window,
699 struct mac_layoutstate *curstate,
700 union control *ctrl)
701{
702 union macctrl *mc = smalloc(sizeof *mc);
703 Rect bounds;
704 Str255 title;
705 unsigned int labelwidth;
0a33efe1 706 static int nextmenuid = MENU_MIN;
56c01970 707 int menuid;
708 MenuRef menu;
709
710 /*
711 * <http://developer.apple.com/qa/tb/tb42.html> explains how to
712 * create a popup menu with dynamic content.
713 */
714 assert(ctrl->listbox.height == 0);
715 assert(!ctrl->listbox.draglist);
716 assert(!ctrl->listbox.multisel);
717
718 fprintf(stderr, " label = %s\n", ctrl->listbox.label);
719 fprintf(stderr, " percentwidth = %d\n", ctrl->listbox.percentwidth);
720
721 mc->generic.type = MACCTRL_POPUP;
722 mc->generic.ctrl = ctrl;
1f1ec0e5 723 mc->generic.privdata = NULL;
56c01970 724 c2pstrcpy(title, ctrl->button.label);
725
726 /* Find a spare menu ID and create the menu */
727 while (GetMenuHandle(nextmenuid) != NULL)
728 if (++nextmenuid >= MENU_MAX) nextmenuid = MENU_MIN;
729 menuid = nextmenuid++;
730 menu = NewMenu(menuid, "\pdummy");
731 if (menu == NULL) return;
732 mc->popup.menu = menu;
733 mc->popup.menuid = menuid;
734 InsertMenu(menu, kInsertHierarchicalMenu);
735
736 /* The menu starts off empty */
737 mc->popup.nids = 0;
738 mc->popup.ids = NULL;
739
740 bounds.left = curstate->pos.h;
741 bounds.right = bounds.left + curstate->width;
742 bounds.top = curstate->pos.v;
743 bounds.bottom = bounds.top + 20;
744 /* XXX handle percentwidth == 100 */
745 labelwidth = curstate->width * (100 - ctrl->listbox.percentwidth) / 100;
746 mc->popup.tbctrl = NewControl(window, &bounds, title, TRUE,
747 popupTitleLeftJust, menuid, labelwidth,
748 popupMenuProc + popupFixedWidth, (long)mc);
749 add234(mcs->byctrl, mc);
750 curstate->pos.v += 26;
751 mc->generic.next = mcs->panels[curstate->panelnum];
752 mcs->panels[curstate->panelnum] = mc;
753 ctrlevent(mcs, mc, EVENT_REFRESH);
754}
755
8a7e67ec 756
757void macctrl_activate(WindowPtr window, EventRecord *event)
758{
0a33efe1 759 struct macctrls *mcs = mac_winctrls(window);
8a7e67ec 760 Boolean active = (event->modifiers & activeFlag) != 0;
761 GrafPtr saveport;
0a33efe1 762 int i, j;
763 ControlPartCode state;
764 union macctrl *mc;
8a7e67ec 765
766 GetPort(&saveport);
767 SetPort((GrafPtr)GetWindowPort(window));
78f015b8 768 if (mac_gestalts.apprvers >= 0x100)
8a7e67ec 769 SetThemeWindowBackground(window, active ?
770 kThemeBrushModelessDialogBackgroundActive :
771 kThemeBrushModelessDialogBackgroundInactive,
772 TRUE);
0a33efe1 773 state = active ? kControlNoPart : kControlInactivePart;
774 for (i = 0; i <= mcs->curpanel; i += mcs->curpanel)
775 for (mc = mcs->panels[i]; mc != NULL; mc = mc->generic.next)
776 switch (mc->generic.type) {
777 case MACCTRL_TEXT:
778 HiliteControl(mc->text.tbctrl, state);
779 break;
1f1ec0e5 780 case MACCTRL_EDITBOX:
781 HiliteControl(mc->editbox.tbctrl, state);
782 break;
0a33efe1 783 case MACCTRL_RADIO:
784 for (j = 0; j < mc->generic.ctrl->radio.nbuttons; j++)
785 HiliteControl(mc->radio.tbctrls[j], state);
786 break;
787 case MACCTRL_CHECKBOX:
788 HiliteControl(mc->checkbox.tbctrl, state);
789 break;
790 case MACCTRL_BUTTON:
791 HiliteControl(mc->button.tbctrl, state);
792 break;
793 case MACCTRL_POPUP:
794 HiliteControl(mc->popup.tbctrl, state);
795 break;
796 }
8a7e67ec 797 SetPort(saveport);
798}
799
800void macctrl_click(WindowPtr window, EventRecord *event)
801{
802 Point mouse;
803 ControlHandle control;
1f1ec0e5 804 int part, trackresult;
8a7e67ec 805 GrafPtr saveport;
806 union macctrl *mc;
807 struct macctrls *mcs = mac_winctrls(window);
808 int i;
1f1ec0e5 809 UInt32 features;
8a7e67ec 810
811 GetPort(&saveport);
812 SetPort((GrafPtr)GetWindowPort(window));
813 mouse = event->where;
814 GlobalToLocal(&mouse);
815 part = FindControl(mouse, window, &control);
56c01970 816 if (control != NULL) {
a460b361 817 mc = (union macctrl *)GetControlReference(control);
1f1ec0e5 818 if (mac_gestalts.apprvers >= 0x100) {
819 if (GetControlFeatures(control, &features) == noErr &&
820 (features & kControlSupportsFocus) &&
821 (features & kControlGetsFocusOnClick))
822 SetKeyboardFocus(window, control, part);
823 trackresult = HandleControlClick(control, mouse, event->modifiers,
824 (ControlActionUPP)-1);
a460b361 825 } else {
826#if !TARGET_API_MAC_CARBON
827 if (mc->generic.type == MACCTRL_EDITBOX &&
828 control == mc->editbox.tbctrl) {
829 TEHandle te = (TEHandle)(*control)->contrlData;
830
831 macctrl_setfocus(mcs, mc);
832 TEClick(mouse, !!(event->modifiers & shiftKey), te);
833 goto done;
834 }
835#endif
1f1ec0e5 836 trackresult = TrackControl(control, mouse, (ControlActionUPP)-1);
a460b361 837 }
56c01970 838 switch (mc->generic.type) {
56c01970 839 case MACCTRL_RADIO:
1f1ec0e5 840 if (trackresult != 0) {
56c01970 841 for (i = 0; i < mc->generic.ctrl->radio.nbuttons; i++)
8a7e67ec 842 if (mc->radio.tbctrls[i] == control)
843 SetControlValue(mc->radio.tbctrls[i],
844 kControlRadioButtonCheckedValue);
845 else
846 SetControlValue(mc->radio.tbctrls[i],
847 kControlRadioButtonUncheckedValue);
8a7e67ec 848 ctrlevent(mcs, mc, EVENT_VALCHANGE);
56c01970 849 }
850 break;
851 case MACCTRL_CHECKBOX:
1f1ec0e5 852 if (trackresult != 0) {
8a7e67ec 853 SetControlValue(control, !GetControlValue(control));
854 ctrlevent(mcs, mc, EVENT_VALCHANGE);
8a7e67ec 855 }
56c01970 856 break;
857 case MACCTRL_BUTTON:
1f1ec0e5 858 if (trackresult != 0)
56c01970 859 ctrlevent(mcs, mc, EVENT_ACTION);
860 break;
1f1ec0e5 861 case MACCTRL_POPUP:
862 ctrlevent(mcs, mc, EVENT_SELCHANGE);
863 break;
8a7e67ec 864 }
56c01970 865 }
a460b361 866 done:
8a7e67ec 867 SetPort(saveport);
868}
869
1f1ec0e5 870void macctrl_key(WindowPtr window, EventRecord *event)
871{
872 ControlRef control;
873 struct macctrls *mcs = mac_winctrls(window);
874 union macctrl *mc;
875
876 if (mac_gestalts.apprvers >= 0x100 &&
877 GetKeyboardFocus(window, &control) == noErr && control != NULL) {
878 HandleControlKey(control, (event->message & keyCodeMask) >> 8,
879 event->message & charCodeMask, event->modifiers);
880 mc = (union macctrl *)GetControlReference(control);
881 ctrlevent(mcs, mc, EVENT_VALCHANGE);
882 }
883}
884
8a7e67ec 885void macctrl_update(WindowPtr window)
886{
887#if TARGET_API_MAC_CARBON
888 RgnHandle visrgn;
889#endif
890 Rect rect;
891 GrafPtr saveport;
892
893 BeginUpdate(window);
894 GetPort(&saveport);
895 SetPort((GrafPtr)GetWindowPort(window));
896 if (mac_gestalts.apprvers >= 0x101) {
897#if TARGET_API_MAC_CARBON
898 GetPortBounds(GetWindowPort(window), &rect);
899#else
900 rect = window->portRect;
901#endif
902 InsetRect(&rect, -1, -1);
903 DrawThemeModelessDialogFrame(&rect, mac_frontwindow() == window ?
904 kThemeStateActive : kThemeStateInactive);
905 }
906#if TARGET_API_MAC_CARBON
907 visrgn = NewRgn();
908 GetPortVisibleRegion(GetWindowPort(window), visrgn);
909 UpdateControls(window, visrgn);
910 DisposeRgn(visrgn);
911#else
912 UpdateControls(window, window->visRgn);
913#endif
914 SetPort(saveport);
915 EndUpdate(window);
916}
917
918#if TARGET_API_MAC_CARBON
919#define EnableItem EnableMenuItem
920#define DisableItem DisableMenuItem
921#endif
922void macctrl_adjustmenus(WindowPtr window)
923{
924 MenuHandle menu;
925
926 menu = GetMenuHandle(mFile);
927 DisableItem(menu, iSave); /* XXX enable if modified */
928 EnableItem(menu, iSaveAs);
929 EnableItem(menu, iDuplicate);
930
931 menu = GetMenuHandle(mEdit);
932 DisableItem(menu, 0);
933}
934
935void macctrl_close(WindowPtr window)
936{
937 struct macctrls *mcs = mac_winctrls(window);
938 union macctrl *mc;
939
56c01970 940 /*
941 * Mostly, we don't bother disposing of the Toolbox controls,
942 * since that will happen automatically when the window is
943 * disposed of. Popup menus are an exception, because we have to
944 * dispose of the menu ourselves, and doing that while the control
945 * still holds a reference to it seems rude.
946 */
8a7e67ec 947 while ((mc = index234(mcs->byctrl, 0)) != NULL) {
1f1ec0e5 948 if (mc->generic.privdata != NULL && mc->generic.freeprivdata)
949 sfree(mc->generic.privdata);
56c01970 950 switch (mc->generic.type) {
951 case MACCTRL_POPUP:
952 DisposeControl(mc->popup.tbctrl);
953 DeleteMenu(mc->popup.menuid);
954 DisposeMenu(mc->popup.menu);
955 break;
956 }
8a7e67ec 957 del234(mcs->byctrl, mc);
958 sfree(mc);
959 }
960
961 freetree234(mcs->byctrl);
962 mcs->byctrl = NULL;
ee10bc56 963 sfree(mcs->panels);
964 mcs->panels = NULL;
8a7e67ec 965}
966
967void dlg_update_start(union control *ctrl, void *dlg)
968{
969
970 /* No-op for now */
971}
972
973void dlg_update_done(union control *ctrl, void *dlg)
974{
975
976 /* No-op for now */
977}
978
979void dlg_set_focus(union control *ctrl, void *dlg)
980{
981
982 if (mac_gestalts.apprvers >= 0x100) {
983 /* Use SetKeyboardFocus() */
984 } else {
985 /* Do our own mucking around */
986 }
987}
988
0bd8d76d 989union control *dlg_last_focused(union control *ctrl, void *dlg)
8a7e67ec 990{
991
992 return NULL;
993}
994
995void dlg_beep(void *dlg)
996{
997
998 SysBeep(30);
999}
1000
1001void dlg_error_msg(void *dlg, char *msg)
1002{
1003 Str255 pmsg;
1004
1005 c2pstrcpy(pmsg, msg);
1006 ParamText(pmsg, NULL, NULL, NULL);
1007 StopAlert(128, NULL);
1008}
1009
1010void dlg_end(void *dlg, int value)
1011{
1012
1013};
1014
1015void dlg_refresh(union control *ctrl, void *dlg)
1016{
1f1ec0e5 1017 struct macctrls *mcs = dlg;
1018 union macctrl *mc;
8a7e67ec 1019
1f1ec0e5 1020 if (ctrl == NULL)
1021 return; /* FIXME */
1022 mc = findbyctrl(mcs, ctrl);
1023 assert(mc != NULL);
1024 ctrlevent(mcs, mc, EVENT_REFRESH);
8a7e67ec 1025};
1026
1027void *dlg_get_privdata(union control *ctrl, void *dlg)
1028{
1f1ec0e5 1029 struct macctrls *mcs = dlg;
1030 union macctrl *mc = findbyctrl(mcs, ctrl);
8a7e67ec 1031
1f1ec0e5 1032 assert(mc != NULL);
1033 return mc->generic.privdata;
8a7e67ec 1034}
1035
1036void dlg_set_privdata(union control *ctrl, void *dlg, void *ptr)
1037{
1f1ec0e5 1038 struct macctrls *mcs = dlg;
1039 union macctrl *mc = findbyctrl(mcs, ctrl);
8a7e67ec 1040
1f1ec0e5 1041 assert(mc != NULL);
1042 mc->generic.privdata = ptr;
1043 mc->generic.freeprivdata = FALSE;
8a7e67ec 1044}
1045
1046void *dlg_alloc_privdata(union control *ctrl, void *dlg, size_t size)
1047{
1f1ec0e5 1048 struct macctrls *mcs = dlg;
1049 union macctrl *mc = findbyctrl(mcs, ctrl);
8a7e67ec 1050
1f1ec0e5 1051 assert(mc != NULL);
1052 mc->generic.privdata = smalloc(size);
1053 mc->generic.freeprivdata = TRUE;
1054 return mc->generic.privdata;
8a7e67ec 1055}
1056
1057
1058/*
1059 * Radio Button control
1060 */
1061
1062void dlg_radiobutton_set(union control *ctrl, void *dlg, int whichbutton)
1063{
93ba25f8 1064 struct macctrls *mcs = dlg;
1065 union macctrl *mc = findbyctrl(mcs, ctrl);
8a7e67ec 1066 int i;
1067
93ba25f8 1068 assert(mc != NULL);
8a7e67ec 1069 for (i = 0; i < ctrl->radio.nbuttons; i++) {
1070 if (i == whichbutton)
1071 SetControlValue(mc->radio.tbctrls[i],
1072 kControlRadioButtonCheckedValue);
1073 else
1074 SetControlValue(mc->radio.tbctrls[i],
1075 kControlRadioButtonUncheckedValue);
1076 }
1077
1078};
1079
1080int dlg_radiobutton_get(union control *ctrl, void *dlg)
1081{
93ba25f8 1082 struct macctrls *mcs = dlg;
1083 union macctrl *mc = findbyctrl(mcs, ctrl);
8a7e67ec 1084 int i;
1085
93ba25f8 1086 assert(mc != NULL);
8a7e67ec 1087 for (i = 0; i < ctrl->radio.nbuttons; i++) {
1088 if (GetControlValue(mc->radio.tbctrls[i]) ==
1089 kControlRadioButtonCheckedValue)
1090 return i;
1091 }
1092 return -1;
1093};
1094
1095
1096/*
1097 * Check Box control
1098 */
1099
1100void dlg_checkbox_set(union control *ctrl, void *dlg, int checked)
1101{
93ba25f8 1102 struct macctrls *mcs = dlg;
1103 union macctrl *mc = findbyctrl(mcs, ctrl);
8a7e67ec 1104
93ba25f8 1105 assert(mc != NULL);
8a7e67ec 1106 SetControlValue(mc->checkbox.tbctrl,
1107 checked ? kControlCheckBoxCheckedValue :
1108 kControlCheckBoxUncheckedValue);
1109}
1110
1111int dlg_checkbox_get(union control *ctrl, void *dlg)
1112{
93ba25f8 1113 struct macctrls *mcs = dlg;
1114 union macctrl *mc = findbyctrl(mcs, ctrl);
8a7e67ec 1115
93ba25f8 1116 assert(mc != NULL);
8a7e67ec 1117 return GetControlValue(mc->checkbox.tbctrl);
1118}
1119
1120
1121/*
1122 * Edit Box control
1123 */
1124
1125void dlg_editbox_set(union control *ctrl, void *dlg, char const *text)
1126{
1f1ec0e5 1127 struct macctrls *mcs = dlg;
1128 union macctrl *mc = findbyctrl(mcs, ctrl);
1129 GrafPtr saveport;
8a7e67ec 1130
1f1ec0e5 1131 assert(mc != NULL);
1132 assert(mc->generic.type == MACCTRL_EDITBOX);
0e9ce565 1133 GetPort(&saveport);
1134 SetPort((GrafPtr)(GetWindowPort(mcs->window)));
d9158b5e 1135 if (mac_gestalts.apprvers >= 0x100)
1f1ec0e5 1136 SetControlData(mc->editbox.tbctrl, kControlEntireControl,
1137 ctrl->editbox.password ?
1138 kControlEditTextPasswordTag :
1139 kControlEditTextTextTag,
1140 strlen(text), text);
a460b361 1141#if !TARGET_API_MAC_CARBON
d9158b5e 1142 else
0e9ce565 1143 TESetText(text, strlen(text),
1144 (TEHandle)(*mc->editbox.tbctrl)->contrlData);
a460b361 1145#endif
d9158b5e 1146 DrawOneControl(mc->editbox.tbctrl);
0e9ce565 1147 SetPort(saveport);
1148}
8a7e67ec 1149
1150void dlg_editbox_get(union control *ctrl, void *dlg, char *buffer, int length)
1151{
1f1ec0e5 1152 struct macctrls *mcs = dlg;
1153 union macctrl *mc = findbyctrl(mcs, ctrl);
1154 Size olen;
8a7e67ec 1155
1f1ec0e5 1156 assert(mc != NULL);
1157 assert(mc->generic.type == MACCTRL_EDITBOX);
1158 if (mac_gestalts.apprvers >= 0x100) {
1159 if (GetControlData(mc->editbox.tbctrl, kControlEntireControl,
1160 ctrl->editbox.password ?
1161 kControlEditTextPasswordTag :
1162 kControlEditTextTextTag,
1163 length - 1, buffer, &olen) != noErr)
1164 olen = 0;
1165 if (olen > length - 1)
d9158b5e 1166 olen = length - 1;
a460b361 1167 }
1168#if !TARGET_API_MAC_CARBON
1169 else {
1170 TEHandle te = (TEHandle)(*mc->editbox.tbctrl)->contrlData;
1171
d9158b5e 1172 olen = (*te)->teLength;
1173 if (olen > length - 1)
1174 olen = length - 1;
1175 memcpy(buffer, *(*te)->hText, olen);
1176 }
a460b361 1177#endif
d9158b5e 1178 buffer[olen] = '\0';
1f1ec0e5 1179 fprintf(stderr, "dlg_editbox_get: %s\n", buffer);
d9158b5e 1180}
8a7e67ec 1181
1182
1183/*
1184 * List Box control
1185 */
1186
56c01970 1187static void dlg_macpopup_clear(union control *ctrl, void *dlg)
1188{
1189 struct macctrls *mcs = dlg;
1190 union macctrl *mc = findbyctrl(mcs, ctrl);
1191 MenuRef menu = mc->popup.menu;
1192 unsigned int i, n;
1193
1194 fprintf(stderr, " popup_clear\n");
fd703c0a 1195 n = CountMenuItems(menu);
56c01970 1196 for (i = 0; i < n; i++)
1197 DeleteMenuItem(menu, n - i);
1198 mc->popup.nids = 0;
1199 sfree(mc->popup.ids);
1200 mc->popup.ids = NULL;
fd703c0a 1201 SetControlMaximum(mc->popup.tbctrl, CountMenuItems(menu));
56c01970 1202}
1203
8a7e67ec 1204void dlg_listbox_clear(union control *ctrl, void *dlg)
1205{
1206
56c01970 1207 if (ctrl->listbox.height == 0)
1208 dlg_macpopup_clear(ctrl, dlg);
1209}
1210
1211static void dlg_macpopup_del(union control *ctrl, void *dlg, int index)
1212{
1213 struct macctrls *mcs = dlg;
1214 union macctrl *mc = findbyctrl(mcs, ctrl);
1215 MenuRef menu = mc->popup.menu;
1216
1217 fprintf(stderr, " popup_del %d\n", index);
1218 DeleteMenuItem(menu, index + 1);
1219 if (mc->popup.ids != NULL)
1220 memcpy(mc->popup.ids + index, mc->popup.ids + index + 1,
1221 (mc->popup.nids - index - 1) * sizeof(*mc->popup.ids));
fd703c0a 1222 SetControlMaximum(mc->popup.tbctrl, CountMenuItems(menu));
56c01970 1223}
8a7e67ec 1224
1225void dlg_listbox_del(union control *ctrl, void *dlg, int index)
1226{
1227
56c01970 1228 if (ctrl->listbox.height == 0)
1229 dlg_macpopup_del(ctrl, dlg, index);
1230}
1231
1232static void dlg_macpopup_add(union control *ctrl, void *dlg, char const *text)
1233{
1234 struct macctrls *mcs = dlg;
1235 union macctrl *mc = findbyctrl(mcs, ctrl);
1236 MenuRef menu = mc->popup.menu;
1237 Str255 itemstring;
1238
1239 fprintf(stderr, " popup_add %s\n", text);
1240 assert(text[0] != '\0');
1241 c2pstrcpy(itemstring, text);
1242 AppendMenu(menu, "\pdummy");
fd703c0a 1243 SetMenuItemText(menu, CountMenuItems(menu), itemstring);
1244 SetControlMaximum(mc->popup.tbctrl, CountMenuItems(menu));
56c01970 1245}
8a7e67ec 1246
1247void dlg_listbox_add(union control *ctrl, void *dlg, char const *text)
1248{
1249
56c01970 1250 if (ctrl->listbox.height == 0)
1251 dlg_macpopup_add(ctrl, dlg, text);
1252}
1253
4eaff8d4 1254static void dlg_macpopup_addwithid(union control *ctrl, void *dlg,
1255 char const *text, int id)
56c01970 1256{
1257 struct macctrls *mcs = dlg;
1258 union macctrl *mc = findbyctrl(mcs, ctrl);
1259 MenuRef menu = mc->popup.menu;
1260 unsigned int index;
1261
1262 fprintf(stderr, " popup_addwthindex %s, %d\n", text, id);
1263 dlg_macpopup_add(ctrl, dlg, text);
fd703c0a 1264 index = CountMenuItems(menu) - 1;
56c01970 1265 if (mc->popup.nids <= index) {
1266 mc->popup.nids = index + 1;
1267 mc->popup.ids = srealloc(mc->popup.ids,
1268 mc->popup.nids * sizeof(*mc->popup.ids));
1269 }
1270 mc->popup.ids[index] = id;
1271}
8a7e67ec 1272
4eaff8d4 1273void dlg_listbox_addwithid(union control *ctrl, void *dlg,
1274 char const *text, int id)
8a7e67ec 1275{
1276
56c01970 1277 if (ctrl->listbox.height == 0)
4eaff8d4 1278 dlg_macpopup_addwithid(ctrl, dlg, text, id);
56c01970 1279}
8a7e67ec 1280
1281int dlg_listbox_getid(union control *ctrl, void *dlg, int index)
1282{
56c01970 1283 struct macctrls *mcs = dlg;
1284 union macctrl *mc = findbyctrl(mcs, ctrl);
8a7e67ec 1285
56c01970 1286 if (ctrl->listbox.height == 0) {
1287 assert(mc->popup.ids != NULL && mc->popup.nids > index);
1288 return mc->popup.ids[index];
1289 }
8a7e67ec 1290 return 0;
56c01970 1291}
8a7e67ec 1292
1293int dlg_listbox_index(union control *ctrl, void *dlg)
1294{
56c01970 1295 struct macctrls *mcs = dlg;
1296 union macctrl *mc = findbyctrl(mcs, ctrl);
8a7e67ec 1297
56c01970 1298 if (ctrl->listbox.height == 0)
1299 return GetControlValue(mc->popup.tbctrl) - 1;
8a7e67ec 1300 return 0;
1301};
1302
1303int dlg_listbox_issel(union control *ctrl, void *dlg, int index)
1304{
56c01970 1305 struct macctrls *mcs = dlg;
1306 union macctrl *mc = findbyctrl(mcs, ctrl);
8a7e67ec 1307
56c01970 1308 if (ctrl->listbox.height == 0)
1309 return GetControlValue(mc->popup.tbctrl) - 1 == index;
8a7e67ec 1310 return 0;
1311};
1312
1313void dlg_listbox_select(union control *ctrl, void *dlg, int index)
1314{
56c01970 1315 struct macctrls *mcs = dlg;
1316 union macctrl *mc = findbyctrl(mcs, ctrl);
8a7e67ec 1317
56c01970 1318 if (ctrl->listbox.height == 0)
1319 SetControlValue(mc->popup.tbctrl, index + 1);
8a7e67ec 1320};
1321
1322
1323/*
1324 * Text control
1325 */
1326
1327void dlg_text_set(union control *ctrl, void *dlg, char const *text)
1328{
93ba25f8 1329 struct macctrls *mcs = dlg;
1330 union macctrl *mc = findbyctrl(mcs, ctrl);
f32ce408 1331 Str255 title;
8a7e67ec 1332
93ba25f8 1333 assert(mc != NULL);
8a7e67ec 1334 if (mac_gestalts.apprvers >= 0x100)
1335 SetControlData(mc->text.tbctrl, kControlEntireControl,
1f1ec0e5 1336 kControlStaticTextTextTag, strlen(text), text);
f32ce408 1337 else {
1338 c2pstrcpy(title, text);
1339 SetControlTitle(mc->text.tbctrl, title);
1340 }
8a7e67ec 1341}
1342
1343
1344/*
1345 * File Selector control
1346 */
1347
1348void dlg_filesel_set(union control *ctrl, void *dlg, Filename fn)
1349{
1350
1351}
1352
1353void dlg_filesel_get(union control *ctrl, void *dlg, Filename *fn)
1354{
1355
1356}
1357
1358
1359/*
1360 * Font Selector control
1361 */
1362
1363void dlg_fontsel_set(union control *ctrl, void *dlg, FontSpec fn)
1364{
1365
1366}
1367
1368void dlg_fontsel_get(union control *ctrl, void *dlg, FontSpec *fn)
1369{
1370
1371}
1372
1373
1374/*
1375 * Printer enumeration
1376 */
1377
1378printer_enum *printer_start_enum(int *nprinters)
1379{
1380
1381 *nprinters = 0;
1382 return NULL;
1383}
1384
1385char *printer_get_name(printer_enum *pe, int thing)
1386{
1387
1388 return "<none>";
1389}
1390
1391void printer_finish_enum(printer_enum *pe)
1392{
1393
1394}
1395
1396
1397/*
1398 * Colour selection stuff
1399 */
1400
1401void dlg_coloursel_start(union control *ctrl, void *dlg,
1402 int r, int g, int b)
1403{
1404
1405}
1406
1407int dlg_coloursel_results(union control *ctrl, void *dlg,
1408 int *r, int *g, int *b)
1409{
1410
1411 return 0;
1412}
1413
1414/*
1415 * Local Variables:
1416 * c-file-style: "simon"
1417 * End:
1418 */