SSH port forwarding! How cool is that?
[sgt/putty] / winctrls.c
1 /*
2 * winctrls.c: routines to self-manage the controls in a dialog
3 * box.
4 */
5
6 #include <windows.h>
7 #include <commctrl.h>
8
9 #include "winstuff.h"
10
11 #define GAPBETWEEN 3
12 #define GAPWITHIN 1
13 #define GAPXBOX 7
14 #define GAPYBOX 4
15 #define DLGWIDTH 168
16 #define STATICHEIGHT 8
17 #define CHECKBOXHEIGHT 8
18 #define RADIOHEIGHT 8
19 #define EDITHEIGHT 12
20 #define COMBOHEIGHT 12
21 #define PUSHBTNHEIGHT 14
22 #define PROGBARHEIGHT 14
23
24 void ctlposinit(struct ctlpos *cp, HWND hwnd,
25 int leftborder, int rightborder, int topborder)
26 {
27 RECT r, r2;
28 cp->hwnd = hwnd;
29 cp->font = SendMessage(hwnd, WM_GETFONT, 0, 0);
30 cp->ypos = topborder;
31 GetClientRect(hwnd, &r);
32 r2.left = r2.top = 0;
33 r2.right = 4;
34 r2.bottom = 8;
35 MapDialogRect(hwnd, &r2);
36 cp->dlu4inpix = r2.right;
37 cp->width = (r.right * 4) / (r2.right) - 2 * GAPBETWEEN;
38 cp->xoff = leftborder;
39 cp->width -= leftborder + rightborder;
40 }
41
42 void doctl(struct ctlpos *cp, RECT r,
43 char *wclass, int wstyle, int exstyle, char *wtext, int wid)
44 {
45 HWND ctl;
46 /*
47 * Note nonstandard use of RECT. This is deliberate: by
48 * transforming the width and height directly we arrange to
49 * have all supposedly same-sized controls really same-sized.
50 */
51
52 r.left += cp->xoff;
53 MapDialogRect(cp->hwnd, &r);
54
55 ctl = CreateWindowEx(exstyle, wclass, wtext, wstyle,
56 r.left, r.top, r.right, r.bottom,
57 cp->hwnd, (HMENU) wid, hinst, NULL);
58 SendMessage(ctl, WM_SETFONT, cp->font, MAKELPARAM(TRUE, 0));
59 }
60
61 /*
62 * A title bar across the top of a sub-dialog.
63 */
64 void bartitle(struct ctlpos *cp, char *name, int id)
65 {
66 RECT r;
67
68 r.left = GAPBETWEEN;
69 r.right = cp->width;
70 r.top = cp->ypos;
71 r.bottom = STATICHEIGHT;
72 cp->ypos += r.bottom + GAPBETWEEN;
73 doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, name, id);
74 }
75
76 /*
77 * Begin a grouping box, with or without a group title.
78 */
79 void beginbox(struct ctlpos *cp, char *name, int idbox)
80 {
81 cp->boxystart = cp->ypos;
82 if (!name)
83 cp->boxystart -= STATICHEIGHT / 2;
84 if (name)
85 cp->ypos += STATICHEIGHT;
86 cp->ypos += GAPYBOX;
87 cp->width -= 2 * GAPXBOX;
88 cp->xoff += GAPXBOX;
89 cp->boxid = idbox;
90 cp->boxtext = name;
91 }
92
93 /*
94 * End a grouping box.
95 */
96 void endbox(struct ctlpos *cp)
97 {
98 RECT r;
99 cp->xoff -= GAPXBOX;
100 cp->width += 2 * GAPXBOX;
101 cp->ypos += GAPYBOX - GAPBETWEEN;
102 r.left = GAPBETWEEN;
103 r.right = cp->width;
104 r.top = cp->boxystart;
105 r.bottom = cp->ypos - cp->boxystart;
106 doctl(cp, r, "BUTTON", BS_GROUPBOX | WS_CHILD | WS_VISIBLE, 0,
107 cp->boxtext ? cp->boxtext : "", cp->boxid);
108 cp->ypos += GAPYBOX;
109 }
110
111 /*
112 * Some edit boxes. Each one has a static above it. The percentages
113 * of the horizontal space are provided.
114 */
115 void multiedit(struct ctlpos *cp, ...)
116 {
117 RECT r;
118 va_list ap;
119 int percent, xpos;
120
121 percent = xpos = 0;
122 va_start(ap, cp);
123 while (1) {
124 char *text;
125 int staticid, editid, pcwidth;
126 text = va_arg(ap, char *);
127 if (!text)
128 break;
129 staticid = va_arg(ap, int);
130 editid = va_arg(ap, int);
131 pcwidth = va_arg(ap, int);
132
133 r.left = xpos + GAPBETWEEN;
134 percent += pcwidth;
135 xpos = (cp->width + GAPBETWEEN) * percent / 100;
136 r.right = xpos - r.left;
137
138 r.top = cp->ypos;
139 r.bottom = STATICHEIGHT;
140 doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, text, staticid);
141 r.top = cp->ypos + 8 + GAPWITHIN;
142 r.bottom = EDITHEIGHT;
143 doctl(cp, r, "EDIT",
144 WS_CHILD | WS_VISIBLE | WS_TABSTOP | ES_AUTOHSCROLL,
145 WS_EX_CLIENTEDGE, "", editid);
146 }
147 va_end(ap);
148 cp->ypos += 8 + GAPWITHIN + 12 + GAPBETWEEN;
149 }
150
151 static void radioline_common(struct ctlpos *cp, int nacross, va_list ap)
152 {
153 RECT r;
154 int group;
155 int i;
156 char *btext;
157
158 group = WS_GROUP;
159 i = 0;
160 btext = va_arg(ap, char *);
161 while (1) {
162 char *nextbtext;
163 int bid;
164 if (!btext)
165 break;
166 if (i == nacross) {
167 cp->ypos += r.bottom + GAPBETWEEN;
168 i = 0;
169 }
170 bid = va_arg(ap, int);
171 nextbtext = va_arg(ap, char *);
172 r.left = GAPBETWEEN + i * (cp->width + GAPBETWEEN) / nacross;
173 if (nextbtext)
174 r.right =
175 (i + 1) * (cp->width + GAPBETWEEN) / nacross - r.left;
176 else
177 r.right = cp->width - r.left;
178 r.top = cp->ypos;
179 r.bottom = RADIOHEIGHT;
180 doctl(cp, r, "BUTTON",
181 BS_AUTORADIOBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP |
182 group, 0, btext, bid);
183 group = 0;
184 i++;
185 btext = nextbtext;
186 }
187 cp->ypos += r.bottom + GAPBETWEEN;
188 }
189
190 /*
191 * A set of radio buttons on the same line, with a static above
192 * them. `nacross' dictates how many parts the line is divided into
193 * (you might want this not to equal the number of buttons if you
194 * needed to line up some 2s and some 3s to look good in the same
195 * panel).
196 *
197 * There's a bit of a hack in here to ensure that if nacross
198 * exceeds the actual number of buttons, the rightmost button
199 * really does get all the space right to the edge of the line, so
200 * you can do things like
201 *
202 * (*) Button1 (*) Button2 (*) ButtonWithReallyLongTitle
203 */
204 void radioline(struct ctlpos *cp, char *text, int id, int nacross, ...)
205 {
206 RECT r;
207 va_list ap;
208
209 r.left = GAPBETWEEN;
210 r.top = cp->ypos;
211 r.right = cp->width;
212 r.bottom = STATICHEIGHT;
213 cp->ypos += r.bottom + GAPWITHIN;
214 doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, text, id);
215 va_start(ap, nacross);
216 radioline_common(cp, nacross, ap);
217 va_end(ap);
218 }
219
220 /*
221 * A set of radio buttons on the same line, without a static above
222 * them. Otherwise just like radioline.
223 */
224 void bareradioline(struct ctlpos *cp, int nacross, ...)
225 {
226 va_list ap;
227
228 va_start(ap, nacross);
229 radioline_common(cp, nacross, ap);
230 va_end(ap);
231 }
232
233 /*
234 * A set of radio buttons on multiple lines, with a static above
235 * them.
236 */
237 void radiobig(struct ctlpos *cp, char *text, int id, ...)
238 {
239 RECT r;
240 va_list ap;
241 int group;
242
243 r.left = GAPBETWEEN;
244 r.top = cp->ypos;
245 r.right = cp->width;
246 r.bottom = STATICHEIGHT;
247 cp->ypos += r.bottom + GAPWITHIN;
248 doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, text, id);
249 va_start(ap, id);
250 group = WS_GROUP;
251 while (1) {
252 char *btext;
253 int bid;
254 btext = va_arg(ap, char *);
255 if (!btext)
256 break;
257 bid = va_arg(ap, int);
258 r.left = GAPBETWEEN;
259 r.top = cp->ypos;
260 r.right = cp->width;
261 r.bottom = STATICHEIGHT;
262 cp->ypos += r.bottom + GAPWITHIN;
263 doctl(cp, r, "BUTTON",
264 BS_AUTORADIOBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP |
265 group, 0, btext, bid);
266 group = 0;
267 }
268 va_end(ap);
269 cp->ypos += GAPBETWEEN - GAPWITHIN;
270 }
271
272 /*
273 * A single standalone checkbox.
274 */
275 void checkbox(struct ctlpos *cp, char *text, int id)
276 {
277 RECT r;
278
279 r.left = GAPBETWEEN;
280 r.top = cp->ypos;
281 r.right = cp->width;
282 r.bottom = CHECKBOXHEIGHT;
283 cp->ypos += r.bottom + GAPBETWEEN;
284 doctl(cp, r, "BUTTON",
285 BS_AUTOCHECKBOX | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 0,
286 text, id);
287 }
288
289 /*
290 * A single standalone static text control.
291 */
292 void statictext(struct ctlpos *cp, char *text, int id)
293 {
294 RECT r;
295
296 r.left = GAPBETWEEN;
297 r.top = cp->ypos;
298 r.right = cp->width;
299 r.bottom = STATICHEIGHT;
300 cp->ypos += r.bottom + GAPBETWEEN;
301 doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, text, id);
302 }
303
304 /*
305 * A button on the right hand side, with a static to its left.
306 */
307 void staticbtn(struct ctlpos *cp, char *stext, int sid,
308 char *btext, int bid)
309 {
310 const int height = (PUSHBTNHEIGHT > STATICHEIGHT ?
311 PUSHBTNHEIGHT : STATICHEIGHT);
312 RECT r;
313 int lwid, rwid, rpos;
314
315 rpos = GAPBETWEEN + 3 * (cp->width + GAPBETWEEN) / 4;
316 lwid = rpos - 2 * GAPBETWEEN;
317 rwid = cp->width + GAPBETWEEN - rpos;
318
319 r.left = GAPBETWEEN;
320 r.top = cp->ypos + (height - STATICHEIGHT) / 2;
321 r.right = lwid;
322 r.bottom = STATICHEIGHT;
323 doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, stext, sid);
324
325 r.left = rpos;
326 r.top = cp->ypos + (height - PUSHBTNHEIGHT) / 2;
327 r.right = rwid;
328 r.bottom = PUSHBTNHEIGHT;
329 doctl(cp, r, "BUTTON",
330 WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON,
331 0, btext, bid);
332
333 cp->ypos += height + GAPBETWEEN;
334 }
335
336 /*
337 * An edit control on the right hand side, with a static to its left.
338 */
339 static void staticedit_internal(struct ctlpos *cp, char *stext,
340 int sid, int eid, int percentedit,
341 int style)
342 {
343 const int height = (EDITHEIGHT > STATICHEIGHT ?
344 EDITHEIGHT : STATICHEIGHT);
345 RECT r;
346 int lwid, rwid, rpos;
347
348 rpos =
349 GAPBETWEEN + (100 - percentedit) * (cp->width + GAPBETWEEN) / 100;
350 lwid = rpos - 2 * GAPBETWEEN;
351 rwid = cp->width + GAPBETWEEN - rpos;
352
353 r.left = GAPBETWEEN;
354 r.top = cp->ypos + (height - STATICHEIGHT) / 2;
355 r.right = lwid;
356 r.bottom = STATICHEIGHT;
357 doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, stext, sid);
358
359 r.left = rpos;
360 r.top = cp->ypos + (height - EDITHEIGHT) / 2;
361 r.right = rwid;
362 r.bottom = EDITHEIGHT;
363 doctl(cp, r, "EDIT",
364 WS_CHILD | WS_VISIBLE | WS_TABSTOP | ES_AUTOHSCROLL | style,
365 WS_EX_CLIENTEDGE, "", eid);
366
367 cp->ypos += height + GAPBETWEEN;
368 }
369
370 void staticedit(struct ctlpos *cp, char *stext,
371 int sid, int eid, int percentedit)
372 {
373 staticedit_internal(cp, stext, sid, eid, percentedit, 0);
374 }
375
376 void staticpassedit(struct ctlpos *cp, char *stext,
377 int sid, int eid, int percentedit)
378 {
379 staticedit_internal(cp, stext, sid, eid, percentedit, ES_PASSWORD);
380 }
381
382 /*
383 * A big multiline edit control with a static labelling it.
384 */
385 void bigeditctrl(struct ctlpos *cp, char *stext,
386 int sid, int eid, int lines)
387 {
388 RECT r;
389
390 r.left = GAPBETWEEN;
391 r.top = cp->ypos;
392 r.right = cp->width;
393 r.bottom = STATICHEIGHT;
394 cp->ypos += r.bottom + GAPWITHIN;
395 doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, stext, sid);
396
397 r.left = GAPBETWEEN;
398 r.top = cp->ypos;
399 r.right = cp->width;
400 r.bottom = EDITHEIGHT + (lines - 1) * STATICHEIGHT;
401 cp->ypos += r.bottom + GAPBETWEEN;
402 doctl(cp, r, "EDIT",
403 WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_VSCROLL | ES_MULTILINE,
404 WS_EX_CLIENTEDGE, "", eid);
405 }
406
407 /*
408 * A tab-control substitute when a real tab control is unavailable.
409 */
410 void ersatztab(struct ctlpos *cp, char *stext, int sid, int lid, int s2id)
411 {
412 const int height = (COMBOHEIGHT > STATICHEIGHT ?
413 COMBOHEIGHT : STATICHEIGHT);
414 RECT r;
415 int bigwid, lwid, rwid, rpos;
416 static const int BIGGAP = 15;
417 static const int MEDGAP = 3;
418
419 bigwid = cp->width + 2 * GAPBETWEEN - 2 * BIGGAP;
420 cp->ypos += MEDGAP;
421 rpos = BIGGAP + (bigwid + BIGGAP) / 2;
422 lwid = rpos - 2 * BIGGAP;
423 rwid = bigwid + BIGGAP - rpos;
424
425 r.left = BIGGAP;
426 r.top = cp->ypos + (height - STATICHEIGHT) / 2;
427 r.right = lwid;
428 r.bottom = STATICHEIGHT;
429 doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, stext, sid);
430
431 r.left = rpos;
432 r.top = cp->ypos + (height - COMBOHEIGHT) / 2;
433 r.right = rwid;
434 r.bottom = COMBOHEIGHT * 10;
435 doctl(cp, r, "COMBOBOX",
436 WS_CHILD | WS_VISIBLE | WS_TABSTOP |
437 CBS_DROPDOWNLIST | CBS_HASSTRINGS, WS_EX_CLIENTEDGE, "", lid);
438
439 cp->ypos += height + MEDGAP + GAPBETWEEN;
440
441 r.left = GAPBETWEEN;
442 r.top = cp->ypos;
443 r.right = cp->width;
444 r.bottom = 2;
445 doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE | SS_ETCHEDHORZ,
446 0, "", s2id);
447 }
448
449 /*
450 * A static line, followed by an edit control on the left hand side
451 * and a button on the right.
452 */
453 void editbutton(struct ctlpos *cp, char *stext, int sid,
454 int eid, char *btext, int bid)
455 {
456 const int height = (EDITHEIGHT > PUSHBTNHEIGHT ?
457 EDITHEIGHT : PUSHBTNHEIGHT);
458 RECT r;
459 int lwid, rwid, rpos;
460
461 r.left = GAPBETWEEN;
462 r.top = cp->ypos;
463 r.right = cp->width;
464 r.bottom = STATICHEIGHT;
465 cp->ypos += r.bottom + GAPWITHIN;
466 doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, stext, sid);
467
468 rpos = GAPBETWEEN + 3 * (cp->width + GAPBETWEEN) / 4;
469 lwid = rpos - 2 * GAPBETWEEN;
470 rwid = cp->width + GAPBETWEEN - rpos;
471
472 r.left = GAPBETWEEN;
473 r.top = cp->ypos + (height - EDITHEIGHT) / 2;
474 r.right = lwid;
475 r.bottom = EDITHEIGHT;
476 doctl(cp, r, "EDIT",
477 WS_CHILD | WS_VISIBLE | WS_TABSTOP | ES_AUTOHSCROLL,
478 WS_EX_CLIENTEDGE, "", eid);
479
480 r.left = rpos;
481 r.top = cp->ypos + (height - PUSHBTNHEIGHT) / 2;
482 r.right = rwid;
483 r.bottom = PUSHBTNHEIGHT;
484 doctl(cp, r, "BUTTON",
485 WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON,
486 0, btext, bid);
487
488 cp->ypos += height + GAPBETWEEN;
489 }
490
491 /*
492 * Special control which was hard to describe generically: the
493 * session-saver assembly. A static; below that an edit box; below
494 * that a list box. To the right of the list box, a column of
495 * buttons.
496 */
497 void sesssaver(struct ctlpos *cp, char *text,
498 int staticid, int editid, int listid, ...)
499 {
500 RECT r;
501 va_list ap;
502 int lwid, rwid, rpos;
503 int y;
504 const int LISTDEFHEIGHT = 66;
505
506 rpos = GAPBETWEEN + 3 * (cp->width + GAPBETWEEN) / 4;
507 lwid = rpos - 2 * GAPBETWEEN;
508 rwid = cp->width + GAPBETWEEN - rpos;
509
510 /* The static control. */
511 r.left = GAPBETWEEN;
512 r.top = cp->ypos;
513 r.right = lwid;
514 r.bottom = STATICHEIGHT;
515 cp->ypos += r.bottom + GAPWITHIN;
516 doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, text, staticid);
517
518 /* The edit control. */
519 r.left = GAPBETWEEN;
520 r.top = cp->ypos;
521 r.right = lwid;
522 r.bottom = EDITHEIGHT;
523 cp->ypos += r.bottom + GAPWITHIN;
524 doctl(cp, r, "EDIT",
525 WS_CHILD | WS_VISIBLE | WS_TABSTOP | ES_AUTOHSCROLL,
526 WS_EX_CLIENTEDGE, "", editid);
527
528 /*
529 * The buttons (we should hold off on the list box until we
530 * know how big the buttons are).
531 */
532 va_start(ap, listid);
533 y = cp->ypos;
534 while (1) {
535 char *btext = va_arg(ap, char *);
536 int bid;
537 if (!btext)
538 break;
539 bid = va_arg(ap, int);
540 r.left = rpos;
541 r.top = y;
542 r.right = rwid;
543 r.bottom = PUSHBTNHEIGHT;
544 y += r.bottom + GAPWITHIN;
545 doctl(cp, r, "BUTTON",
546 WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON,
547 0, btext, bid);
548 }
549
550 /* Compute list box height. LISTDEFHEIGHT, or height of buttons. */
551 y -= cp->ypos;
552 y -= GAPWITHIN;
553 if (y < LISTDEFHEIGHT)
554 y = LISTDEFHEIGHT;
555 r.left = GAPBETWEEN;
556 r.top = cp->ypos;
557 r.right = lwid;
558 r.bottom = y;
559 cp->ypos += y + GAPBETWEEN;
560 doctl(cp, r, "LISTBOX",
561 WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_VSCROLL |
562 LBS_NOTIFY | LBS_HASSTRINGS, WS_EX_CLIENTEDGE, "", listid);
563 }
564
565 /*
566 * Another special control: the environment-variable setter. A
567 * static line first; then a pair of edit boxes with associated
568 * statics, and two buttons; then a list box.
569 */
570 void envsetter(struct ctlpos *cp, char *stext, int sid,
571 char *e1stext, int e1sid, int e1id,
572 char *e2stext, int e2sid, int e2id,
573 int listid, char *b1text, int b1id, char *b2text, int b2id)
574 {
575 RECT r;
576 const int height = (STATICHEIGHT > EDITHEIGHT
577 && STATICHEIGHT >
578 PUSHBTNHEIGHT ? STATICHEIGHT : EDITHEIGHT >
579 PUSHBTNHEIGHT ? EDITHEIGHT : PUSHBTNHEIGHT);
580 const static int percents[] = { 20, 35, 10, 25 };
581 int i, j, xpos, percent;
582 const int LISTHEIGHT = 42;
583
584 /* The static control. */
585 r.left = GAPBETWEEN;
586 r.top = cp->ypos;
587 r.right = cp->width;
588 r.bottom = STATICHEIGHT;
589 cp->ypos += r.bottom + GAPWITHIN;
590 doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, stext, sid);
591
592 /* The statics+edits+buttons. */
593 for (j = 0; j < 2; j++) {
594 percent = 10;
595 for (i = 0; i < 4; i++) {
596 xpos = (cp->width + GAPBETWEEN) * percent / 100;
597 r.left = xpos + GAPBETWEEN;
598 percent += percents[i];
599 xpos = (cp->width + GAPBETWEEN) * percent / 100;
600 r.right = xpos - r.left;
601 r.top = cp->ypos;
602 r.bottom = (i == 0 ? STATICHEIGHT :
603 i == 1 ? EDITHEIGHT : PUSHBTNHEIGHT);
604 r.top += (height - r.bottom) / 2;
605 if (i == 0) {
606 doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0,
607 j == 0 ? e1stext : e2stext, j == 0 ? e1sid : e2sid);
608 } else if (i == 1) {
609 doctl(cp, r, "EDIT",
610 WS_CHILD | WS_VISIBLE | WS_TABSTOP | ES_AUTOHSCROLL,
611 WS_EX_CLIENTEDGE, "", j == 0 ? e1id : e2id);
612 } else if (i == 3) {
613 doctl(cp, r, "BUTTON",
614 WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON,
615 0, j == 0 ? b1text : b2text, j == 0 ? b1id : b2id);
616 }
617 }
618 cp->ypos += height + GAPWITHIN;
619 }
620
621 /* The list box. */
622 r.left = GAPBETWEEN;
623 r.top = cp->ypos;
624 r.right = cp->width;
625 r.bottom = LISTHEIGHT;
626 cp->ypos += r.bottom + GAPBETWEEN;
627 doctl(cp, r, "LISTBOX",
628 WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_VSCROLL | LBS_HASSTRINGS
629 | LBS_USETABSTOPS, WS_EX_CLIENTEDGE, "", listid);
630 }
631
632 /*
633 * Yet another special control: the character-class setter. A
634 * static, then a list, then a line containing a
635 * button-and-static-and-edit.
636 */
637 void charclass(struct ctlpos *cp, char *stext, int sid, int listid,
638 char *btext, int bid, int eid, char *s2text, int s2id)
639 {
640 RECT r;
641 const int height = (STATICHEIGHT > EDITHEIGHT
642 && STATICHEIGHT >
643 PUSHBTNHEIGHT ? STATICHEIGHT : EDITHEIGHT >
644 PUSHBTNHEIGHT ? EDITHEIGHT : PUSHBTNHEIGHT);
645 const static int percents[] = { 30, 40, 30 };
646 int i, xpos, percent;
647 const int LISTHEIGHT = 66;
648
649 /* The static control. */
650 r.left = GAPBETWEEN;
651 r.top = cp->ypos;
652 r.right = cp->width;
653 r.bottom = STATICHEIGHT;
654 cp->ypos += r.bottom + GAPWITHIN;
655 doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, stext, sid);
656
657 /* The list box. */
658 r.left = GAPBETWEEN;
659 r.top = cp->ypos;
660 r.right = cp->width;
661 r.bottom = LISTHEIGHT;
662 cp->ypos += r.bottom + GAPWITHIN;
663 doctl(cp, r, "LISTBOX",
664 WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_VSCROLL | LBS_HASSTRINGS
665 | LBS_USETABSTOPS, WS_EX_CLIENTEDGE, "", listid);
666
667 /* The button+static+edit. */
668 percent = xpos = 0;
669 for (i = 0; i < 3; i++) {
670 r.left = xpos + GAPBETWEEN;
671 percent += percents[i];
672 xpos = (cp->width + GAPBETWEEN) * percent / 100;
673 r.right = xpos - r.left;
674 r.top = cp->ypos;
675 r.bottom = (i == 0 ? PUSHBTNHEIGHT :
676 i == 1 ? STATICHEIGHT : EDITHEIGHT);
677 r.top += (height - r.bottom) / 2;
678 if (i == 0) {
679 doctl(cp, r, "BUTTON",
680 WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON,
681 0, btext, bid);
682 } else if (i == 1) {
683 doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE | SS_CENTER,
684 0, s2text, s2id);
685 } else if (i == 2) {
686 doctl(cp, r, "EDIT",
687 WS_CHILD | WS_VISIBLE | WS_TABSTOP | ES_AUTOHSCROLL,
688 WS_EX_CLIENTEDGE, "", eid);
689 }
690 }
691 cp->ypos += height + GAPBETWEEN;
692 }
693
694 /*
695 * A special control (horrors!). The colour editor. A static line;
696 * then on the left, a list box, and on the right, a sequence of
697 * two-part statics followed by a button.
698 */
699 void colouredit(struct ctlpos *cp, char *stext, int sid, int listid,
700 char *btext, int bid, ...)
701 {
702 RECT r;
703 int y;
704 va_list ap;
705 int lwid, rwid, rpos;
706 const int LISTHEIGHT = 66;
707
708 /* The static control. */
709 r.left = GAPBETWEEN;
710 r.top = cp->ypos;
711 r.right = cp->width;
712 r.bottom = STATICHEIGHT;
713 cp->ypos += r.bottom + GAPWITHIN;
714 doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, stext, sid);
715
716 rpos = GAPBETWEEN + 2 * (cp->width + GAPBETWEEN) / 3;
717 lwid = rpos - 2 * GAPBETWEEN;
718 rwid = cp->width + GAPBETWEEN - rpos;
719
720 /* The list box. */
721 r.left = GAPBETWEEN;
722 r.top = cp->ypos;
723 r.right = lwid;
724 r.bottom = LISTHEIGHT;
725 doctl(cp, r, "LISTBOX",
726 WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_VSCROLL | LBS_HASSTRINGS
727 | LBS_USETABSTOPS | LBS_NOTIFY, WS_EX_CLIENTEDGE, "", listid);
728
729 /* The statics. */
730 y = cp->ypos;
731 va_start(ap, bid);
732 while (1) {
733 char *ltext;
734 int lid, rid;
735 ltext = va_arg(ap, char *);
736 if (!ltext)
737 break;
738 lid = va_arg(ap, int);
739 rid = va_arg(ap, int);
740 r.top = y;
741 r.bottom = STATICHEIGHT;
742 y += r.bottom + GAPWITHIN;
743 r.left = rpos;
744 r.right = rwid / 2;
745 doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, ltext, lid);
746 r.left = rpos + r.right;
747 r.right = rwid - r.right;
748 doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE | SS_RIGHT, 0, "",
749 rid);
750 }
751 va_end(ap);
752
753 /* The button. */
754 r.top = y + 2 * GAPWITHIN;
755 r.bottom = PUSHBTNHEIGHT;
756 r.left = rpos;
757 r.right = rwid;
758 doctl(cp, r, "BUTTON",
759 WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON,
760 0, btext, bid);
761
762 cp->ypos += LISTHEIGHT + GAPBETWEEN;
763 }
764
765 /*
766 * A progress bar (from Common Controls). We like our progress bars
767 * to be smooth and unbroken, without those ugly divisions; some
768 * older compilers may not support that, but that's life.
769 */
770 void progressbar(struct ctlpos *cp, int id)
771 {
772 RECT r;
773
774 r.left = GAPBETWEEN;
775 r.top = cp->ypos;
776 r.right = cp->width;
777 r.bottom = PROGBARHEIGHT;
778 cp->ypos += r.bottom + GAPBETWEEN;
779
780 doctl(cp, r, PROGRESS_CLASS, WS_CHILD | WS_VISIBLE
781 #ifdef PBS_SMOOTH
782 | PBS_SMOOTH
783 #endif
784 , WS_EX_CLIENTEDGE, "", id);
785 }
786
787 /*
788 * Another special control: the forwarding options setter. First a
789 * list box; next a static header line, introducing a pair of edit
790 * boxes with associated statics, another button, and a radio
791 * button pair.
792 */
793 void fwdsetter(struct ctlpos *cp, int listid, char *stext, int sid,
794 char *e1stext, int e1sid, int e1id,
795 char *e2stext, int e2sid, int e2id,
796 char *btext, int bid)
797 {
798 RECT r;
799 const int height = (STATICHEIGHT > EDITHEIGHT
800 && STATICHEIGHT >
801 PUSHBTNHEIGHT ? STATICHEIGHT : EDITHEIGHT >
802 PUSHBTNHEIGHT ? EDITHEIGHT : PUSHBTNHEIGHT);
803 const static int percents[] = { 25, 35, 15, 25 };
804 int i, j, xpos, percent;
805 const int LISTHEIGHT = 42;
806
807 /* The list box. */
808 r.left = GAPBETWEEN;
809 r.top = cp->ypos;
810 r.right = cp->width;
811 r.bottom = LISTHEIGHT;
812 cp->ypos += r.bottom + GAPBETWEEN;
813 doctl(cp, r, "LISTBOX",
814 WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_VSCROLL | LBS_HASSTRINGS
815 | LBS_USETABSTOPS, WS_EX_CLIENTEDGE, "", listid);
816
817 /* The static control. */
818 r.left = GAPBETWEEN;
819 r.top = cp->ypos;
820 r.right = cp->width;
821 r.bottom = STATICHEIGHT;
822 cp->ypos += r.bottom + GAPWITHIN;
823 doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, stext, sid);
824
825 /* The statics+edits+buttons. */
826 for (j = 0; j < 2; j++) {
827 percent = 0;
828 for (i = 0; i < (j ? 2 : 4); i++) {
829 xpos = (cp->width + GAPBETWEEN) * percent / 100;
830 r.left = xpos + GAPBETWEEN;
831 percent += percents[i];
832 if (j==1 && i==1) percent = 100;
833 xpos = (cp->width + GAPBETWEEN) * percent / 100;
834 r.right = xpos - r.left;
835 r.top = cp->ypos;
836 r.bottom = (i == 0 ? STATICHEIGHT :
837 i == 1 ? EDITHEIGHT : PUSHBTNHEIGHT);
838 r.top += (height - r.bottom) / 2;
839 if (i == 0) {
840 doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0,
841 j == 0 ? e1stext : e2stext, j == 0 ? e1sid : e2sid);
842 } else if (i == 1) {
843 doctl(cp, r, "EDIT",
844 WS_CHILD | WS_VISIBLE | WS_TABSTOP | ES_AUTOHSCROLL,
845 WS_EX_CLIENTEDGE, "", j == 0 ? e1id : e2id);
846 } else if (i == 3) {
847 doctl(cp, r, "BUTTON",
848 WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON,
849 0, btext, bid);
850 }
851 }
852 cp->ypos += height + GAPWITHIN;
853 }
854 }