2000-10-18 15:36:32 +00:00
|
|
|
/*
|
|
|
|
* winctrls.c: routines to self-manage the controls in a dialog
|
|
|
|
* box.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <windows.h>
|
2000-10-19 15:43:08 +00:00
|
|
|
#include <commctrl.h>
|
2000-10-18 15:36:32 +00:00
|
|
|
|
|
|
|
#include "winstuff.h"
|
|
|
|
|
|
|
|
#define GAPBETWEEN 3
|
|
|
|
#define GAPWITHIN 1
|
|
|
|
#define GAPXBOX 7
|
|
|
|
#define GAPYBOX 4
|
|
|
|
#define DLGWIDTH 168
|
|
|
|
#define STATICHEIGHT 8
|
|
|
|
#define CHECKBOXHEIGHT 8
|
|
|
|
#define RADIOHEIGHT 8
|
|
|
|
#define EDITHEIGHT 12
|
|
|
|
#define COMBOHEIGHT 12
|
|
|
|
#define PUSHBTNHEIGHT 14
|
2000-10-19 15:43:08 +00:00
|
|
|
#define PROGBARHEIGHT 14
|
2000-10-18 15:36:32 +00:00
|
|
|
|
|
|
|
void ctlposinit(struct ctlpos *cp, HWND hwnd,
|
2001-05-06 14:35:20 +00:00
|
|
|
int leftborder, int rightborder, int topborder)
|
|
|
|
{
|
2000-10-18 15:36:32 +00:00
|
|
|
RECT r, r2;
|
|
|
|
cp->hwnd = hwnd;
|
|
|
|
cp->font = SendMessage(hwnd, WM_GETFONT, 0, 0);
|
|
|
|
cp->ypos = topborder;
|
|
|
|
GetClientRect(hwnd, &r);
|
|
|
|
r2.left = r2.top = 0;
|
|
|
|
r2.right = 4;
|
|
|
|
r2.bottom = 8;
|
|
|
|
MapDialogRect(hwnd, &r2);
|
|
|
|
cp->dlu4inpix = r2.right;
|
2001-05-06 14:35:20 +00:00
|
|
|
cp->width = (r.right * 4) / (r2.right) - 2 * GAPBETWEEN;
|
2000-10-18 15:36:32 +00:00
|
|
|
cp->xoff = leftborder;
|
|
|
|
cp->width -= leftborder + rightborder;
|
|
|
|
}
|
|
|
|
|
|
|
|
void doctl(struct ctlpos *cp, RECT r,
|
2001-05-06 14:35:20 +00:00
|
|
|
char *wclass, int wstyle, int exstyle, char *wtext, int wid)
|
|
|
|
{
|
2000-10-18 15:36:32 +00:00
|
|
|
HWND ctl;
|
|
|
|
/*
|
|
|
|
* Note nonstandard use of RECT. This is deliberate: by
|
|
|
|
* transforming the width and height directly we arrange to
|
|
|
|
* have all supposedly same-sized controls really same-sized.
|
|
|
|
*/
|
|
|
|
|
|
|
|
r.left += cp->xoff;
|
|
|
|
MapDialogRect(cp->hwnd, &r);
|
|
|
|
|
|
|
|
ctl = CreateWindowEx(exstyle, wclass, wtext, wstyle,
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left, r.top, r.right, r.bottom,
|
|
|
|
cp->hwnd, (HMENU) wid, hinst, NULL);
|
2000-10-18 15:36:32 +00:00
|
|
|
SendMessage(ctl, WM_SETFONT, cp->font, MAKELPARAM(TRUE, 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A title bar across the top of a sub-dialog.
|
|
|
|
*/
|
2001-05-06 14:35:20 +00:00
|
|
|
void bartitle(struct ctlpos *cp, char *name, int id)
|
|
|
|
{
|
2000-10-18 15:36:32 +00:00
|
|
|
RECT r;
|
|
|
|
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = GAPBETWEEN;
|
|
|
|
r.right = cp->width;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.bottom = STATICHEIGHT;
|
2000-10-18 15:36:32 +00:00
|
|
|
cp->ypos += r.bottom + GAPBETWEEN;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, name, id);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Begin a grouping box, with or without a group title.
|
|
|
|
*/
|
2001-05-06 14:35:20 +00:00
|
|
|
void beginbox(struct ctlpos *cp, char *name, int idbox)
|
|
|
|
{
|
2000-10-18 15:36:32 +00:00
|
|
|
cp->boxystart = cp->ypos;
|
2001-01-22 17:17:26 +00:00
|
|
|
if (!name)
|
2001-05-06 14:35:20 +00:00
|
|
|
cp->boxystart -= STATICHEIGHT / 2;
|
2000-10-18 15:36:32 +00:00
|
|
|
if (name)
|
2001-05-06 14:35:20 +00:00
|
|
|
cp->ypos += STATICHEIGHT;
|
2000-10-18 15:36:32 +00:00
|
|
|
cp->ypos += GAPYBOX;
|
2001-05-06 14:35:20 +00:00
|
|
|
cp->width -= 2 * GAPXBOX;
|
2000-10-18 15:36:32 +00:00
|
|
|
cp->xoff += GAPXBOX;
|
|
|
|
cp->boxid = idbox;
|
|
|
|
cp->boxtext = name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* End a grouping box.
|
|
|
|
*/
|
2001-05-06 14:35:20 +00:00
|
|
|
void endbox(struct ctlpos *cp)
|
|
|
|
{
|
2000-10-18 15:36:32 +00:00
|
|
|
RECT r;
|
|
|
|
cp->xoff -= GAPXBOX;
|
2001-05-06 14:35:20 +00:00
|
|
|
cp->width += 2 * GAPXBOX;
|
2000-10-18 15:36:32 +00:00
|
|
|
cp->ypos += GAPYBOX - GAPBETWEEN;
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = GAPBETWEEN;
|
|
|
|
r.right = cp->width;
|
|
|
|
r.top = cp->boxystart;
|
|
|
|
r.bottom = cp->ypos - cp->boxystart;
|
2001-01-22 17:17:26 +00:00
|
|
|
doctl(cp, r, "BUTTON", BS_GROUPBOX | WS_CHILD | WS_VISIBLE, 0,
|
2001-05-06 14:35:20 +00:00
|
|
|
cp->boxtext ? cp->boxtext : "", cp->boxid);
|
2000-10-18 15:36:32 +00:00
|
|
|
cp->ypos += GAPYBOX;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Some edit boxes. Each one has a static above it. The percentages
|
|
|
|
* of the horizontal space are provided.
|
|
|
|
*/
|
2001-05-06 14:35:20 +00:00
|
|
|
void multiedit(struct ctlpos *cp, ...)
|
|
|
|
{
|
2000-10-18 15:36:32 +00:00
|
|
|
RECT r;
|
|
|
|
va_list ap;
|
|
|
|
int percent, xpos;
|
|
|
|
|
|
|
|
percent = xpos = 0;
|
|
|
|
va_start(ap, cp);
|
|
|
|
while (1) {
|
2001-05-06 14:35:20 +00:00
|
|
|
char *text;
|
|
|
|
int staticid, editid, pcwidth;
|
|
|
|
text = va_arg(ap, char *);
|
|
|
|
if (!text)
|
|
|
|
break;
|
|
|
|
staticid = va_arg(ap, int);
|
|
|
|
editid = va_arg(ap, int);
|
|
|
|
pcwidth = va_arg(ap, int);
|
|
|
|
|
|
|
|
r.left = xpos + GAPBETWEEN;
|
|
|
|
percent += pcwidth;
|
|
|
|
xpos = (cp->width + GAPBETWEEN) * percent / 100;
|
|
|
|
r.right = xpos - r.left;
|
|
|
|
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.bottom = STATICHEIGHT;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, text, staticid);
|
|
|
|
r.top = cp->ypos + 8 + GAPWITHIN;
|
|
|
|
r.bottom = EDITHEIGHT;
|
|
|
|
doctl(cp, r, "EDIT",
|
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | ES_AUTOHSCROLL,
|
|
|
|
WS_EX_CLIENTEDGE, "", editid);
|
2000-10-18 15:36:32 +00:00
|
|
|
}
|
|
|
|
va_end(ap);
|
2001-05-06 14:35:20 +00:00
|
|
|
cp->ypos += 8 + GAPWITHIN + 12 + GAPBETWEEN;
|
2000-10-18 15:36:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A set of radio buttons on the same line, with a static above
|
|
|
|
* them. `nacross' dictates how many parts the line is divided into
|
|
|
|
* (you might want this not to equal the number of buttons if you
|
|
|
|
* needed to line up some 2s and some 3s to look good in the same
|
|
|
|
* panel).
|
2001-02-05 13:42:33 +00:00
|
|
|
*
|
|
|
|
* There's a bit of a hack in here to ensure that if nacross
|
|
|
|
* exceeds the actual number of buttons, the rightmost button
|
|
|
|
* really does get all the space right to the edge of the line, so
|
|
|
|
* you can do things like
|
|
|
|
*
|
|
|
|
* (*) Button1 (*) Button2 (*) ButtonWithReallyLongTitle
|
2000-10-18 15:36:32 +00:00
|
|
|
*/
|
2001-05-06 14:35:20 +00:00
|
|
|
void radioline(struct ctlpos *cp, char *text, int id, int nacross, ...)
|
|
|
|
{
|
2000-10-18 15:36:32 +00:00
|
|
|
RECT r;
|
|
|
|
va_list ap;
|
|
|
|
int group;
|
|
|
|
int i;
|
2001-02-05 13:42:33 +00:00
|
|
|
char *btext;
|
2000-10-18 15:36:32 +00:00
|
|
|
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = GAPBETWEEN;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.right = cp->width;
|
|
|
|
r.bottom = STATICHEIGHT;
|
2000-10-18 15:36:32 +00:00
|
|
|
cp->ypos += r.bottom + GAPWITHIN;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, text, id);
|
|
|
|
va_start(ap, nacross);
|
|
|
|
group = WS_GROUP;
|
|
|
|
i = 0;
|
2001-02-05 13:42:33 +00:00
|
|
|
btext = va_arg(ap, char *);
|
2000-10-18 15:36:32 +00:00
|
|
|
while (1) {
|
2001-05-06 14:35:20 +00:00
|
|
|
char *nextbtext;
|
|
|
|
int bid;
|
|
|
|
if (!btext)
|
|
|
|
break;
|
|
|
|
if (i == nacross) {
|
2001-04-16 16:16:52 +00:00
|
|
|
cp->ypos += r.bottom + GAPBETWEEN;
|
2001-05-06 14:35:20 +00:00
|
|
|
i = 0;
|
2001-04-16 16:16:52 +00:00
|
|
|
}
|
2001-05-06 14:35:20 +00:00
|
|
|
bid = va_arg(ap, int);
|
|
|
|
nextbtext = va_arg(ap, char *);
|
|
|
|
r.left = GAPBETWEEN + i * (cp->width + GAPBETWEEN) / nacross;
|
|
|
|
if (nextbtext)
|
|
|
|
r.right =
|
|
|
|
(i + 1) * (cp->width + GAPBETWEEN) / nacross - r.left;
|
|
|
|
else
|
|
|
|
r.right = cp->width - r.left;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.bottom = RADIOHEIGHT;
|
|
|
|
doctl(cp, r, "BUTTON",
|
|
|
|
BS_AUTORADIOBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP |
|
|
|
|
group, 0, btext, bid);
|
|
|
|
group = 0;
|
|
|
|
i++;
|
|
|
|
btext = nextbtext;
|
2000-10-18 15:36:32 +00:00
|
|
|
}
|
|
|
|
va_end(ap);
|
|
|
|
cp->ypos += r.bottom + GAPBETWEEN;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A set of radio buttons on multiple lines, with a static above
|
|
|
|
* them.
|
|
|
|
*/
|
2001-05-06 14:35:20 +00:00
|
|
|
void radiobig(struct ctlpos *cp, char *text, int id, ...)
|
|
|
|
{
|
2000-10-18 15:36:32 +00:00
|
|
|
RECT r;
|
|
|
|
va_list ap;
|
|
|
|
int group;
|
|
|
|
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = GAPBETWEEN;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.right = cp->width;
|
|
|
|
r.bottom = STATICHEIGHT;
|
2000-10-18 15:36:32 +00:00
|
|
|
cp->ypos += r.bottom + GAPWITHIN;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, text, id);
|
|
|
|
va_start(ap, id);
|
|
|
|
group = WS_GROUP;
|
|
|
|
while (1) {
|
2001-05-06 14:35:20 +00:00
|
|
|
char *btext;
|
|
|
|
int bid;
|
|
|
|
btext = va_arg(ap, char *);
|
|
|
|
if (!btext)
|
|
|
|
break;
|
|
|
|
bid = va_arg(ap, int);
|
|
|
|
r.left = GAPBETWEEN;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.right = cp->width;
|
|
|
|
r.bottom = STATICHEIGHT;
|
|
|
|
cp->ypos += r.bottom + GAPWITHIN;
|
|
|
|
doctl(cp, r, "BUTTON",
|
|
|
|
BS_AUTORADIOBUTTON | WS_CHILD | WS_VISIBLE | WS_TABSTOP |
|
|
|
|
group, 0, btext, bid);
|
|
|
|
group = 0;
|
2000-10-18 15:36:32 +00:00
|
|
|
}
|
|
|
|
va_end(ap);
|
|
|
|
cp->ypos += GAPBETWEEN - GAPWITHIN;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A single standalone checkbox.
|
|
|
|
*/
|
2001-05-06 14:35:20 +00:00
|
|
|
void checkbox(struct ctlpos *cp, char *text, int id)
|
|
|
|
{
|
2000-10-18 15:36:32 +00:00
|
|
|
RECT r;
|
|
|
|
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = GAPBETWEEN;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.right = cp->width;
|
|
|
|
r.bottom = CHECKBOXHEIGHT;
|
2000-10-18 15:36:32 +00:00
|
|
|
cp->ypos += r.bottom + GAPBETWEEN;
|
|
|
|
doctl(cp, r, "BUTTON",
|
2001-05-06 14:35:20 +00:00
|
|
|
BS_AUTOCHECKBOX | WS_CHILD | WS_VISIBLE | WS_TABSTOP, 0,
|
|
|
|
text, id);
|
2000-10-18 15:36:32 +00:00
|
|
|
}
|
|
|
|
|
2000-10-19 15:43:08 +00:00
|
|
|
/*
|
|
|
|
* A single standalone static text control.
|
|
|
|
*/
|
2001-05-06 14:35:20 +00:00
|
|
|
void statictext(struct ctlpos *cp, char *text, int id)
|
|
|
|
{
|
2000-10-19 15:43:08 +00:00
|
|
|
RECT r;
|
|
|
|
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = GAPBETWEEN;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.right = cp->width;
|
|
|
|
r.bottom = STATICHEIGHT;
|
2000-10-19 15:43:08 +00:00
|
|
|
cp->ypos += r.bottom + GAPBETWEEN;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, text, id);
|
|
|
|
}
|
|
|
|
|
2000-10-18 15:36:32 +00:00
|
|
|
/*
|
|
|
|
* A button on the right hand side, with a static to its left.
|
|
|
|
*/
|
|
|
|
void staticbtn(struct ctlpos *cp, char *stext, int sid,
|
2001-05-06 14:35:20 +00:00
|
|
|
char *btext, int bid)
|
|
|
|
{
|
2000-10-18 15:36:32 +00:00
|
|
|
const int height = (PUSHBTNHEIGHT > STATICHEIGHT ?
|
2001-05-06 14:35:20 +00:00
|
|
|
PUSHBTNHEIGHT : STATICHEIGHT);
|
2000-10-18 15:36:32 +00:00
|
|
|
RECT r;
|
|
|
|
int lwid, rwid, rpos;
|
|
|
|
|
|
|
|
rpos = GAPBETWEEN + 3 * (cp->width + GAPBETWEEN) / 4;
|
2001-05-06 14:35:20 +00:00
|
|
|
lwid = rpos - 2 * GAPBETWEEN;
|
2000-10-18 15:36:32 +00:00
|
|
|
rwid = cp->width + GAPBETWEEN - rpos;
|
|
|
|
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = GAPBETWEEN;
|
|
|
|
r.top = cp->ypos + (height - STATICHEIGHT) / 2;
|
|
|
|
r.right = lwid;
|
|
|
|
r.bottom = STATICHEIGHT;
|
2000-10-18 15:36:32 +00:00
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, stext, sid);
|
|
|
|
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = rpos;
|
|
|
|
r.top = cp->ypos + (height - PUSHBTNHEIGHT) / 2;
|
|
|
|
r.right = rwid;
|
|
|
|
r.bottom = PUSHBTNHEIGHT;
|
2000-10-18 15:36:32 +00:00
|
|
|
doctl(cp, r, "BUTTON",
|
2001-05-06 14:35:20 +00:00
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON,
|
|
|
|
0, btext, bid);
|
2000-10-18 15:36:32 +00:00
|
|
|
|
|
|
|
cp->ypos += height + GAPBETWEEN;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* An edit control on the right hand side, with a static to its left.
|
|
|
|
*/
|
2000-10-19 15:43:08 +00:00
|
|
|
static void staticedit_internal(struct ctlpos *cp, char *stext,
|
2001-05-06 14:35:20 +00:00
|
|
|
int sid, int eid, int percentedit,
|
|
|
|
int style)
|
|
|
|
{
|
2000-10-18 15:36:32 +00:00
|
|
|
const int height = (EDITHEIGHT > STATICHEIGHT ?
|
2001-05-06 14:35:20 +00:00
|
|
|
EDITHEIGHT : STATICHEIGHT);
|
2000-10-18 15:36:32 +00:00
|
|
|
RECT r;
|
|
|
|
int lwid, rwid, rpos;
|
|
|
|
|
2001-05-06 14:35:20 +00:00
|
|
|
rpos =
|
|
|
|
GAPBETWEEN + (100 - percentedit) * (cp->width + GAPBETWEEN) / 100;
|
|
|
|
lwid = rpos - 2 * GAPBETWEEN;
|
2000-10-18 15:36:32 +00:00
|
|
|
rwid = cp->width + GAPBETWEEN - rpos;
|
|
|
|
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = GAPBETWEEN;
|
|
|
|
r.top = cp->ypos + (height - STATICHEIGHT) / 2;
|
|
|
|
r.right = lwid;
|
|
|
|
r.bottom = STATICHEIGHT;
|
2000-10-18 15:36:32 +00:00
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, stext, sid);
|
|
|
|
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = rpos;
|
|
|
|
r.top = cp->ypos + (height - EDITHEIGHT) / 2;
|
|
|
|
r.right = rwid;
|
|
|
|
r.bottom = EDITHEIGHT;
|
2000-10-18 15:36:32 +00:00
|
|
|
doctl(cp, r, "EDIT",
|
2001-05-06 14:35:20 +00:00
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | ES_AUTOHSCROLL | style,
|
|
|
|
WS_EX_CLIENTEDGE, "", eid);
|
2000-10-18 15:36:32 +00:00
|
|
|
|
|
|
|
cp->ypos += height + GAPBETWEEN;
|
|
|
|
}
|
|
|
|
|
2000-10-19 15:43:08 +00:00
|
|
|
void staticedit(struct ctlpos *cp, char *stext,
|
2001-05-06 14:35:20 +00:00
|
|
|
int sid, int eid, int percentedit)
|
|
|
|
{
|
2000-10-19 15:43:08 +00:00
|
|
|
staticedit_internal(cp, stext, sid, eid, percentedit, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void staticpassedit(struct ctlpos *cp, char *stext,
|
2001-05-06 14:35:20 +00:00
|
|
|
int sid, int eid, int percentedit)
|
|
|
|
{
|
2000-10-19 15:43:08 +00:00
|
|
|
staticedit_internal(cp, stext, sid, eid, percentedit, ES_PASSWORD);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A big multiline edit control with a static labelling it.
|
|
|
|
*/
|
|
|
|
void bigeditctrl(struct ctlpos *cp, char *stext,
|
2001-05-06 14:35:20 +00:00
|
|
|
int sid, int eid, int lines)
|
|
|
|
{
|
2000-10-19 15:43:08 +00:00
|
|
|
RECT r;
|
|
|
|
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = GAPBETWEEN;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.right = cp->width;
|
|
|
|
r.bottom = STATICHEIGHT;
|
2000-10-19 15:43:08 +00:00
|
|
|
cp->ypos += r.bottom + GAPWITHIN;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, stext, sid);
|
|
|
|
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = GAPBETWEEN;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.right = cp->width;
|
|
|
|
r.bottom = EDITHEIGHT + (lines - 1) * STATICHEIGHT;
|
2000-10-19 15:43:08 +00:00
|
|
|
cp->ypos += r.bottom + GAPBETWEEN;
|
|
|
|
doctl(cp, r, "EDIT",
|
2001-05-06 14:35:20 +00:00
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_VSCROLL | ES_MULTILINE,
|
|
|
|
WS_EX_CLIENTEDGE, "", eid);
|
2000-10-19 15:43:08 +00:00
|
|
|
}
|
|
|
|
|
2000-10-18 15:36:32 +00:00
|
|
|
/*
|
|
|
|
* A tab-control substitute when a real tab control is unavailable.
|
|
|
|
*/
|
2001-05-06 14:35:20 +00:00
|
|
|
void ersatztab(struct ctlpos *cp, char *stext, int sid, int lid, int s2id)
|
|
|
|
{
|
2000-10-18 15:36:32 +00:00
|
|
|
const int height = (COMBOHEIGHT > STATICHEIGHT ?
|
2001-05-06 14:35:20 +00:00
|
|
|
COMBOHEIGHT : STATICHEIGHT);
|
2000-10-18 15:36:32 +00:00
|
|
|
RECT r;
|
|
|
|
int bigwid, lwid, rwid, rpos;
|
|
|
|
static const int BIGGAP = 15;
|
|
|
|
static const int MEDGAP = 3;
|
|
|
|
|
2001-05-06 14:35:20 +00:00
|
|
|
bigwid = cp->width + 2 * GAPBETWEEN - 2 * BIGGAP;
|
2000-10-18 15:36:32 +00:00
|
|
|
cp->ypos += MEDGAP;
|
|
|
|
rpos = BIGGAP + (bigwid + BIGGAP) / 2;
|
2001-05-06 14:35:20 +00:00
|
|
|
lwid = rpos - 2 * BIGGAP;
|
2000-10-18 15:36:32 +00:00
|
|
|
rwid = bigwid + BIGGAP - rpos;
|
|
|
|
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = BIGGAP;
|
|
|
|
r.top = cp->ypos + (height - STATICHEIGHT) / 2;
|
|
|
|
r.right = lwid;
|
|
|
|
r.bottom = STATICHEIGHT;
|
2000-10-18 15:36:32 +00:00
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, stext, sid);
|
|
|
|
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = rpos;
|
|
|
|
r.top = cp->ypos + (height - COMBOHEIGHT) / 2;
|
|
|
|
r.right = rwid;
|
|
|
|
r.bottom = COMBOHEIGHT * 10;
|
2000-10-18 15:36:32 +00:00
|
|
|
doctl(cp, r, "COMBOBOX",
|
2001-05-06 14:35:20 +00:00
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP |
|
|
|
|
CBS_DROPDOWNLIST | CBS_HASSTRINGS, WS_EX_CLIENTEDGE, "", lid);
|
2000-10-18 15:36:32 +00:00
|
|
|
|
|
|
|
cp->ypos += height + MEDGAP + GAPBETWEEN;
|
|
|
|
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = GAPBETWEEN;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.right = cp->width;
|
|
|
|
r.bottom = 2;
|
2000-10-18 15:36:32 +00:00
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE | SS_ETCHEDHORZ,
|
2001-05-06 14:35:20 +00:00
|
|
|
0, "", s2id);
|
2000-10-18 15:36:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A static line, followed by an edit control on the left hand side
|
|
|
|
* and a button on the right.
|
|
|
|
*/
|
|
|
|
void editbutton(struct ctlpos *cp, char *stext, int sid,
|
2001-05-06 14:35:20 +00:00
|
|
|
int eid, char *btext, int bid)
|
|
|
|
{
|
2000-10-18 15:36:32 +00:00
|
|
|
const int height = (EDITHEIGHT > PUSHBTNHEIGHT ?
|
2001-05-06 14:35:20 +00:00
|
|
|
EDITHEIGHT : PUSHBTNHEIGHT);
|
2000-10-18 15:36:32 +00:00
|
|
|
RECT r;
|
|
|
|
int lwid, rwid, rpos;
|
|
|
|
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = GAPBETWEEN;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.right = cp->width;
|
|
|
|
r.bottom = STATICHEIGHT;
|
2000-10-18 15:36:32 +00:00
|
|
|
cp->ypos += r.bottom + GAPWITHIN;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, stext, sid);
|
|
|
|
|
|
|
|
rpos = GAPBETWEEN + 3 * (cp->width + GAPBETWEEN) / 4;
|
2001-05-06 14:35:20 +00:00
|
|
|
lwid = rpos - 2 * GAPBETWEEN;
|
2000-10-18 15:36:32 +00:00
|
|
|
rwid = cp->width + GAPBETWEEN - rpos;
|
|
|
|
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = GAPBETWEEN;
|
|
|
|
r.top = cp->ypos + (height - EDITHEIGHT) / 2;
|
|
|
|
r.right = lwid;
|
|
|
|
r.bottom = EDITHEIGHT;
|
2000-10-18 15:36:32 +00:00
|
|
|
doctl(cp, r, "EDIT",
|
2001-05-06 14:35:20 +00:00
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | ES_AUTOHSCROLL,
|
|
|
|
WS_EX_CLIENTEDGE, "", eid);
|
2000-10-18 15:36:32 +00:00
|
|
|
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = rpos;
|
|
|
|
r.top = cp->ypos + (height - PUSHBTNHEIGHT) / 2;
|
|
|
|
r.right = rwid;
|
|
|
|
r.bottom = PUSHBTNHEIGHT;
|
2000-10-18 15:36:32 +00:00
|
|
|
doctl(cp, r, "BUTTON",
|
2001-05-06 14:35:20 +00:00
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON,
|
|
|
|
0, btext, bid);
|
2000-10-18 15:36:32 +00:00
|
|
|
|
|
|
|
cp->ypos += height + GAPBETWEEN;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Special control which was hard to describe generically: the
|
|
|
|
* session-saver assembly. A static; below that an edit box; below
|
|
|
|
* that a list box. To the right of the list box, a column of
|
|
|
|
* buttons.
|
|
|
|
*/
|
|
|
|
void sesssaver(struct ctlpos *cp, char *text,
|
2001-05-06 14:35:20 +00:00
|
|
|
int staticid, int editid, int listid, ...)
|
|
|
|
{
|
2000-10-18 15:36:32 +00:00
|
|
|
RECT r;
|
|
|
|
va_list ap;
|
|
|
|
int lwid, rwid, rpos;
|
|
|
|
int y;
|
|
|
|
const int LISTDEFHEIGHT = 66;
|
|
|
|
|
|
|
|
rpos = GAPBETWEEN + 3 * (cp->width + GAPBETWEEN) / 4;
|
2001-05-06 14:35:20 +00:00
|
|
|
lwid = rpos - 2 * GAPBETWEEN;
|
2000-10-18 15:36:32 +00:00
|
|
|
rwid = cp->width + GAPBETWEEN - rpos;
|
|
|
|
|
|
|
|
/* The static control. */
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = GAPBETWEEN;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.right = lwid;
|
|
|
|
r.bottom = STATICHEIGHT;
|
2000-10-18 15:36:32 +00:00
|
|
|
cp->ypos += r.bottom + GAPWITHIN;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, text, staticid);
|
|
|
|
|
|
|
|
/* The edit control. */
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = GAPBETWEEN;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.right = lwid;
|
|
|
|
r.bottom = EDITHEIGHT;
|
2000-10-18 15:36:32 +00:00
|
|
|
cp->ypos += r.bottom + GAPWITHIN;
|
|
|
|
doctl(cp, r, "EDIT",
|
2001-05-06 14:35:20 +00:00
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | ES_AUTOHSCROLL,
|
|
|
|
WS_EX_CLIENTEDGE, "", editid);
|
2000-10-18 15:36:32 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The buttons (we should hold off on the list box until we
|
|
|
|
* know how big the buttons are).
|
|
|
|
*/
|
|
|
|
va_start(ap, listid);
|
|
|
|
y = cp->ypos;
|
|
|
|
while (1) {
|
2001-05-06 14:35:20 +00:00
|
|
|
char *btext = va_arg(ap, char *);
|
|
|
|
int bid;
|
|
|
|
if (!btext)
|
|
|
|
break;
|
|
|
|
bid = va_arg(ap, int);
|
|
|
|
r.left = rpos;
|
|
|
|
r.top = y;
|
|
|
|
r.right = rwid;
|
|
|
|
r.bottom = PUSHBTNHEIGHT;
|
|
|
|
y += r.bottom + GAPWITHIN;
|
|
|
|
doctl(cp, r, "BUTTON",
|
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON,
|
|
|
|
0, btext, bid);
|
2000-10-18 15:36:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Compute list box height. LISTDEFHEIGHT, or height of buttons. */
|
|
|
|
y -= cp->ypos;
|
|
|
|
y -= GAPWITHIN;
|
2001-05-06 14:35:20 +00:00
|
|
|
if (y < LISTDEFHEIGHT)
|
|
|
|
y = LISTDEFHEIGHT;
|
|
|
|
r.left = GAPBETWEEN;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.right = lwid;
|
|
|
|
r.bottom = y;
|
2000-10-18 15:36:32 +00:00
|
|
|
cp->ypos += y + GAPBETWEEN;
|
|
|
|
doctl(cp, r, "LISTBOX",
|
2001-05-06 14:35:20 +00:00
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_VSCROLL |
|
|
|
|
LBS_NOTIFY | LBS_HASSTRINGS, WS_EX_CLIENTEDGE, "", listid);
|
2000-10-18 15:36:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Another special control: the environment-variable setter. A
|
|
|
|
* static line first; then a pair of edit boxes with associated
|
|
|
|
* statics, and two buttons; then a list box.
|
|
|
|
*/
|
|
|
|
void envsetter(struct ctlpos *cp, char *stext, int sid,
|
2001-05-06 14:35:20 +00:00
|
|
|
char *e1stext, int e1sid, int e1id,
|
|
|
|
char *e2stext, int e2sid, int e2id,
|
|
|
|
int listid, char *b1text, int b1id, char *b2text, int b2id)
|
|
|
|
{
|
2000-10-18 15:36:32 +00:00
|
|
|
RECT r;
|
2001-05-06 14:35:20 +00:00
|
|
|
const int height = (STATICHEIGHT > EDITHEIGHT
|
|
|
|
&& STATICHEIGHT >
|
|
|
|
PUSHBTNHEIGHT ? STATICHEIGHT : EDITHEIGHT >
|
|
|
|
PUSHBTNHEIGHT ? EDITHEIGHT : PUSHBTNHEIGHT);
|
2000-10-18 15:36:32 +00:00
|
|
|
const static int percents[] = { 20, 35, 10, 25 };
|
|
|
|
int i, j, xpos, percent;
|
|
|
|
const int LISTHEIGHT = 42;
|
|
|
|
|
|
|
|
/* The static control. */
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = GAPBETWEEN;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.right = cp->width;
|
|
|
|
r.bottom = STATICHEIGHT;
|
2000-10-18 15:36:32 +00:00
|
|
|
cp->ypos += r.bottom + GAPWITHIN;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, stext, sid);
|
|
|
|
|
|
|
|
/* The statics+edits+buttons. */
|
|
|
|
for (j = 0; j < 2; j++) {
|
2001-05-06 14:35:20 +00:00
|
|
|
percent = 10;
|
|
|
|
for (i = 0; i < 4; i++) {
|
|
|
|
xpos = (cp->width + GAPBETWEEN) * percent / 100;
|
|
|
|
r.left = xpos + GAPBETWEEN;
|
|
|
|
percent += percents[i];
|
|
|
|
xpos = (cp->width + GAPBETWEEN) * percent / 100;
|
|
|
|
r.right = xpos - r.left;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.bottom = (i == 0 ? STATICHEIGHT :
|
|
|
|
i == 1 ? EDITHEIGHT : PUSHBTNHEIGHT);
|
|
|
|
r.top += (height - r.bottom) / 2;
|
|
|
|
if (i == 0) {
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0,
|
|
|
|
j == 0 ? e1stext : e2stext, j == 0 ? e1sid : e2sid);
|
|
|
|
} else if (i == 1) {
|
|
|
|
doctl(cp, r, "EDIT",
|
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | ES_AUTOHSCROLL,
|
|
|
|
WS_EX_CLIENTEDGE, "", j == 0 ? e1id : e2id);
|
|
|
|
} else if (i == 3) {
|
|
|
|
doctl(cp, r, "BUTTON",
|
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON,
|
|
|
|
0, j == 0 ? b1text : b2text, j == 0 ? b1id : b2id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cp->ypos += height + GAPWITHIN;
|
2000-10-18 15:36:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* The list box. */
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = GAPBETWEEN;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.right = cp->width;
|
|
|
|
r.bottom = LISTHEIGHT;
|
2000-10-18 15:36:32 +00:00
|
|
|
cp->ypos += r.bottom + GAPBETWEEN;
|
|
|
|
doctl(cp, r, "LISTBOX",
|
2001-05-06 14:35:20 +00:00
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_VSCROLL | LBS_HASSTRINGS
|
|
|
|
| LBS_USETABSTOPS, WS_EX_CLIENTEDGE, "", listid);
|
2000-10-18 15:36:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Yet another special control: the character-class setter. A
|
|
|
|
* static, then a list, then a line containing a
|
|
|
|
* button-and-static-and-edit.
|
|
|
|
*/
|
|
|
|
void charclass(struct ctlpos *cp, char *stext, int sid, int listid,
|
2001-05-06 14:35:20 +00:00
|
|
|
char *btext, int bid, int eid, char *s2text, int s2id)
|
|
|
|
{
|
2000-10-18 15:36:32 +00:00
|
|
|
RECT r;
|
2001-05-06 14:35:20 +00:00
|
|
|
const int height = (STATICHEIGHT > EDITHEIGHT
|
|
|
|
&& STATICHEIGHT >
|
|
|
|
PUSHBTNHEIGHT ? STATICHEIGHT : EDITHEIGHT >
|
|
|
|
PUSHBTNHEIGHT ? EDITHEIGHT : PUSHBTNHEIGHT);
|
2000-10-18 15:36:32 +00:00
|
|
|
const static int percents[] = { 30, 40, 30 };
|
|
|
|
int i, xpos, percent;
|
|
|
|
const int LISTHEIGHT = 66;
|
|
|
|
|
|
|
|
/* The static control. */
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = GAPBETWEEN;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.right = cp->width;
|
|
|
|
r.bottom = STATICHEIGHT;
|
2000-10-18 15:36:32 +00:00
|
|
|
cp->ypos += r.bottom + GAPWITHIN;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, stext, sid);
|
|
|
|
|
|
|
|
/* The list box. */
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = GAPBETWEEN;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.right = cp->width;
|
|
|
|
r.bottom = LISTHEIGHT;
|
2000-10-18 15:36:32 +00:00
|
|
|
cp->ypos += r.bottom + GAPWITHIN;
|
|
|
|
doctl(cp, r, "LISTBOX",
|
2001-05-06 14:35:20 +00:00
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_VSCROLL | LBS_HASSTRINGS
|
|
|
|
| LBS_USETABSTOPS, WS_EX_CLIENTEDGE, "", listid);
|
2000-10-18 15:36:32 +00:00
|
|
|
|
|
|
|
/* The button+static+edit. */
|
|
|
|
percent = xpos = 0;
|
|
|
|
for (i = 0; i < 3; i++) {
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = xpos + GAPBETWEEN;
|
|
|
|
percent += percents[i];
|
|
|
|
xpos = (cp->width + GAPBETWEEN) * percent / 100;
|
|
|
|
r.right = xpos - r.left;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.bottom = (i == 0 ? PUSHBTNHEIGHT :
|
|
|
|
i == 1 ? STATICHEIGHT : EDITHEIGHT);
|
|
|
|
r.top += (height - r.bottom) / 2;
|
|
|
|
if (i == 0) {
|
|
|
|
doctl(cp, r, "BUTTON",
|
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON,
|
|
|
|
0, btext, bid);
|
|
|
|
} else if (i == 1) {
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE | SS_CENTER,
|
|
|
|
0, s2text, s2id);
|
|
|
|
} else if (i == 2) {
|
|
|
|
doctl(cp, r, "EDIT",
|
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | ES_AUTOHSCROLL,
|
|
|
|
WS_EX_CLIENTEDGE, "", eid);
|
|
|
|
}
|
2000-10-18 15:36:32 +00:00
|
|
|
}
|
|
|
|
cp->ypos += height + GAPBETWEEN;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A special control (horrors!). The colour editor. A static line;
|
|
|
|
* then on the left, a list box, and on the right, a sequence of
|
|
|
|
* two-part statics followed by a button.
|
|
|
|
*/
|
|
|
|
void colouredit(struct ctlpos *cp, char *stext, int sid, int listid,
|
2001-05-06 14:35:20 +00:00
|
|
|
char *btext, int bid, ...)
|
|
|
|
{
|
2000-10-18 15:36:32 +00:00
|
|
|
RECT r;
|
|
|
|
int y;
|
|
|
|
va_list ap;
|
|
|
|
int lwid, rwid, rpos;
|
|
|
|
const int LISTHEIGHT = 66;
|
|
|
|
|
|
|
|
/* The static control. */
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = GAPBETWEEN;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.right = cp->width;
|
|
|
|
r.bottom = STATICHEIGHT;
|
2000-10-18 15:36:32 +00:00
|
|
|
cp->ypos += r.bottom + GAPWITHIN;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, stext, sid);
|
2001-05-06 14:35:20 +00:00
|
|
|
|
2000-10-18 15:36:32 +00:00
|
|
|
rpos = GAPBETWEEN + 2 * (cp->width + GAPBETWEEN) / 3;
|
2001-05-06 14:35:20 +00:00
|
|
|
lwid = rpos - 2 * GAPBETWEEN;
|
2000-10-18 15:36:32 +00:00
|
|
|
rwid = cp->width + GAPBETWEEN - rpos;
|
|
|
|
|
|
|
|
/* The list box. */
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = GAPBETWEEN;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.right = lwid;
|
|
|
|
r.bottom = LISTHEIGHT;
|
2000-10-18 15:36:32 +00:00
|
|
|
doctl(cp, r, "LISTBOX",
|
2001-05-06 14:35:20 +00:00
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | WS_VSCROLL | LBS_HASSTRINGS
|
|
|
|
| LBS_USETABSTOPS | LBS_NOTIFY, WS_EX_CLIENTEDGE, "", listid);
|
2000-10-18 15:36:32 +00:00
|
|
|
|
|
|
|
/* The statics. */
|
|
|
|
y = cp->ypos;
|
|
|
|
va_start(ap, bid);
|
|
|
|
while (1) {
|
2001-05-06 14:35:20 +00:00
|
|
|
char *ltext;
|
|
|
|
int lid, rid;
|
|
|
|
ltext = va_arg(ap, char *);
|
|
|
|
if (!ltext)
|
|
|
|
break;
|
|
|
|
lid = va_arg(ap, int);
|
|
|
|
rid = va_arg(ap, int);
|
|
|
|
r.top = y;
|
|
|
|
r.bottom = STATICHEIGHT;
|
|
|
|
y += r.bottom + GAPWITHIN;
|
|
|
|
r.left = rpos;
|
|
|
|
r.right = rwid / 2;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE, 0, ltext, lid);
|
|
|
|
r.left = rpos + r.right;
|
|
|
|
r.right = rwid - r.right;
|
|
|
|
doctl(cp, r, "STATIC", WS_CHILD | WS_VISIBLE | SS_RIGHT, 0, "",
|
|
|
|
rid);
|
2000-10-18 15:36:32 +00:00
|
|
|
}
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
/* The button. */
|
2001-05-06 14:35:20 +00:00
|
|
|
r.top = y + 2 * GAPWITHIN;
|
|
|
|
r.bottom = PUSHBTNHEIGHT;
|
|
|
|
r.left = rpos;
|
|
|
|
r.right = rwid;
|
2000-10-18 15:36:32 +00:00
|
|
|
doctl(cp, r, "BUTTON",
|
2001-05-06 14:35:20 +00:00
|
|
|
WS_CHILD | WS_VISIBLE | WS_TABSTOP | BS_PUSHBUTTON,
|
|
|
|
0, btext, bid);
|
2000-10-18 15:36:32 +00:00
|
|
|
|
|
|
|
cp->ypos += LISTHEIGHT + GAPBETWEEN;
|
|
|
|
}
|
|
|
|
|
2000-10-19 15:43:08 +00:00
|
|
|
/*
|
|
|
|
* A progress bar (from Common Controls). We like our progress bars
|
|
|
|
* to be smooth and unbroken, without those ugly divisions; some
|
|
|
|
* older compilers may not support that, but that's life.
|
|
|
|
*/
|
2001-05-06 14:35:20 +00:00
|
|
|
void progressbar(struct ctlpos *cp, int id)
|
|
|
|
{
|
2000-10-19 15:43:08 +00:00
|
|
|
RECT r;
|
|
|
|
|
2001-05-06 14:35:20 +00:00
|
|
|
r.left = GAPBETWEEN;
|
|
|
|
r.top = cp->ypos;
|
|
|
|
r.right = cp->width;
|
|
|
|
r.bottom = PROGBARHEIGHT;
|
2000-10-19 15:43:08 +00:00
|
|
|
cp->ypos += r.bottom + GAPBETWEEN;
|
|
|
|
|
2001-05-06 14:35:20 +00:00
|
|
|
doctl(cp, r, PROGRESS_CLASS, WS_CHILD | WS_VISIBLE
|
2000-10-19 15:43:08 +00:00
|
|
|
#ifdef PBS_SMOOTH
|
2001-05-06 14:35:20 +00:00
|
|
|
| PBS_SMOOTH
|
2000-10-19 15:43:08 +00:00
|
|
|
#endif
|
2001-05-06 14:35:20 +00:00
|
|
|
, WS_EX_CLIENTEDGE, "", id);
|
2000-10-19 15:43:08 +00:00
|
|
|
}
|