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