Thu Sep 23 15:34:31 PDT 1999

(KainX)

Did I leave that debugging printf() in there?  Surely not!


SVN revision: 385
This commit is contained in:
Michael Jennings 1999-09-23 21:46:48 +00:00
parent 73487b0094
commit 964ca065c6
4 changed files with 54 additions and 4 deletions

View File

@ -2301,3 +2301,10 @@ Thu Sep 23 14:57:35 PDT 1999
(Raster)
get the end of comment thing right :)
-------------------------------------------------------------------------------
Thu Sep 23 15:34:31 PDT 1999
(KainX)
Did I leave that debugging printf() in there? Surely not!

View File

@ -839,7 +839,7 @@ IclassApplyCopy(ImageClass * iclass, Window win, int w, int h, int active,
{
ImageState *is;
EDBUG(4, "IclassApply");
EDBUG(4, "IclassApplyCopy");
if ((!iclass) || (!win) || (w < 1) || (h < 1) || (!pret))
EDBUG_RETURN_;

View File

@ -1500,9 +1500,52 @@ IPC_ImageClass(char *params, Client * c)
w = (int)strtol(atword(winptr, 2), (char **)NULL, 0);
h = (int)strtol(hptr, (char **)NULL, 0);
}
printf("IclassApply(0x%08x, 0x%08x, %d, %d, 0, 0, %d, 0);\n",
iclass, win, w, h, st);
IclassApply(iclass, win, w, h, 0, 0, st, 0);
Esnprintf(buf, sizeof(buf), "imageclass apply done.\n");
}
}
else if (!strcmp(param2, "apply_copy"))
{
ImageClass *iclass;
Pixmap pmap = 0, mask = 0;
iclass = (ImageClass *) FindItem(param1, 0, LIST_FINDBY_NAME, LIST_TYPE_ICLASS);
if (iclass)
{
Window win;
char *winptr, *hptr, state[20];
int st, w = -1, h = -1;
winptr = atword(params, 3);
word(params, 4, state);
win = (Window) strtol(winptr, (char **)NULL, 0);
if (!strcmp(state, "hilited"))
{
st = STATE_HILITED;
}
else if (!strcmp(state, "clicked"))
{
st = STATE_CLICKED;
}
else if (!strcmp(state, "disabled"))
{
st = STATE_DISABLED;
}
else
{
st = STATE_NORMAL;
}
if (!(hptr = atword(winptr, 3)))
{
Esnprintf(buf, sizeof(buf), "Error: missing width and/or height\n");
}
else
{
w = (int)strtol(atword(winptr, 2), (char **)NULL, 0);
h = (int)strtol(hptr, (char **)NULL, 0);
IclassApplyCopy(iclass, win, w, h, 0, 0, st, &pmap, &mask);
Esnprintf(buf, sizeof(buf), "0x%08x 0x%08x\n", pmap, mask);
}
}
}
else if (!strcmp(param2, "ref_count"))

View File

@ -326,7 +326,7 @@ main(int argc, char **argv)
"their theme so it does not require Color Modifiers.\n"
"\n"
"It is unfortunate this has to be done but we cannot devote\n"
"any mroe time and resources to this problem that can be\n"
"any more time and resources to this problem that can be\n"
"worked around by pre-generating modified images instead of\n"
"using Color Modifiers.\n"
);