Support for colour selection in the Mac OS.
[u/mdw/putty] / mac / macctrls.c
CommitLineData
621bfeaa 1/* $Id: macctrls.c,v 1.35 2003/04/14 22:42:44 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>
621bfeaa 30#include <ColorPicker.h>
8a7e67ec 31#include <Controls.h>
32#include <ControlDefinitions.h>
135c0f1a 33#include <Events.h>
4bd083f7 34#include <Lists.h>
56c01970 35#include <Menus.h>
fa4942e7 36#include <Resources.h>
0e9ce565 37#include <Script.h>
8a7e67ec 38#include <Sound.h>
0e9ce565 39#include <TextEdit.h>
8a7e67ec 40#include <TextUtils.h>
0e9ce565 41#include <ToolUtils.h>
8a7e67ec 42#include <Windows.h>
43
93ba25f8 44#include <assert.h>
ee10bc56 45#include <string.h>
93ba25f8 46
8a7e67ec 47#include "putty.h"
48#include "mac.h"
49#include "macresid.h"
50#include "dialog.h"
51#include "tree234.h"
52
56c01970 53/* Range of menu IDs for popup menus */
54#define MENU_MIN 1024
55#define MENU_MAX 2048
56
57
8a7e67ec 58union macctrl {
59 struct macctrl_generic {
60 enum {
61 MACCTRL_TEXT,
1f1ec0e5 62 MACCTRL_EDITBOX,
8a7e67ec 63 MACCTRL_RADIO,
64 MACCTRL_CHECKBOX,
56c01970 65 MACCTRL_BUTTON,
7d77d56d 66 MACCTRL_LISTBOX,
56c01970 67 MACCTRL_POPUP
8a7e67ec 68 } type;
69 /* Template from which this was generated */
70 union control *ctrl;
ee10bc56 71 /* Next control in this panel */
72 union macctrl *next;
1f1ec0e5 73 void *privdata;
74 int freeprivdata;
8a7e67ec 75 } generic;
76 struct {
77 struct macctrl_generic generic;
78 ControlRef tbctrl;
79 } text;
80 struct {
81 struct macctrl_generic generic;
1f1ec0e5 82 ControlRef tbctrl;
cd3e71e8 83 ControlRef tblabel;
1f1ec0e5 84 } editbox;
85 struct {
86 struct macctrl_generic generic;
8a7e67ec 87 ControlRef *tbctrls;
cd3e71e8 88 ControlRef tblabel;
8a7e67ec 89 } radio;
90 struct {
91 struct macctrl_generic generic;
92 ControlRef tbctrl;
93 } checkbox;
94 struct {
95 struct macctrl_generic generic;
96 ControlRef tbctrl;
457f0b8f 97 ControlRef tbring;
8a7e67ec 98 } button;
56c01970 99 struct {
100 struct macctrl_generic generic;
101 ControlRef tbctrl;
4bd083f7 102 ListHandle list;
7d77d56d 103 unsigned int nids;
104 int *ids;
105 } listbox;
106 struct {
107 struct macctrl_generic generic;
108 ControlRef tbctrl;
56c01970 109 MenuRef menu;
110 int menuid;
111 unsigned int nids;
112 int *ids;
113 } popup;
8a7e67ec 114};
115
116struct mac_layoutstate {
117 Point pos;
118 unsigned int width;
ee10bc56 119 unsigned int panelnum;
8a7e67ec 120};
121
122#define ctrlevent(mcs, mc, event) do { \
123 if ((mc)->generic.ctrl->generic.handler != NULL) \
93ba25f8 124 (*(mc)->generic.ctrl->generic.handler)((mc)->generic.ctrl, (mcs),\
8a7e67ec 125 (mcs)->data, (event)); \
126} while (0)
127
93ba25f8 128#define findbyctrl(mcs, ctrl) \
129 find234((mcs)->byctrl, (ctrl), macctrl_cmp_byctrl_find)
130
8a7e67ec 131static void macctrl_layoutset(struct mac_layoutstate *, struct controlset *,
132 WindowPtr, struct macctrls *);
ee10bc56 133static void macctrl_switchtopanel(struct macctrls *, unsigned int);
a460b361 134static void macctrl_setfocus(struct macctrls *, union macctrl *);
8a7e67ec 135static void macctrl_text(struct macctrls *, WindowPtr,
136 struct mac_layoutstate *, union control *);
1f1ec0e5 137static void macctrl_editbox(struct macctrls *, WindowPtr,
138 struct mac_layoutstate *, union control *);
8a7e67ec 139static void macctrl_radio(struct macctrls *, WindowPtr,
140 struct mac_layoutstate *, union control *);
141static void macctrl_checkbox(struct macctrls *, WindowPtr,
142 struct mac_layoutstate *, union control *);
143static void macctrl_button(struct macctrls *, WindowPtr,
144 struct mac_layoutstate *, union control *);
7d77d56d 145static void macctrl_listbox(struct macctrls *, WindowPtr,
146 struct mac_layoutstate *, union control *);
56c01970 147static void macctrl_popup(struct macctrls *, WindowPtr,
148 struct mac_layoutstate *, union control *);
fa4942e7 149#if !TARGET_API_MAC_CARBON
0e9ce565 150static pascal SInt32 macctrl_sys7_editbox_cdef(SInt16, ControlRef,
151 ControlDefProcMessage, SInt32);
5537f572 152static pascal SInt32 macctrl_sys7_default_cdef(SInt16, ControlRef,
153 ControlDefProcMessage, SInt32);
4bd083f7 154static pascal SInt32 macctrl_sys7_listbox_cdef(SInt16, ControlRef,
155 ControlDefProcMessage, SInt32);
fa4942e7 156#endif
157
158#if !TARGET_API_MAC_CARBON
159/*
160 * This trick enables us to keep all the CDEF code in the main
161 * application, which makes life easier. For details, see
162 * <http://developer.apple.com/technotes/tn/tn2003.html#custom_code_base>.
163 */
164
165#pragma options align=mac68k
166typedef struct {
167 short jmpabs; /* 4EF9 */
168 ControlDefUPP theUPP;
169} **PatchCDEF;
170#pragma options align=reset
171#endif
172
173static void macctrl_init()
174{
175#if !TARGET_API_MAC_CARBON
176 static int inited = 0;
177 PatchCDEF cdef;
178
179 if (inited) return;
0e9ce565 180 cdef = (PatchCDEF)GetResource(kControlDefProcResourceType, CDEF_EditBox);
181 (*cdef)->theUPP = NewControlDefProc(macctrl_sys7_editbox_cdef);
5537f572 182 cdef = (PatchCDEF)GetResource(kControlDefProcResourceType, CDEF_Default);
183 (*cdef)->theUPP = NewControlDefProc(macctrl_sys7_default_cdef);
4bd083f7 184 cdef = (PatchCDEF)GetResource(kControlDefProcResourceType, CDEF_ListBox);
185 (*cdef)->theUPP = NewControlDefProc(macctrl_sys7_listbox_cdef);
fa4942e7 186 inited = 1;
187#endif
188}
189
8a7e67ec 190
191static int macctrl_cmp_byctrl(void *av, void *bv)
192{
193 union macctrl *a = (union macctrl *)av;
194 union macctrl *b = (union macctrl *)bv;
195
196 if (a->generic.ctrl < b->generic.ctrl)
197 return -1;
198 else if (a->generic.ctrl > b->generic.ctrl)
199 return +1;
200 else
201 return 0;
202}
203
93ba25f8 204static int macctrl_cmp_byctrl_find(void *av, void *bv)
205{
206 union control *a = (union control *)av;
207 union macctrl *b = (union macctrl *)bv;
208
209 if (a < b->generic.ctrl)
210 return -1;
211 else if (a > b->generic.ctrl)
212 return +1;
213 else
214 return 0;
215}
216
d50c2df3 217static union control panellist;
218
219static void panellist_handler(union control *ctrl, void *dlg, void *data,
220 int event)
221{
222 struct macctrls *mcs = dlg;
223
224 if (event == EVENT_SELCHANGE)
225 macctrl_switchtopanel(mcs, dlg_listbox_index(ctrl, dlg) + 1);
226}
227
8a7e67ec 228void macctrl_layoutbox(struct controlbox *cb, WindowPtr window,
229 struct macctrls *mcs)
230{
231 int i;
232 struct mac_layoutstate curstate;
233 ControlRef root;
234 Rect rect;
fa4942e7 235
236 macctrl_init();
d50c2df3 237 if (mac_gestalts.apprvers >= 0x100)
238 CreateRootControl(window, &root);
8a7e67ec 239#if TARGET_API_MAC_CARBON
240 GetPortBounds(GetWindowPort(window), &rect);
241#else
242 rect = window->portRect;
243#endif
1f1ec0e5 244 mcs->window = window;
8a7e67ec 245 mcs->byctrl = newtree234(macctrl_cmp_byctrl);
a460b361 246 mcs->focus = NULL;
135c0f1a 247 mcs->defbutton = NULL;
248 mcs->canbutton = NULL;
ee10bc56 249 /* Count the number of panels */
250 mcs->npanels = 1;
251 for (i = 1; i < cb->nctrlsets; i++)
252 if (strcmp(cb->ctrlsets[i]->pathname, cb->ctrlsets[i-1]->pathname))
253 mcs->npanels++;
34773273 254 mcs->panels = snewn(mcs->npanels, union macctrl *);
ee10bc56 255 memset(mcs->panels, 0, sizeof(*mcs->panels) * mcs->npanels);
256 curstate.panelnum = 0;
d50c2df3 257
258 curstate.pos.h = rect.left + 13;
259 curstate.pos.v = rect.top + 13;
260 curstate.width = 160;
261 panellist.listbox.type = CTRL_LISTBOX;
262 panellist.listbox.handler = &panellist_handler;
263 panellist.listbox.height = 15;
264 panellist.listbox.percentwidth = 100;
265 macctrl_listbox(mcs, window, &curstate, &panellist);
266
267 curstate.pos.h = rect.left + 13 + 160 + 13;
268 curstate.pos.v = rect.bottom - 33;
269 curstate.width = rect.right - (rect.left + 13 + 160) - (13 * 2);
ee10bc56 270 for (i = 0; i < cb->nctrlsets; i++) {
271 if (i > 0 && strcmp(cb->ctrlsets[i]->pathname,
272 cb->ctrlsets[i-1]->pathname)) {
273 curstate.pos.v = rect.top + 13;
274 curstate.panelnum++;
275 assert(curstate.panelnum < mcs->npanels);
d50c2df3 276 dlg_listbox_add(&panellist, mcs, cb->ctrlsets[i]->pathname);
ee10bc56 277 }
8a7e67ec 278 macctrl_layoutset(&curstate, cb->ctrlsets[i], window, mcs);
ee10bc56 279 }
4bd083f7 280 macctrl_switchtopanel(mcs, 1);
281 /* 14 = proxies, 19 = portfwd, 20 = SSH bugs */
8a7e67ec 282}
283
47c65db4 284#define MAXCOLS 16
285
8a7e67ec 286static void macctrl_layoutset(struct mac_layoutstate *curstate,
287 struct controlset *s,
288 WindowPtr window, struct macctrls *mcs)
289{
47c65db4 290 unsigned int i, j, ncols, colstart;
291 struct mac_layoutstate cols[MAXCOLS];
8a7e67ec 292
293 fprintf(stderr, "--- begin set ---\n");
93ba25f8 294 fprintf(stderr, "pathname = %s\n", s->pathname);
8a7e67ec 295 if (s->boxname && *s->boxname)
296 fprintf(stderr, "boxname = %s\n", s->boxname);
297 if (s->boxtitle)
298 fprintf(stderr, "boxtitle = %s\n", s->boxtitle);
299
47c65db4 300 cols[0] = *curstate;
301 ncols = 1;
8a7e67ec 302
303 for (i = 0; i < s->ncontrols; i++) {
304 union control *ctrl = s->ctrls[i];
305 char const *s;
306
47c65db4 307 colstart = COLUMN_START(ctrl->generic.column);
8a7e67ec 308 switch (ctrl->generic.type) {
309 case CTRL_TEXT: s = "text"; break;
310 case CTRL_EDITBOX: s = "editbox"; break;
311 case CTRL_RADIO: s = "radio"; break;
312 case CTRL_CHECKBOX: s = "checkbox"; break;
313 case CTRL_BUTTON: s = "button"; break;
314 case CTRL_LISTBOX: s = "listbox"; break;
315 case CTRL_COLUMNS: s = "columns"; break;
316 case CTRL_FILESELECT: s = "fileselect"; break;
317 case CTRL_FONTSELECT: s = "fontselect"; break;
318 case CTRL_TABDELAY: s = "tabdelay"; break;
319 default: s = "unknown"; break;
320 }
321 fprintf(stderr, " control: %s\n", s);
322 switch (ctrl->generic.type) {
47c65db4 323 case CTRL_COLUMNS:
324 if (ctrl->columns.ncols != 1) {
325 ncols = ctrl->columns.ncols;
326 fprintf(stderr, " split to %d\n", ncols);
327 assert(ncols <= MAXCOLS);
328 for (j = 0; j < ncols; j++) {
329 cols[j] = cols[0];
330 if (j > 0)
331 cols[j].pos.h = cols[j-1].pos.h + cols[j-1].width + 6;
332 if (j == ncols - 1)
333 cols[j].width = curstate->width -
334 (cols[j].pos.h - curstate->pos.h);
335 else
336 cols[j].width = (curstate->width + 6) *
337 ctrl->columns.percentages[j] / 100 - 6;
338 }
339 } else {
340 fprintf(stderr, " join\n");
341 for (j = 0; j < ncols; j++)
342 if (cols[j].pos.v > cols[0].pos.v)
343 cols[0].pos.v = cols[j].pos.v;
344 cols[0].width = curstate->width;
345 ncols = 1;
346 }
347 break;
8a7e67ec 348 case CTRL_TEXT:
47c65db4 349 macctrl_text(mcs, window, &cols[colstart], ctrl);
8a7e67ec 350 break;
1f1ec0e5 351 case CTRL_EDITBOX:
47c65db4 352 macctrl_editbox(mcs, window, &cols[colstart], ctrl);
1f1ec0e5 353 break;
8a7e67ec 354 case CTRL_RADIO:
47c65db4 355 macctrl_radio(mcs, window, &cols[colstart], ctrl);
8a7e67ec 356 break;
357 case CTRL_CHECKBOX:
47c65db4 358 macctrl_checkbox(mcs, window, &cols[colstart], ctrl);
8a7e67ec 359 break;
360 case CTRL_BUTTON:
47c65db4 361 macctrl_button(mcs, window, &cols[colstart], ctrl);
8a7e67ec 362 break;
56c01970 363 case CTRL_LISTBOX:
364 if (ctrl->listbox.height == 0)
47c65db4 365 macctrl_popup(mcs, window, &cols[colstart], ctrl);
7d77d56d 366 else
367 macctrl_listbox(mcs, window, &cols[colstart], ctrl);
56c01970 368 break;
8a7e67ec 369 }
370 }
47c65db4 371 for (j = 0; j < ncols; j++)
372 if (cols[j].pos.v > curstate->pos.v)
373 curstate->pos.v = cols[j].pos.v;
8a7e67ec 374}
375
ee10bc56 376static void macctrl_switchtopanel(struct macctrls *mcs, unsigned int which)
377{
378 unsigned int i, j;
379 union macctrl *mc;
380
0a33efe1 381#define hideshow(c) do { \
382 if (i == which) ShowControl(c); else HideControl(c); \
383} while (0)
384
385 mcs->curpanel = which;
ee10bc56 386 /* Panel 0 is special and always visible. */
387 for (i = 1; i < mcs->npanels; i++)
a460b361 388 for (mc = mcs->panels[i]; mc != NULL; mc = mc->generic.next) {
389#if !TARGET_API_MAC_CARBON
390 if (mcs->focus == mc)
391 macctrl_setfocus(mcs, NULL);
392#endif
ee10bc56 393 switch (mc->generic.type) {
394 case MACCTRL_TEXT:
0a33efe1 395 hideshow(mc->text.tbctrl);
ee10bc56 396 break;
1f1ec0e5 397 case MACCTRL_EDITBOX:
398 hideshow(mc->editbox.tbctrl);
0b89e7b2 399 if (mc->editbox.tblabel != NULL)
400 hideshow(mc->editbox.tblabel);
1f1ec0e5 401 break;
ee10bc56 402 case MACCTRL_RADIO:
403 for (j = 0; j < mc->generic.ctrl->radio.nbuttons; j++)
0a33efe1 404 hideshow(mc->radio.tbctrls[j]);
0b89e7b2 405 if (mc->radio.tblabel != NULL)
406 hideshow(mc->radio.tblabel);
ee10bc56 407 break;
408 case MACCTRL_CHECKBOX:
0a33efe1 409 hideshow(mc->checkbox.tbctrl);
ee10bc56 410 break;
411 case MACCTRL_BUTTON:
0a33efe1 412 hideshow(mc->button.tbctrl);
413 break;
7d77d56d 414 case MACCTRL_LISTBOX:
415 hideshow(mc->listbox.tbctrl);
416 /*
417 * At least under Mac OS 8.1, hiding a list box
418 * doesn't hide its scroll bars.
419 */
7d77d56d 420#if TARGET_API_MAC_CARBON
4bd083f7 421 hideshow(GetListVerticalScrollBar(mc->listbox.list));
7d77d56d 422#else
4bd083f7 423 hideshow((*mc->listbox.list)->vScroll);
7d77d56d 424#endif
7d77d56d 425 break;
0a33efe1 426 case MACCTRL_POPUP:
427 hideshow(mc->popup.tbctrl);
ee10bc56 428 break;
ee10bc56 429 }
a460b361 430 }
431}
432
433#if !TARGET_API_MAC_CARBON
434/*
435 * System 7 focus manipulation
436 */
437static void macctrl_defocus(union macctrl *mc)
438{
439
440 assert(mac_gestalts.apprvers < 0x100);
441 switch (mc->generic.type) {
442 case MACCTRL_EDITBOX:
443 TEDeactivate((TEHandle)(*mc->editbox.tbctrl)->contrlData);
444 break;
445 }
446}
447
448static void macctrl_enfocus(union macctrl *mc)
449{
450
451 assert(mac_gestalts.apprvers < 0x100);
452 switch (mc->generic.type) {
453 case MACCTRL_EDITBOX:
454 TEActivate((TEHandle)(*mc->editbox.tbctrl)->contrlData);
455 break;
456 }
ee10bc56 457}
458
a460b361 459static void macctrl_setfocus(struct macctrls *mcs, union macctrl *mc)
460{
461
84e1c2a9 462 if (mcs->focus == mc)
463 return;
a460b361 464 if (mcs->focus != NULL)
465 macctrl_defocus(mcs->focus);
466 mcs->focus = mc;
467 if (mc != NULL)
468 macctrl_enfocus(mc);
469}
470#endif
471
8a7e67ec 472static void macctrl_text(struct macctrls *mcs, WindowPtr window,
473 struct mac_layoutstate *curstate,
474 union control *ctrl)
475{
34773273 476 union macctrl *mc = snew(union macctrl);
8a7e67ec 477 Rect bounds;
f28d33e8 478 SInt16 height;
8a7e67ec 479
0b89e7b2 480 assert(ctrl->text.label != NULL);
8a7e67ec 481 fprintf(stderr, " label = %s\n", ctrl->text.label);
482 mc->generic.type = MACCTRL_TEXT;
483 mc->generic.ctrl = ctrl;
1f1ec0e5 484 mc->generic.privdata = NULL;
8a7e67ec 485 bounds.left = curstate->pos.h;
486 bounds.right = bounds.left + curstate->width;
487 bounds.top = curstate->pos.v;
488 bounds.bottom = bounds.top + 16;
489 if (mac_gestalts.apprvers >= 0x100) {
8a7e67ec 490 Size olen;
491
492 mc->text.tbctrl = NewControl(window, &bounds, NULL, TRUE, 0, 0, 0,
493 kControlStaticTextProc, (long)mc);
494 SetControlData(mc->text.tbctrl, kControlEntireControl,
495 kControlStaticTextTextTag,
496 strlen(ctrl->text.label), ctrl->text.label);
497 GetControlData(mc->text.tbctrl, kControlEntireControl,
498 kControlStaticTextTextHeightTag,
499 sizeof(height), &height, &olen);
f28d33e8 500 }
501#if !TARGET_API_MAC_CARBON
502 else {
503 TEHandle te;
fa4942e7 504
f28d33e8 505 mc->text.tbctrl = NewControl(window, &bounds, NULL, TRUE, 0, 0, 0,
fa4942e7 506 SYS7_TEXT_PROC, (long)mc);
f28d33e8 507 te = (TEHandle)(*mc->text.tbctrl)->contrlData;
508 TESetText(ctrl->text.label, strlen(ctrl->text.label), te);
509 height = TEGetHeight(1, (*te)->nLines, te);
8a7e67ec 510 }
f28d33e8 511#endif
512 fprintf(stderr, " height = %d\n", height);
513 SizeControl(mc->text.tbctrl, curstate->width, height);
514 curstate->pos.v += height + 6;
8a7e67ec 515 add234(mcs->byctrl, mc);
ee10bc56 516 mc->generic.next = mcs->panels[curstate->panelnum];
517 mcs->panels[curstate->panelnum] = mc;
8a7e67ec 518}
519
1f1ec0e5 520static void macctrl_editbox(struct macctrls *mcs, WindowPtr window,
521 struct mac_layoutstate *curstate,
522 union control *ctrl)
523{
34773273 524 union macctrl *mc = snew(union macctrl);
cd3e71e8 525 Rect lbounds, bounds;
1f1ec0e5 526
0b89e7b2 527 if (ctrl->editbox.label != NULL)
528 fprintf(stderr, " label = %s\n", ctrl->editbox.label);
1f1ec0e5 529 fprintf(stderr, " percentwidth = %d\n", ctrl->editbox.percentwidth);
530 if (ctrl->editbox.password) fprintf(stderr, " password\n");
531 if (ctrl->editbox.has_list) fprintf(stderr, " has list\n");
532 mc->generic.type = MACCTRL_EDITBOX;
533 mc->generic.ctrl = ctrl;
534 mc->generic.privdata = NULL;
cd3e71e8 535 lbounds.left = curstate->pos.h;
536 lbounds.top = curstate->pos.v;
537 if (ctrl->editbox.percentwidth == 100) {
0b89e7b2 538 if (ctrl->editbox.label != NULL) {
539 lbounds.right = lbounds.left + curstate->width;
540 lbounds.bottom = lbounds.top + 16;
541 curstate->pos.v += 18;
542 }
cd3e71e8 543 bounds.left = curstate->pos.h;
544 bounds.right = bounds.left + curstate->width;
cd3e71e8 545 } else {
546 lbounds.right = lbounds.left +
547 curstate->width * (100 - ctrl->editbox.percentwidth) / 100;
548 lbounds.bottom = lbounds.top + 22;
549 bounds.left = lbounds.right;
550 bounds.right = lbounds.left + curstate->width;
551 }
0e9ce565 552 bounds.top = curstate->pos.v;
553 bounds.bottom = bounds.top + 22;
1f1ec0e5 554 if (mac_gestalts.apprvers >= 0x100) {
0b89e7b2 555 if (ctrl->editbox.label == NULL)
556 mc->editbox.tblabel = NULL;
557 else {
558 mc->editbox.tblabel = NewControl(window, &lbounds, NULL, TRUE,
559 0, 0, 0, kControlStaticTextProc,
560 (long)mc);
561 SetControlData(mc->editbox.tblabel, kControlEntireControl,
562 kControlStaticTextTextTag,
563 strlen(ctrl->editbox.label), ctrl->editbox.label);
564 }
95b1a3e4 565 InsetRect(&bounds, 3, 3);
cd3e71e8 566 mc->editbox.tbctrl = NewControl(window, &bounds, NULL, TRUE, 0, 0, 0,
567 ctrl->editbox.password ?
568 kControlEditTextPasswordProc :
569 kControlEditTextProc, (long)mc);
f28d33e8 570 }
571#if !TARGET_API_MAC_CARBON
572 else {
0b89e7b2 573 if (ctrl->editbox.label == NULL)
574 mc->editbox.tblabel = NULL;
575 else {
576 mc->editbox.tblabel = NewControl(window, &lbounds, NULL, TRUE,
577 0, 0, 0, SYS7_TEXT_PROC,
578 (long)mc);
579 TESetText(ctrl->editbox.label, strlen(ctrl->editbox.label),
580 (TEHandle)(*mc->editbox.tblabel)->contrlData);
581 }
cd3e71e8 582 mc->editbox.tbctrl = NewControl(window, &bounds, NULL, TRUE, 0, 0, 0,
583 SYS7_EDITBOX_PROC, (long)mc);
1f1ec0e5 584 }
f28d33e8 585#endif
0e9ce565 586 curstate->pos.v += 28;
587 add234(mcs->byctrl, mc);
588 mc->generic.next = mcs->panels[curstate->panelnum];
589 mcs->panels[curstate->panelnum] = mc;
590 ctrlevent(mcs, mc, EVENT_REFRESH);
1f1ec0e5 591}
592
0e9ce565 593#if !TARGET_API_MAC_CARBON
594static pascal SInt32 macctrl_sys7_editbox_cdef(SInt16 variant,
595 ControlRef control,
596 ControlDefProcMessage msg,
597 SInt32 param)
598{
599 RgnHandle rgn;
600 Rect rect;
601 TEHandle te;
602 long ssfs;
a460b361 603 Point mouse;
0e9ce565 604
605 switch (msg) {
606 case initCntl:
607 rect = (*control)->contrlRect;
f28d33e8 608 if (variant == SYS7_EDITBOX_VARIANT)
609 InsetRect(&rect, 3, 3); /* 2 if it's 20 pixels high */
0e9ce565 610 te = TENew(&rect, &rect);
611 ssfs = GetScriptVariable(smSystemScript, smScriptSysFondSize);
612 (*te)->txSize = LoWord(ssfs);
613 (*te)->txFont = HiWord(ssfs);
614 (*control)->contrlData = (Handle)te;
615 return noErr;
616 case dispCntl:
617 TEDispose((TEHandle)(*control)->contrlData);
618 return 0;
619 case drawCntl:
620 if ((*control)->contrlVis) {
621 rect = (*control)->contrlRect;
f28d33e8 622 if (variant == SYS7_EDITBOX_VARIANT) {
623 PenNormal();
624 FrameRect(&rect);
625 InsetRect(&rect, 3, 3);
626 }
627 (*(TEHandle)(*control)->contrlData)->viewRect = rect;
0e9ce565 628 TEUpdate(&rect, (TEHandle)(*control)->contrlData);
629 }
630 return 0;
a460b361 631 case testCntl:
f28d33e8 632 if (variant == SYS7_TEXT_VARIANT)
633 return kControlNoPart;
a460b361 634 mouse.h = LoWord(param);
635 mouse.v = HiWord(param);
f28d33e8 636 rect = (*control)->contrlRect;
637 InsetRect(&rect, 3, 3);
638 return PtInRect(mouse, &rect) ? kControlEditTextPart : kControlNoPart;
0e9ce565 639 case calcCRgns:
640 if (param & (1 << 31)) {
641 param &= ~(1 << 31);
642 goto calcthumbrgn;
643 }
644 /* FALLTHROUGH */
645 case calcCntlRgn:
646 rgn = (RgnHandle)param;
647 RectRgn(rgn, &(*control)->contrlRect);
648 return 0;
649 case calcThumbRgn:
650 calcthumbrgn:
651 rgn = (RgnHandle)param;
652 SetEmptyRgn(rgn);
653 return 0;
654 }
655
656 return 0;
657}
658#endif
659
8a7e67ec 660static void macctrl_radio(struct macctrls *mcs, WindowPtr window,
661 struct mac_layoutstate *curstate,
662 union control *ctrl)
663{
34773273 664 union macctrl *mc = snew(union macctrl);
8a7e67ec 665 Rect bounds;
666 Str255 title;
667 unsigned int i, colwidth;
668
0b89e7b2 669 if (ctrl->radio.label != NULL)
670 fprintf(stderr, " label = %s\n", ctrl->radio.label);
8a7e67ec 671 mc->generic.type = MACCTRL_RADIO;
672 mc->generic.ctrl = ctrl;
1f1ec0e5 673 mc->generic.privdata = NULL;
34773273 674 mc->radio.tbctrls = snewn(ctrl->radio.nbuttons, ControlRef);
8a7e67ec 675 colwidth = (curstate->width + 13) / ctrl->radio.ncolumns;
cd3e71e8 676 bounds.top = curstate->pos.v;
677 bounds.bottom = bounds.top + 16;
678 bounds.left = curstate->pos.h;
679 bounds.right = bounds.left + curstate->width;
0b89e7b2 680 if (ctrl->radio.label == NULL)
681 mc->radio.tblabel = NULL;
f28d33e8 682 else {
0b89e7b2 683 if (mac_gestalts.apprvers >= 0x100) {
684 mc->radio.tblabel = NewControl(window, &bounds, NULL, TRUE,
685 0, 0, 0, kControlStaticTextProc,
686 (long)mc);
687 SetControlData(mc->radio.tblabel, kControlEntireControl,
688 kControlStaticTextTextTag,
689 strlen(ctrl->radio.label), ctrl->radio.label);
690 }
691#if !TARGET_API_MAC_CARBON
692 else {
693 mc->radio.tblabel = NewControl(window, &bounds, NULL, TRUE,
694 0, 0, 0, SYS7_TEXT_PROC, (long)mc);
695 TESetText(ctrl->radio.label, strlen(ctrl->radio.label),
696 (TEHandle)(*mc->radio.tblabel)->contrlData);
697 }
f28d33e8 698#endif
0b89e7b2 699 curstate->pos.v += 18;
700 }
8a7e67ec 701 for (i = 0; i < ctrl->radio.nbuttons; i++) {
702 fprintf(stderr, " button = %s\n", ctrl->radio.buttons[i]);
35790008 703 bounds.top = curstate->pos.v - 2;
704 bounds.bottom = bounds.top + 18;
8a7e67ec 705 bounds.left = curstate->pos.h + colwidth * (i % ctrl->radio.ncolumns);
706 if (i == ctrl->radio.nbuttons - 1 ||
707 i % ctrl->radio.ncolumns == ctrl->radio.ncolumns - 1) {
708 bounds.right = curstate->pos.h + curstate->width;
35790008 709 curstate->pos.v += 18;
8a7e67ec 710 } else
711 bounds.right = bounds.left + colwidth - 13;
712 c2pstrcpy(title, ctrl->radio.buttons[i]);
713 mc->radio.tbctrls[i] = NewControl(window, &bounds, title, TRUE,
714 0, 0, 1, radioButProc, (long)mc);
715 }
35790008 716 curstate->pos.v += 4;
8a7e67ec 717 add234(mcs->byctrl, mc);
ee10bc56 718 mc->generic.next = mcs->panels[curstate->panelnum];
719 mcs->panels[curstate->panelnum] = mc;
8a7e67ec 720 ctrlevent(mcs, mc, EVENT_REFRESH);
721}
722
723static void macctrl_checkbox(struct macctrls *mcs, WindowPtr window,
724 struct mac_layoutstate *curstate,
725 union control *ctrl)
726{
34773273 727 union macctrl *mc = snew(union macctrl);
8a7e67ec 728 Rect bounds;
729 Str255 title;
730
0b89e7b2 731 assert(ctrl->checkbox.label != NULL);
8a7e67ec 732 fprintf(stderr, " label = %s\n", ctrl->checkbox.label);
733 mc->generic.type = MACCTRL_CHECKBOX;
734 mc->generic.ctrl = ctrl;
1f1ec0e5 735 mc->generic.privdata = NULL;
8a7e67ec 736 bounds.left = curstate->pos.h;
737 bounds.right = bounds.left + curstate->width;
738 bounds.top = curstate->pos.v;
739 bounds.bottom = bounds.top + 16;
740 c2pstrcpy(title, ctrl->checkbox.label);
741 mc->checkbox.tbctrl = NewControl(window, &bounds, title, TRUE, 0, 0, 1,
742 checkBoxProc, (long)mc);
743 add234(mcs->byctrl, mc);
744 curstate->pos.v += 22;
ee10bc56 745 mc->generic.next = mcs->panels[curstate->panelnum];
746 mcs->panels[curstate->panelnum] = mc;
8a7e67ec 747 ctrlevent(mcs, mc, EVENT_REFRESH);
748}
749
750static void macctrl_button(struct macctrls *mcs, WindowPtr window,
751 struct mac_layoutstate *curstate,
752 union control *ctrl)
753{
34773273 754 union macctrl *mc = snew(union macctrl);
8a7e67ec 755 Rect bounds;
756 Str255 title;
757
0b89e7b2 758 assert(ctrl->button.label != NULL);
8a7e67ec 759 fprintf(stderr, " label = %s\n", ctrl->button.label);
760 if (ctrl->button.isdefault)
761 fprintf(stderr, " is default\n");
762 mc->generic.type = MACCTRL_BUTTON;
763 mc->generic.ctrl = ctrl;
1f1ec0e5 764 mc->generic.privdata = NULL;
8a7e67ec 765 bounds.left = curstate->pos.h;
47c65db4 766 bounds.right = bounds.left + curstate->width;
8a7e67ec 767 bounds.top = curstate->pos.v;
768 bounds.bottom = bounds.top + 20;
769 c2pstrcpy(title, ctrl->button.label);
770 mc->button.tbctrl = NewControl(window, &bounds, title, TRUE, 0, 0, 1,
771 pushButProc, (long)mc);
457f0b8f 772 mc->button.tbring = NULL;
8a7e67ec 773 if (mac_gestalts.apprvers >= 0x100) {
774 Boolean isdefault = ctrl->button.isdefault;
775
776 SetControlData(mc->button.tbctrl, kControlEntireControl,
777 kControlPushButtonDefaultTag,
778 sizeof(isdefault), &isdefault);
5537f572 779 } else if (ctrl->button.isdefault) {
780 InsetRect(&bounds, -4, -4);
457f0b8f 781 mc->button.tbring = NewControl(window, &bounds, title, TRUE, 0, 0, 1,
782 SYS7_DEFAULT_PROC, (long)mc);
8a7e67ec 783 }
855d05c4 784 if (mac_gestalts.apprvers >= 0x110) {
785 Boolean iscancel = ctrl->button.iscancel;
786
787 SetControlData(mc->button.tbctrl, kControlEntireControl,
788 kControlPushButtonCancelTag,
789 sizeof(iscancel), &iscancel);
790 }
135c0f1a 791 if (ctrl->button.isdefault)
792 mcs->defbutton = mc;
793 if (ctrl->button.iscancel)
794 mcs->canbutton = mc;
8a7e67ec 795 add234(mcs->byctrl, mc);
ee10bc56 796 mc->generic.next = mcs->panels[curstate->panelnum];
797 mcs->panels[curstate->panelnum] = mc;
8a7e67ec 798 curstate->pos.v += 26;
799}
800
5537f572 801#if !TARGET_API_MAC_CARBON
802static pascal SInt32 macctrl_sys7_default_cdef(SInt16 variant,
803 ControlRef control,
804 ControlDefProcMessage msg,
805 SInt32 param)
806{
807 RgnHandle rgn;
808 Rect rect;
809 int oval;
457f0b8f 810 PenState savestate;
5537f572 811
812 switch (msg) {
813 case drawCntl:
814 if ((*control)->contrlVis) {
815 rect = (*control)->contrlRect;
457f0b8f 816 GetPenState(&savestate);
5537f572 817 PenNormal();
818 PenSize(3, 3);
457f0b8f 819 if ((*control)->contrlHilite == kControlInactivePart)
820 PenPat(&qd.gray);
5537f572 821 oval = (rect.bottom - rect.top) / 2 + 2;
822 FrameRoundRect(&rect, oval, oval);
457f0b8f 823 SetPenState(&savestate);
5537f572 824 }
825 return 0;
826 case calcCRgns:
827 if (param & (1 << 31)) {
828 param &= ~(1 << 31);
829 goto calcthumbrgn;
830 }
831 /* FALLTHROUGH */
832 case calcCntlRgn:
833 rgn = (RgnHandle)param;
834 RectRgn(rgn, &(*control)->contrlRect);
835 return 0;
836 case calcThumbRgn:
837 calcthumbrgn:
838 rgn = (RgnHandle)param;
839 SetEmptyRgn(rgn);
840 return 0;
841 }
842
843 return 0;
844}
845#endif
846
7d77d56d 847static void macctrl_listbox(struct macctrls *mcs, WindowPtr window,
848 struct mac_layoutstate *curstate,
849 union control *ctrl)
850{
851 union macctrl *mc = snew(union macctrl);
852 Rect bounds;
7d77d56d 853 Size olen;
854
7d77d56d 855 if (ctrl->listbox.label != NULL)
856 fprintf(stderr, " label = %s\n", ctrl->listbox.label);
857 fprintf(stderr, " height = %d\n", ctrl->listbox.height);
858 if (ctrl->listbox.draglist)
859 fprintf(stderr, " draglist\n");
860 if (ctrl->listbox.multisel)
861 fprintf(stderr, " multisel\n");
862 fprintf(stderr, " ncols = %d\n", ctrl->listbox.ncols);
863 assert(ctrl->listbox.percentwidth == 100);
864 mc->generic.type = MACCTRL_LISTBOX;
865 mc->generic.ctrl = ctrl;
866 mc->generic.privdata = NULL;
867 /* The list starts off empty */
868 mc->listbox.nids = 0;
869 mc->listbox.ids = NULL;
870 bounds.left = curstate->pos.h;
871 bounds.right = bounds.left + curstate->width;
872 bounds.top = curstate->pos.v;
873 bounds.bottom = bounds.top + 20 * ctrl->listbox.height;
874
4bd083f7 875 if (mac_gestalts.apprvers >= 0x100) {
876 InsetRect(&bounds, 3, 3);
877 mc->listbox.tbctrl = NewControl(window, &bounds, NULL, TRUE,
878 ldes_Default, 0, 0,
879 kControlListBoxProc, (long)mc);
7d77d56d 880 if (GetControlData(mc->listbox.tbctrl, kControlEntireControl,
4bd083f7 881 kControlListBoxListHandleTag,
882 sizeof(mc->listbox.list), &mc->listbox.list,
883 &olen) != noErr) {
884 DisposeControl(mc->listbox.tbctrl);
885 sfree(mc);
7d77d56d 886 return;
4bd083f7 887 }
888 }
889#if !TARGET_API_MAC_CARBON
890 else {
891 InsetRect(&bounds, -3, -3);
892 mc->listbox.tbctrl = NewControl(window, &bounds, NULL, TRUE,
893 0, 0, 0,
894 SYS7_LISTBOX_PROC, (long)mc);
895 mc->listbox.list = (ListHandle)(*mc->listbox.tbctrl)->contrlData;
896 (*mc->listbox.list)->refCon = (long)mc;
897 }
898#endif
899 if (!ctrl->listbox.multisel) {
7d77d56d 900#if TARGET_API_MAC_CARBON
4bd083f7 901 SetListSelectionFlags(mc->listbox.list, lOnlyOne);
7d77d56d 902#else
4bd083f7 903 (*mc->listbox.list)->selFlags = lOnlyOne;
7d77d56d 904#endif
905 }
906 add234(mcs->byctrl, mc);
907 curstate->pos.v += 6 + 20 * ctrl->listbox.height;
908 mc->generic.next = mcs->panels[curstate->panelnum];
909 mcs->panels[curstate->panelnum] = mc;
910 ctrlevent(mcs, mc, EVENT_REFRESH);
911}
912
4bd083f7 913#if !TARGET_API_MAC_CARBON
914static pascal SInt32 macctrl_sys7_listbox_cdef(SInt16 variant,
915 ControlRef control,
916 ControlDefProcMessage msg,
917 SInt32 param)
918{
919 RgnHandle rgn;
920 Rect rect;
921 ListHandle list;
922 long ssfs;
923 Point mouse;
924 ListBounds bounds;
925 Point csize;
926 short savefont;
927 short savesize;
928 GrafPtr curport;
929
930 switch (msg) {
931 case initCntl:
932 rect = (*control)->contrlRect;
933 InsetRect(&rect, 4, 4);
934 rect.right -= 15; /* scroll bar */
935 bounds.top = bounds.bottom = bounds.left = 0;
936 bounds.right = 1;
937 csize.h = csize.v = 0;
938 GetPort(&curport);
939 savefont = curport->txFont;
940 savesize = curport->txSize;
941 ssfs = GetScriptVariable(smSystemScript, smScriptSysFondSize);
942 TextFont(HiWord(ssfs));
943 TextSize(LoWord(ssfs));
944 list = LNew(&rect, &bounds, csize, 0, (*control)->contrlOwner,
945 TRUE, FALSE, FALSE, TRUE);
946 SetControlReference((*list)->vScroll, (long)list);
947 (*control)->contrlData = (Handle)list;
948 TextFont(savefont);
949 TextSize(savesize);
950 return noErr;
951 case dispCntl:
952 /*
953 * If the dialogue box is being destroyed, the scroll bar
954 * might have gone already. In our situation, this is the
955 * only time we destroy a control, so NULL out the scroll bar
956 * handle to prevent LDispose trying to free it.
957 */
958 list = (ListHandle)(*control)->contrlData;
959 (*list)->vScroll = NULL;
960 LDispose(list);
961 return 0;
962 case drawCntl:
963 if ((*control)->contrlVis) {
964 rect = (*control)->contrlRect;
965 /* XXX input focus highlighting? */
966 InsetRect(&rect, 3, 3);
967 PenNormal();
968 FrameRect(&rect);
969 list = (ListHandle)(*control)->contrlData;
970 LActivate((*control)->contrlHilite != kControlInactivePart, list);
971 GetPort(&curport);
972 LUpdate(curport->visRgn, list);
973 }
974 return 0;
975 case testCntl:
976 mouse.h = LoWord(param);
977 mouse.v = HiWord(param);
978 rect = (*control)->contrlRect;
979 InsetRect(&rect, 4, 4);
980 /*
981 * We deliberately exclude the scrollbar so that LClick() can see it.
982 */
983 rect.right -= 15;
984 return PtInRect(mouse, &rect) ? kControlListBoxPart : kControlNoPart;
985 case calcCRgns:
986 if (param & (1 << 31)) {
987 param &= ~(1 << 31);
988 goto calcthumbrgn;
989 }
990 /* FALLTHROUGH */
991 case calcCntlRgn:
992 rgn = (RgnHandle)param;
993 RectRgn(rgn, &(*control)->contrlRect);
994 return 0;
995 case calcThumbRgn:
996 calcthumbrgn:
997 rgn = (RgnHandle)param;
998 SetEmptyRgn(rgn);
999 return 0;
1000 }
1001
1002 return 0;
1003}
1004#endif
7d77d56d 1005
56c01970 1006static void macctrl_popup(struct macctrls *mcs, WindowPtr window,
1007 struct mac_layoutstate *curstate,
1008 union control *ctrl)
1009{
34773273 1010 union macctrl *mc = snew(union macctrl);
56c01970 1011 Rect bounds;
1012 Str255 title;
1013 unsigned int labelwidth;
0a33efe1 1014 static int nextmenuid = MENU_MIN;
56c01970 1015 int menuid;
1016 MenuRef menu;
1017
1018 /*
1019 * <http://developer.apple.com/qa/tb/tb42.html> explains how to
1020 * create a popup menu with dynamic content.
1021 */
1022 assert(ctrl->listbox.height == 0);
1023 assert(!ctrl->listbox.draglist);
1024 assert(!ctrl->listbox.multisel);
1025
0b89e7b2 1026 if (ctrl->listbox.label != NULL)
1027 fprintf(stderr, " label = %s\n", ctrl->listbox.label);
56c01970 1028 fprintf(stderr, " percentwidth = %d\n", ctrl->listbox.percentwidth);
1029
1030 mc->generic.type = MACCTRL_POPUP;
1031 mc->generic.ctrl = ctrl;
1f1ec0e5 1032 mc->generic.privdata = NULL;
0b89e7b2 1033 c2pstrcpy(title, ctrl->button.label == NULL ? "" : ctrl->button.label);
56c01970 1034
1035 /* Find a spare menu ID and create the menu */
1036 while (GetMenuHandle(nextmenuid) != NULL)
1037 if (++nextmenuid >= MENU_MAX) nextmenuid = MENU_MIN;
1038 menuid = nextmenuid++;
1039 menu = NewMenu(menuid, "\pdummy");
1040 if (menu == NULL) return;
1041 mc->popup.menu = menu;
1042 mc->popup.menuid = menuid;
1043 InsertMenu(menu, kInsertHierarchicalMenu);
1044
1045 /* The menu starts off empty */
1046 mc->popup.nids = 0;
1047 mc->popup.ids = NULL;
1048
1049 bounds.left = curstate->pos.h;
1050 bounds.right = bounds.left + curstate->width;
1051 bounds.top = curstate->pos.v;
1052 bounds.bottom = bounds.top + 20;
1053 /* XXX handle percentwidth == 100 */
1054 labelwidth = curstate->width * (100 - ctrl->listbox.percentwidth) / 100;
1055 mc->popup.tbctrl = NewControl(window, &bounds, title, TRUE,
1056 popupTitleLeftJust, menuid, labelwidth,
1057 popupMenuProc + popupFixedWidth, (long)mc);
1058 add234(mcs->byctrl, mc);
1059 curstate->pos.v += 26;
1060 mc->generic.next = mcs->panels[curstate->panelnum];
1061 mcs->panels[curstate->panelnum] = mc;
1062 ctrlevent(mcs, mc, EVENT_REFRESH);
1063}
1064
8a7e67ec 1065
1066void macctrl_activate(WindowPtr window, EventRecord *event)
1067{
0a33efe1 1068 struct macctrls *mcs = mac_winctrls(window);
8a7e67ec 1069 Boolean active = (event->modifiers & activeFlag) != 0;
1070 GrafPtr saveport;
0a33efe1 1071 int i, j;
1072 ControlPartCode state;
1073 union macctrl *mc;
8a7e67ec 1074
1075 GetPort(&saveport);
1076 SetPort((GrafPtr)GetWindowPort(window));
78f015b8 1077 if (mac_gestalts.apprvers >= 0x100)
8a7e67ec 1078 SetThemeWindowBackground(window, active ?
1079 kThemeBrushModelessDialogBackgroundActive :
1080 kThemeBrushModelessDialogBackgroundInactive,
1081 TRUE);
0a33efe1 1082 state = active ? kControlNoPart : kControlInactivePart;
1083 for (i = 0; i <= mcs->curpanel; i += mcs->curpanel)
f28d33e8 1084 for (mc = mcs->panels[i]; mc != NULL; mc = mc->generic.next) {
0a33efe1 1085 switch (mc->generic.type) {
1086 case MACCTRL_TEXT:
1087 HiliteControl(mc->text.tbctrl, state);
1088 break;
1f1ec0e5 1089 case MACCTRL_EDITBOX:
1090 HiliteControl(mc->editbox.tbctrl, state);
0b89e7b2 1091 if (mc->editbox.tblabel != NULL)
1092 HiliteControl(mc->editbox.tblabel, state);
1f1ec0e5 1093 break;
0a33efe1 1094 case MACCTRL_RADIO:
1095 for (j = 0; j < mc->generic.ctrl->radio.nbuttons; j++)
1096 HiliteControl(mc->radio.tbctrls[j], state);
0b89e7b2 1097 if (mc->radio.tblabel != NULL)
1098 HiliteControl(mc->radio.tblabel, state);
0a33efe1 1099 break;
1100 case MACCTRL_CHECKBOX:
1101 HiliteControl(mc->checkbox.tbctrl, state);
1102 break;
1103 case MACCTRL_BUTTON:
1104 HiliteControl(mc->button.tbctrl, state);
457f0b8f 1105 if (mc->button.tbring != NULL)
1106 HiliteControl(mc->button.tbring, state);
0a33efe1 1107 break;
7d77d56d 1108 case MACCTRL_LISTBOX:
1109 HiliteControl(mc->listbox.tbctrl, state);
1110 break;
0a33efe1 1111 case MACCTRL_POPUP:
1112 HiliteControl(mc->popup.tbctrl, state);
1113 break;
1114 }
f28d33e8 1115#if !TARGET_API_MAC_CARBON
1116 if (mcs->focus == mc) {
1117 if (active)
1118 macctrl_enfocus(mc);
1119 else
1120 macctrl_defocus(mc);
1121 }
1122#endif
1123 }
8a7e67ec 1124 SetPort(saveport);
1125}
1126
1127void macctrl_click(WindowPtr window, EventRecord *event)
1128{
1129 Point mouse;
84e1c2a9 1130 ControlHandle control, oldfocus;
1f1ec0e5 1131 int part, trackresult;
8a7e67ec 1132 GrafPtr saveport;
1133 union macctrl *mc;
1134 struct macctrls *mcs = mac_winctrls(window);
1135 int i;
1f1ec0e5 1136 UInt32 features;
8a7e67ec 1137
1138 GetPort(&saveport);
1139 SetPort((GrafPtr)GetWindowPort(window));
1140 mouse = event->where;
1141 GlobalToLocal(&mouse);
1142 part = FindControl(mouse, window, &control);
56c01970 1143 if (control != NULL) {
4bd083f7 1144#if !TARGET_API_MAC_CARBON
1145 /*
1146 * Special magic for scroll bars in list boxes, whose refcon
1147 * is the list.
1148 */
1149 if (part == kControlUpButtonPart || part == kControlDownButtonPart ||
1150 part == kControlPageUpPart || part == kControlPageDownPart ||
1151 part == kControlIndicatorPart)
1152 mc = (union macctrl *)
1153 (*(ListHandle)GetControlReference(control))->refCon;
1154 else
1155#endif
1156 mc = (union macctrl *)GetControlReference(control);
1157 fprintf(stderr, "control = %p, part = %d, mc = %p\n",
1158 control, part, mc);
1f1ec0e5 1159 if (mac_gestalts.apprvers >= 0x100) {
1160 if (GetControlFeatures(control, &features) == noErr &&
1161 (features & kControlSupportsFocus) &&
84e1c2a9 1162 (features & kControlGetsFocusOnClick) &&
1163 GetKeyboardFocus(window, &oldfocus) == noErr &&
1164 control != oldfocus)
1f1ec0e5 1165 SetKeyboardFocus(window, control, part);
1166 trackresult = HandleControlClick(control, mouse, event->modifiers,
1167 (ControlActionUPP)-1);
a460b361 1168 } else {
1169#if !TARGET_API_MAC_CARBON
1170 if (mc->generic.type == MACCTRL_EDITBOX &&
1171 control == mc->editbox.tbctrl) {
1172 TEHandle te = (TEHandle)(*control)->contrlData;
1173
1174 macctrl_setfocus(mcs, mc);
1175 TEClick(mouse, !!(event->modifiers & shiftKey), te);
1176 goto done;
1177 }
4bd083f7 1178 if (mc->generic.type == MACCTRL_LISTBOX &&
1179 (control == mc->listbox.tbctrl ||
1180 control == (*mc->listbox.list)->vScroll)) {
1181
1182 fprintf(stderr, "list = %p\n", mc->listbox.list);
1183 macctrl_setfocus(mcs, mc);
1184 if (LClick(mouse, event->modifiers, mc->listbox.list))
1185 /* double-click */
1186 ctrlevent(mcs, mc, EVENT_ACTION);
1187 else
1188 ctrlevent(mcs, mc, EVENT_SELCHANGE);
1189 goto done;
1190 }
a460b361 1191#endif
1f1ec0e5 1192 trackresult = TrackControl(control, mouse, (ControlActionUPP)-1);
a460b361 1193 }
56c01970 1194 switch (mc->generic.type) {
56c01970 1195 case MACCTRL_RADIO:
1f1ec0e5 1196 if (trackresult != 0) {
56c01970 1197 for (i = 0; i < mc->generic.ctrl->radio.nbuttons; i++)
8a7e67ec 1198 if (mc->radio.tbctrls[i] == control)
1199 SetControlValue(mc->radio.tbctrls[i],
1200 kControlRadioButtonCheckedValue);
1201 else
1202 SetControlValue(mc->radio.tbctrls[i],
1203 kControlRadioButtonUncheckedValue);
8a7e67ec 1204 ctrlevent(mcs, mc, EVENT_VALCHANGE);
56c01970 1205 }
1206 break;
1207 case MACCTRL_CHECKBOX:
1f1ec0e5 1208 if (trackresult != 0) {
8a7e67ec 1209 SetControlValue(control, !GetControlValue(control));
1210 ctrlevent(mcs, mc, EVENT_VALCHANGE);
8a7e67ec 1211 }
56c01970 1212 break;
1213 case MACCTRL_BUTTON:
1f1ec0e5 1214 if (trackresult != 0)
56c01970 1215 ctrlevent(mcs, mc, EVENT_ACTION);
1216 break;
7d77d56d 1217 case MACCTRL_LISTBOX:
1218 /* FIXME spot double-click */
1219 ctrlevent(mcs, mc, EVENT_SELCHANGE);
1220 break;
1f1ec0e5 1221 case MACCTRL_POPUP:
1222 ctrlevent(mcs, mc, EVENT_SELCHANGE);
1223 break;
8a7e67ec 1224 }
56c01970 1225 }
a460b361 1226 done:
8a7e67ec 1227 SetPort(saveport);
1228}
1229
1f1ec0e5 1230void macctrl_key(WindowPtr window, EventRecord *event)
1231{
1232 ControlRef control;
1233 struct macctrls *mcs = mac_winctrls(window);
1234 union macctrl *mc;
135c0f1a 1235 unsigned long dummy;
1236
1237 switch (event->message & charCodeMask) {
1238 case kEnterCharCode:
1239 case kReturnCharCode:
1240 if (mcs->defbutton != NULL) {
1241 assert(mcs->defbutton->generic.type == MACCTRL_BUTTON);
1242 HiliteControl(mcs->defbutton->button.tbctrl, kControlButtonPart);
1243 /*
1244 * I'd like to delay unhilighting the button until after
1245 * the event has been processed, but by them the entire
1246 * dialgue box might have been destroyed.
1247 */
1248 Delay(6, &dummy);
1249 HiliteControl(mcs->defbutton->button.tbctrl, kControlNoPart);
1250 ctrlevent(mcs, mcs->defbutton, EVENT_ACTION);
1251 }
1252 return;
1253 case kEscapeCharCode:
1254 if (mcs->canbutton != NULL) {
1255 assert(mcs->canbutton->generic.type == MACCTRL_BUTTON);
1256 HiliteControl(mcs->canbutton->button.tbctrl, kControlButtonPart);
1257 Delay(6, &dummy);
1258 HiliteControl(mcs->defbutton->button.tbctrl, kControlNoPart);
1259 ctrlevent(mcs, mcs->canbutton, EVENT_ACTION);
1260 }
1261 return;
1262 }
2dfd068b 1263 if (mac_gestalts.apprvers >= 0x100) {
1264 if (GetKeyboardFocus(window, &control) == noErr && control != NULL) {
1265 HandleControlKey(control, (event->message & keyCodeMask) >> 8,
1266 event->message & charCodeMask, event->modifiers);
1267 mc = (union macctrl *)GetControlReference(control);
576d534c 1268 switch (mc->generic.type) {
1269 case MACCTRL_LISTBOX:
1270 ctrlevent(mcs, mc, EVENT_SELCHANGE);
1271 break;
1272 default:
1273 ctrlevent(mcs, mc, EVENT_VALCHANGE);
1274 break;
1275 }
2dfd068b 1276 }
47c65db4 1277 }
1278#if !TARGET_API_MAC_CARBON
1279 else {
1280 TEHandle te;
1281
2dfd068b 1282 if (mcs->focus != NULL) {
91156e95 1283 mc = mcs->focus;
1284 switch (mc->generic.type) {
2dfd068b 1285 case MACCTRL_EDITBOX:
91156e95 1286 te = (TEHandle)(*mc->editbox.tbctrl)->contrlData;
2dfd068b 1287 TEKey(event->message & charCodeMask, te);
91156e95 1288 ctrlevent(mcs, mc, EVENT_VALCHANGE);
2dfd068b 1289 break;
1290 }
1291 }
1f1ec0e5 1292 }
47c65db4 1293#endif
1f1ec0e5 1294}
1295
8a7e67ec 1296void macctrl_update(WindowPtr window)
1297{
1298#if TARGET_API_MAC_CARBON
1299 RgnHandle visrgn;
1300#endif
1301 Rect rect;
1302 GrafPtr saveport;
1303
1304 BeginUpdate(window);
1305 GetPort(&saveport);
1306 SetPort((GrafPtr)GetWindowPort(window));
1307 if (mac_gestalts.apprvers >= 0x101) {
1308#if TARGET_API_MAC_CARBON
1309 GetPortBounds(GetWindowPort(window), &rect);
1310#else
1311 rect = window->portRect;
1312#endif
1313 InsetRect(&rect, -1, -1);
1314 DrawThemeModelessDialogFrame(&rect, mac_frontwindow() == window ?
1315 kThemeStateActive : kThemeStateInactive);
1316 }
1317#if TARGET_API_MAC_CARBON
1318 visrgn = NewRgn();
1319 GetPortVisibleRegion(GetWindowPort(window), visrgn);
1320 UpdateControls(window, visrgn);
1321 DisposeRgn(visrgn);
1322#else
1323 UpdateControls(window, window->visRgn);
1324#endif
1325 SetPort(saveport);
1326 EndUpdate(window);
1327}
1328
1329#if TARGET_API_MAC_CARBON
1330#define EnableItem EnableMenuItem
1331#define DisableItem DisableMenuItem
1332#endif
1333void macctrl_adjustmenus(WindowPtr window)
1334{
1335 MenuHandle menu;
1336
1337 menu = GetMenuHandle(mFile);
1338 DisableItem(menu, iSave); /* XXX enable if modified */
1339 EnableItem(menu, iSaveAs);
1340 EnableItem(menu, iDuplicate);
1341
1342 menu = GetMenuHandle(mEdit);
1343 DisableItem(menu, 0);
1344}
1345
1346void macctrl_close(WindowPtr window)
1347{
1348 struct macctrls *mcs = mac_winctrls(window);
1349 union macctrl *mc;
1350
56c01970 1351 /*
1352 * Mostly, we don't bother disposing of the Toolbox controls,
1353 * since that will happen automatically when the window is
1354 * disposed of. Popup menus are an exception, because we have to
1355 * dispose of the menu ourselves, and doing that while the control
1356 * still holds a reference to it seems rude.
1357 */
8a7e67ec 1358 while ((mc = index234(mcs->byctrl, 0)) != NULL) {
1f1ec0e5 1359 if (mc->generic.privdata != NULL && mc->generic.freeprivdata)
1360 sfree(mc->generic.privdata);
56c01970 1361 switch (mc->generic.type) {
1362 case MACCTRL_POPUP:
1363 DisposeControl(mc->popup.tbctrl);
1364 DeleteMenu(mc->popup.menuid);
1365 DisposeMenu(mc->popup.menu);
1366 break;
1367 }
8a7e67ec 1368 del234(mcs->byctrl, mc);
1369 sfree(mc);
1370 }
1371
1372 freetree234(mcs->byctrl);
1373 mcs->byctrl = NULL;
ee10bc56 1374 sfree(mcs->panels);
1375 mcs->panels = NULL;
8a7e67ec 1376}
1377
1378void dlg_update_start(union control *ctrl, void *dlg)
1379{
1380
1381 /* No-op for now */
1382}
1383
1384void dlg_update_done(union control *ctrl, void *dlg)
1385{
1386
1387 /* No-op for now */
1388}
1389
1390void dlg_set_focus(union control *ctrl, void *dlg)
1391{
1392
1393 if (mac_gestalts.apprvers >= 0x100) {
1394 /* Use SetKeyboardFocus() */
1395 } else {
1396 /* Do our own mucking around */
1397 }
1398}
1399
0bd8d76d 1400union control *dlg_last_focused(union control *ctrl, void *dlg)
8a7e67ec 1401{
1402
1403 return NULL;
1404}
1405
1406void dlg_beep(void *dlg)
1407{
1408
1409 SysBeep(30);
1410}
1411
1412void dlg_error_msg(void *dlg, char *msg)
1413{
1414 Str255 pmsg;
1415
1416 c2pstrcpy(pmsg, msg);
1417 ParamText(pmsg, NULL, NULL, NULL);
1418 StopAlert(128, NULL);
1419}
1420
1421void dlg_end(void *dlg, int value)
1422{
f73f2f31 1423 struct macctrls *mcs = dlg;
8a7e67ec 1424
f73f2f31 1425 if (mcs->end != NULL)
1426 (*mcs->end)(mcs->window, value);
8a7e67ec 1427};
1428
1429void dlg_refresh(union control *ctrl, void *dlg)
1430{
1f1ec0e5 1431 struct macctrls *mcs = dlg;
1432 union macctrl *mc;
8a7e67ec 1433
1f1ec0e5 1434 if (ctrl == NULL)
1435 return; /* FIXME */
1436 mc = findbyctrl(mcs, ctrl);
1437 assert(mc != NULL);
1438 ctrlevent(mcs, mc, EVENT_REFRESH);
8a7e67ec 1439};
1440
1441void *dlg_get_privdata(union control *ctrl, void *dlg)
1442{
1f1ec0e5 1443 struct macctrls *mcs = dlg;
1444 union macctrl *mc = findbyctrl(mcs, ctrl);
8a7e67ec 1445
1f1ec0e5 1446 assert(mc != NULL);
1447 return mc->generic.privdata;
8a7e67ec 1448}
1449
1450void dlg_set_privdata(union control *ctrl, void *dlg, void *ptr)
1451{
1f1ec0e5 1452 struct macctrls *mcs = dlg;
1453 union macctrl *mc = findbyctrl(mcs, ctrl);
8a7e67ec 1454
1f1ec0e5 1455 assert(mc != NULL);
1456 mc->generic.privdata = ptr;
1457 mc->generic.freeprivdata = FALSE;
8a7e67ec 1458}
1459
1460void *dlg_alloc_privdata(union control *ctrl, void *dlg, size_t size)
1461{
1f1ec0e5 1462 struct macctrls *mcs = dlg;
1463 union macctrl *mc = findbyctrl(mcs, ctrl);
8a7e67ec 1464
1f1ec0e5 1465 assert(mc != NULL);
1466 mc->generic.privdata = smalloc(size);
1467 mc->generic.freeprivdata = TRUE;
1468 return mc->generic.privdata;
8a7e67ec 1469}
1470
1471
1472/*
1473 * Radio Button control
1474 */
1475
1476void dlg_radiobutton_set(union control *ctrl, void *dlg, int whichbutton)
1477{
93ba25f8 1478 struct macctrls *mcs = dlg;
1479 union macctrl *mc = findbyctrl(mcs, ctrl);
8a7e67ec 1480 int i;
1481
7d77d56d 1482 if (mc == NULL) return;
8a7e67ec 1483 for (i = 0; i < ctrl->radio.nbuttons; i++) {
1484 if (i == whichbutton)
1485 SetControlValue(mc->radio.tbctrls[i],
1486 kControlRadioButtonCheckedValue);
1487 else
1488 SetControlValue(mc->radio.tbctrls[i],
1489 kControlRadioButtonUncheckedValue);
1490 }
1491
1492};
1493
1494int dlg_radiobutton_get(union control *ctrl, void *dlg)
1495{
93ba25f8 1496 struct macctrls *mcs = dlg;
1497 union macctrl *mc = findbyctrl(mcs, ctrl);
8a7e67ec 1498 int i;
1499
93ba25f8 1500 assert(mc != NULL);
8a7e67ec 1501 for (i = 0; i < ctrl->radio.nbuttons; i++) {
1502 if (GetControlValue(mc->radio.tbctrls[i]) ==
1503 kControlRadioButtonCheckedValue)
1504 return i;
1505 }
1506 return -1;
1507};
1508
1509
1510/*
1511 * Check Box control
1512 */
1513
1514void dlg_checkbox_set(union control *ctrl, void *dlg, int checked)
1515{
93ba25f8 1516 struct macctrls *mcs = dlg;
1517 union macctrl *mc = findbyctrl(mcs, ctrl);
8a7e67ec 1518
7d77d56d 1519 if (mc == NULL) return;
8a7e67ec 1520 SetControlValue(mc->checkbox.tbctrl,
1521 checked ? kControlCheckBoxCheckedValue :
1522 kControlCheckBoxUncheckedValue);
1523}
1524
1525int dlg_checkbox_get(union control *ctrl, void *dlg)
1526{
93ba25f8 1527 struct macctrls *mcs = dlg;
1528 union macctrl *mc = findbyctrl(mcs, ctrl);
8a7e67ec 1529
93ba25f8 1530 assert(mc != NULL);
8a7e67ec 1531 return GetControlValue(mc->checkbox.tbctrl);
1532}
1533
1534
1535/*
1536 * Edit Box control
1537 */
1538
1539void dlg_editbox_set(union control *ctrl, void *dlg, char const *text)
1540{
1f1ec0e5 1541 struct macctrls *mcs = dlg;
1542 union macctrl *mc = findbyctrl(mcs, ctrl);
1543 GrafPtr saveport;
8a7e67ec 1544
7d77d56d 1545 if (mc == NULL) return;
1f1ec0e5 1546 assert(mc->generic.type == MACCTRL_EDITBOX);
0e9ce565 1547 GetPort(&saveport);
1548 SetPort((GrafPtr)(GetWindowPort(mcs->window)));
d9158b5e 1549 if (mac_gestalts.apprvers >= 0x100)
1f1ec0e5 1550 SetControlData(mc->editbox.tbctrl, kControlEntireControl,
1551 ctrl->editbox.password ?
1552 kControlEditTextPasswordTag :
1553 kControlEditTextTextTag,
1554 strlen(text), text);
a460b361 1555#if !TARGET_API_MAC_CARBON
d9158b5e 1556 else
0e9ce565 1557 TESetText(text, strlen(text),
1558 (TEHandle)(*mc->editbox.tbctrl)->contrlData);
a460b361 1559#endif
d9158b5e 1560 DrawOneControl(mc->editbox.tbctrl);
0e9ce565 1561 SetPort(saveport);
1562}
8a7e67ec 1563
1564void dlg_editbox_get(union control *ctrl, void *dlg, char *buffer, int length)
1565{
1f1ec0e5 1566 struct macctrls *mcs = dlg;
1567 union macctrl *mc = findbyctrl(mcs, ctrl);
1568 Size olen;
8a7e67ec 1569
1f1ec0e5 1570 assert(mc != NULL);
1571 assert(mc->generic.type == MACCTRL_EDITBOX);
1572 if (mac_gestalts.apprvers >= 0x100) {
1573 if (GetControlData(mc->editbox.tbctrl, kControlEntireControl,
1574 ctrl->editbox.password ?
1575 kControlEditTextPasswordTag :
1576 kControlEditTextTextTag,
1577 length - 1, buffer, &olen) != noErr)
1578 olen = 0;
1579 if (olen > length - 1)
d9158b5e 1580 olen = length - 1;
a460b361 1581 }
1582#if !TARGET_API_MAC_CARBON
1583 else {
1584 TEHandle te = (TEHandle)(*mc->editbox.tbctrl)->contrlData;
1585
d9158b5e 1586 olen = (*te)->teLength;
1587 if (olen > length - 1)
1588 olen = length - 1;
1589 memcpy(buffer, *(*te)->hText, olen);
1590 }
a460b361 1591#endif
d9158b5e 1592 buffer[olen] = '\0';
1f1ec0e5 1593 fprintf(stderr, "dlg_editbox_get: %s\n", buffer);
d9158b5e 1594}
8a7e67ec 1595
1596
1597/*
1598 * List Box control
1599 */
1600
56c01970 1601static void dlg_macpopup_clear(union control *ctrl, void *dlg)
1602{
1603 struct macctrls *mcs = dlg;
1604 union macctrl *mc = findbyctrl(mcs, ctrl);
1605 MenuRef menu = mc->popup.menu;
1606 unsigned int i, n;
1607
7d77d56d 1608 if (mc == NULL) return;
56c01970 1609 fprintf(stderr, " popup_clear\n");
fd703c0a 1610 n = CountMenuItems(menu);
56c01970 1611 for (i = 0; i < n; i++)
1612 DeleteMenuItem(menu, n - i);
1613 mc->popup.nids = 0;
1614 sfree(mc->popup.ids);
1615 mc->popup.ids = NULL;
fd703c0a 1616 SetControlMaximum(mc->popup.tbctrl, CountMenuItems(menu));
56c01970 1617}
1618
7d77d56d 1619static void dlg_maclist_clear(union control *ctrl, void *dlg)
1620{
1621 struct macctrls *mcs = dlg;
1622 union macctrl *mc = findbyctrl(mcs, ctrl);
7d77d56d 1623
1624 if (mc == NULL) return;
1625 fprintf(stderr, " maclist_clear\n");
4bd083f7 1626 LDelRow(0, 0, mc->listbox.list);
7d77d56d 1627 mc->listbox.nids = 0;
1628 sfree(mc->listbox.ids);
1629 mc->listbox.ids = NULL;
1630 DrawOneControl(mc->listbox.tbctrl);
1631}
1632
8a7e67ec 1633void dlg_listbox_clear(union control *ctrl, void *dlg)
1634{
1635
4bd083f7 1636 switch (ctrl->generic.type) {
1637 case CTRL_LISTBOX:
1638 if (ctrl->listbox.height == 0)
1639 dlg_macpopup_clear(ctrl, dlg);
1640 else
1641 dlg_maclist_clear(ctrl, dlg);
1642 break;
1643 }
56c01970 1644}
1645
1646static void dlg_macpopup_del(union control *ctrl, void *dlg, int index)
1647{
1648 struct macctrls *mcs = dlg;
1649 union macctrl *mc = findbyctrl(mcs, ctrl);
1650 MenuRef menu = mc->popup.menu;
1651
7d77d56d 1652 if (mc == NULL) return;
56c01970 1653 fprintf(stderr, " popup_del %d\n", index);
1654 DeleteMenuItem(menu, index + 1);
1655 if (mc->popup.ids != NULL)
1656 memcpy(mc->popup.ids + index, mc->popup.ids + index + 1,
1657 (mc->popup.nids - index - 1) * sizeof(*mc->popup.ids));
fd703c0a 1658 SetControlMaximum(mc->popup.tbctrl, CountMenuItems(menu));
56c01970 1659}
8a7e67ec 1660
7d77d56d 1661static void dlg_maclist_del(union control *ctrl, void *dlg, int index)
1662{
1663 struct macctrls *mcs = dlg;
1664 union macctrl *mc = findbyctrl(mcs, ctrl);
7d77d56d 1665
1666 if (mc == NULL) return;
1667 fprintf(stderr, " maclist_del %d\n", index);
4bd083f7 1668 LDelRow(1, index, mc->listbox.list);
7d77d56d 1669 if (mc->listbox.ids != NULL)
1670 memcpy(mc->listbox.ids + index, mc->listbox.ids + index + 1,
1671 (mc->listbox.nids - index - 1) * sizeof(*mc->listbox.ids));
1672 DrawOneControl(mc->listbox.tbctrl);
1673}
1674
8a7e67ec 1675void dlg_listbox_del(union control *ctrl, void *dlg, int index)
1676{
1677
4bd083f7 1678 switch (ctrl->generic.type) {
1679 case CTRL_LISTBOX:
1680 if (ctrl->listbox.height == 0)
1681 dlg_macpopup_del(ctrl, dlg, index);
1682 else
1683 dlg_maclist_del(ctrl, dlg, index);
1684 break;
1685 }
56c01970 1686}
1687
1688static void dlg_macpopup_add(union control *ctrl, void *dlg, char const *text)
1689{
1690 struct macctrls *mcs = dlg;
1691 union macctrl *mc = findbyctrl(mcs, ctrl);
1692 MenuRef menu = mc->popup.menu;
1693 Str255 itemstring;
1694
7d77d56d 1695 if (mc == NULL) return;
56c01970 1696 fprintf(stderr, " popup_add %s\n", text);
1697 assert(text[0] != '\0');
1698 c2pstrcpy(itemstring, text);
1699 AppendMenu(menu, "\pdummy");
fd703c0a 1700 SetMenuItemText(menu, CountMenuItems(menu), itemstring);
1701 SetControlMaximum(mc->popup.tbctrl, CountMenuItems(menu));
56c01970 1702}
8a7e67ec 1703
7d77d56d 1704
1705static void dlg_maclist_add(union control *ctrl, void *dlg, char const *text)
1706{
1707 struct macctrls *mcs = dlg;
1708 union macctrl *mc = findbyctrl(mcs, ctrl);
7d77d56d 1709 ListBounds bounds;
1710 Cell cell = { 0, 0 };
1711
1712 if (mc == NULL) return;
1713 fprintf(stderr, " maclist_add %s\n", text);
7d77d56d 1714#if TARGET_API_MAC_CARBON
4bd083f7 1715 GetListDataBounds(mc->listbox.list, &bounds);
7d77d56d 1716#else
4bd083f7 1717 bounds = (*mc->listbox.list)->dataBounds;
7d77d56d 1718#endif
1719 cell.v = bounds.bottom;
4bd083f7 1720 LAddRow(1, cell.v, mc->listbox.list);
1721 LSetCell(text, strlen(text), cell, mc->listbox.list);
7d77d56d 1722 DrawOneControl(mc->listbox.tbctrl);
1723}
1724
8a7e67ec 1725void dlg_listbox_add(union control *ctrl, void *dlg, char const *text)
1726{
1727
4bd083f7 1728 switch (ctrl->generic.type) {
1729 case CTRL_LISTBOX:
1730 if (ctrl->listbox.height == 0)
1731 dlg_macpopup_add(ctrl, dlg, text);
1732 else
1733 dlg_maclist_add(ctrl, dlg, text);
1734 break;
1735 }
56c01970 1736}
1737
4eaff8d4 1738static void dlg_macpopup_addwithid(union control *ctrl, void *dlg,
1739 char const *text, int id)
56c01970 1740{
1741 struct macctrls *mcs = dlg;
1742 union macctrl *mc = findbyctrl(mcs, ctrl);
1743 MenuRef menu = mc->popup.menu;
1744 unsigned int index;
1745
7d77d56d 1746 if (mc == NULL) return;
1747 fprintf(stderr, " popup_addwthid %s, %d\n", text, id);
56c01970 1748 dlg_macpopup_add(ctrl, dlg, text);
fd703c0a 1749 index = CountMenuItems(menu) - 1;
56c01970 1750 if (mc->popup.nids <= index) {
1751 mc->popup.nids = index + 1;
34773273 1752 mc->popup.ids = sresize(mc->popup.ids, mc->popup.nids, int);
56c01970 1753 }
1754 mc->popup.ids[index] = id;
1755}
8a7e67ec 1756
7d77d56d 1757static void dlg_maclist_addwithid(union control *ctrl, void *dlg,
1758 char const *text, int id)
1759{
1760 struct macctrls *mcs = dlg;
1761 union macctrl *mc = findbyctrl(mcs, ctrl);
7d77d56d 1762 ListBounds bounds;
1763 int index;
1764
1765 if (mc == NULL) return;
1766 fprintf(stderr, " maclist_addwithid %s %d\n", text, id);
1767 dlg_maclist_add(ctrl, dlg, text);
7d77d56d 1768#if TARGET_API_MAC_CARBON
4bd083f7 1769 GetListDataBounds(mc->listbox.list, &bounds);
7d77d56d 1770#else
4bd083f7 1771 bounds = (*mc->listbox.list)->dataBounds;
7d77d56d 1772#endif
1773 index = bounds.bottom;
1774 if (mc->listbox.nids <= index) {
1775 mc->listbox.nids = index + 1;
1776 mc->listbox.ids = sresize(mc->listbox.ids, mc->listbox.nids, int);
1777 }
1778 mc->listbox.ids[index] = id;
1779}
1780
4eaff8d4 1781void dlg_listbox_addwithid(union control *ctrl, void *dlg,
1782 char const *text, int id)
8a7e67ec 1783{
1784
4bd083f7 1785 switch (ctrl->generic.type) {
1786 case CTRL_LISTBOX:
1787 if (ctrl->listbox.height == 0)
1788 dlg_macpopup_addwithid(ctrl, dlg, text, id);
1789 else
1790 dlg_maclist_addwithid(ctrl, dlg, text, id);
1791 break;
1792 }
56c01970 1793}
8a7e67ec 1794
1795int dlg_listbox_getid(union control *ctrl, void *dlg, int index)
1796{
56c01970 1797 struct macctrls *mcs = dlg;
1798 union macctrl *mc = findbyctrl(mcs, ctrl);
8a7e67ec 1799
7d77d56d 1800 assert(mc != NULL);
4bd083f7 1801 switch (ctrl->generic.type) {
1802 case CTRL_LISTBOX:
1803 if (ctrl->listbox.height == 0) {
1804 assert(mc->popup.ids != NULL && mc->popup.nids > index);
1805 return mc->popup.ids[index];
1806 } else {
1807 assert(mc->listbox.ids != NULL && mc->listbox.nids > index);
1808 return mc->listbox.ids[index];
1809 }
56c01970 1810 }
4bd083f7 1811 return -1;
7d77d56d 1812}
1813
1814int dlg_listbox_index(union control *ctrl, void *dlg)
1815{
1816 struct macctrls *mcs = dlg;
7d77d56d 1817 union macctrl *mc = findbyctrl(mcs, ctrl);
7d77d56d 1818 Cell cell = { 0, 0 };
1819
4bd083f7 1820 assert(mc != NULL);
1821 switch (ctrl->generic.type) {
1822 case CTRL_LISTBOX:
1823 if (ctrl->listbox.height == 0)
1824 return GetControlValue(mc->popup.tbctrl) - 1;
1825 else {
1826 if (LGetSelect(TRUE, &cell, mc->listbox.list))
1827 return cell.v;
1828 else
1829 return -1;
1830 }
1831 }
1832 return -1;
7d77d56d 1833}
8a7e67ec 1834
1835int dlg_listbox_issel(union control *ctrl, void *dlg, int index)
1836{
56c01970 1837 struct macctrls *mcs = dlg;
1838 union macctrl *mc = findbyctrl(mcs, ctrl);
4bd083f7 1839 Cell cell = { 0, 0 };
8a7e67ec 1840
4bd083f7 1841 assert(mc != NULL);
1842 switch (ctrl->generic.type) {
1843 case CTRL_LISTBOX:
1844 if (ctrl->listbox.height == 0)
1845 return GetControlValue(mc->popup.tbctrl) - 1 == index;
1846 else {
1847 cell.v = index;
1848 return LGetSelect(FALSE, &cell, mc->listbox.list);
1849 }
1850 }
1851 return FALSE;
7d77d56d 1852}
8a7e67ec 1853
1854void dlg_listbox_select(union control *ctrl, void *dlg, int index)
1855{
56c01970 1856 struct macctrls *mcs = dlg;
1857 union macctrl *mc = findbyctrl(mcs, ctrl);
8a7e67ec 1858
7d77d56d 1859 if (mc == NULL) return;
4bd083f7 1860 switch (ctrl->generic.type) {
1861 case CTRL_LISTBOX:
1862 if (ctrl->listbox.height == 0)
1863 SetControlValue(mc->popup.tbctrl, index + 1);
1864 break;
1865 }
1866}
8a7e67ec 1867
1868
1869/*
1870 * Text control
1871 */
1872
1873void dlg_text_set(union control *ctrl, void *dlg, char const *text)
1874{
93ba25f8 1875 struct macctrls *mcs = dlg;
1876 union macctrl *mc = findbyctrl(mcs, ctrl);
8a7e67ec 1877
7d77d56d 1878 if (mc == NULL) return;
8a7e67ec 1879 if (mac_gestalts.apprvers >= 0x100)
1880 SetControlData(mc->text.tbctrl, kControlEntireControl,
1f1ec0e5 1881 kControlStaticTextTextTag, strlen(text), text);
f28d33e8 1882#if !TARGET_API_MAC_CARBON
1883 else
1884 TESetText(text, strlen(text),
1885 (TEHandle)(*mc->text.tbctrl)->contrlData);
1886#endif
8a7e67ec 1887}
1888
1889
1890/*
1891 * File Selector control
1892 */
1893
1894void dlg_filesel_set(union control *ctrl, void *dlg, Filename fn)
1895{
1896
1897}
1898
1899void dlg_filesel_get(union control *ctrl, void *dlg, Filename *fn)
1900{
1901
1902}
1903
1904
1905/*
1906 * Font Selector control
1907 */
1908
1909void dlg_fontsel_set(union control *ctrl, void *dlg, FontSpec fn)
1910{
1911
1912}
1913
1914void dlg_fontsel_get(union control *ctrl, void *dlg, FontSpec *fn)
1915{
1916
1917}
1918
1919
1920/*
1921 * Printer enumeration
1922 */
1923
1924printer_enum *printer_start_enum(int *nprinters)
1925{
1926
1927 *nprinters = 0;
1928 return NULL;
1929}
1930
1931char *printer_get_name(printer_enum *pe, int thing)
1932{
1933
1934 return "<none>";
1935}
1936
1937void printer_finish_enum(printer_enum *pe)
1938{
1939
1940}
1941
1942
1943/*
1944 * Colour selection stuff
1945 */
1946
1947void dlg_coloursel_start(union control *ctrl, void *dlg,
1948 int r, int g, int b)
1949{
621bfeaa 1950 struct macctrls *mcs = dlg;
1951 union macctrl *mc = findbyctrl(mcs, ctrl);
1952 Point where = {-1, -1}; /* Screen with greatest colour depth */
1953 RGBColor incolour;
8a7e67ec 1954
621bfeaa 1955 incolour.red = r * 0x0101;
1956 incolour.green = g * 0x0101;
1957 incolour.blue = b * 0x0101;
1958 mcs->gotcolour = GetColor(where, "\pModify Colour:", &incolour,
1959 &mcs->thecolour);
1960 ctrlevent(mcs, mc, EVENT_CALLBACK);
8a7e67ec 1961}
1962
1963int dlg_coloursel_results(union control *ctrl, void *dlg,
1964 int *r, int *g, int *b)
1965{
621bfeaa 1966 struct macctrls *mcs = dlg;
8a7e67ec 1967
621bfeaa 1968 if (mcs->gotcolour) {
1969 *r = mcs->thecolour.red >> 8;
1970 *g = mcs->thecolour.green >> 8;
1971 *b = mcs->thecolour.blue >> 8;
1972 return 1;
1973 } else
1974 return 0;
8a7e67ec 1975}
1976
1977/*
1978 * Local Variables:
1979 * c-file-style: "simon"
1980 * End:
1981 */