forked from e16/e16
1
0
Fork 0

Save some code bytes in tclass parser. Cosmetics.

SVN revision: 41509
This commit is contained in:
Kim Woelders 2009-07-27 16:46:50 +00:00
parent e548e23db1
commit 8ae039e08e
1 changed files with 90 additions and 113 deletions

View File

@ -1,6 +1,6 @@
/* /*
* Copyright (C) 2000-2007 Carsten Haitzler, Geoff Harrison and various contributors * Copyright (C) 2000-2007 Carsten Haitzler, Geoff Harrison and various contributors
* Copyright (C) 2004-2008 Kim Woelders * Copyright (C) 2004-2009 Kim Woelders
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy * Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to * of this software and associated documentation files (the "Software"), to
@ -170,48 +170,33 @@ TextclassSetJustification(TextClass * tc, int just)
tc->justification = just; tc->justification = just;
} }
#define TSTATE_SET_STATE(which, fallback) \
if (!tc->which) tc->which = tc->fallback;
static void static void
TextclassPopulate(TextClass * tclass) TextclassPopulate(TextClass * tc)
{ {
if (!tclass) if (!tc || !tc->norm.normal)
return; return;
if (!tclass->norm.normal) TSTATE_SET_STATE(norm.hilited, norm.normal);
return; TSTATE_SET_STATE(norm.clicked, norm.normal);
TSTATE_SET_STATE(norm.disabled, norm.normal);
if (!tclass->norm.hilited) TSTATE_SET_STATE(active.normal, norm.normal);
tclass->norm.hilited = tclass->norm.normal; TSTATE_SET_STATE(active.hilited, active.normal);
if (!tclass->norm.clicked) TSTATE_SET_STATE(active.clicked, active.normal);
tclass->norm.clicked = tclass->norm.normal; TSTATE_SET_STATE(active.disabled, active.normal);
if (!tclass->norm.disabled)
tclass->norm.disabled = tclass->norm.normal;
if (!tclass->active.normal) TSTATE_SET_STATE(sticky.normal, norm.normal);
tclass->active.normal = tclass->norm.normal; TSTATE_SET_STATE(sticky.hilited, sticky.normal);
if (!tclass->active.hilited) TSTATE_SET_STATE(sticky.clicked, sticky.normal);
tclass->active.hilited = tclass->active.normal; TSTATE_SET_STATE(sticky.disabled, sticky.normal);
if (!tclass->active.clicked)
tclass->active.clicked = tclass->active.normal;
if (!tclass->active.disabled)
tclass->active.disabled = tclass->active.normal;
if (!tclass->sticky.normal) TSTATE_SET_STATE(sticky_active.normal, norm.normal);
tclass->sticky.normal = tclass->norm.normal; TSTATE_SET_STATE(sticky_active.hilited, sticky_active.normal);
if (!tclass->sticky.hilited) TSTATE_SET_STATE(sticky_active.clicked, sticky_active.normal);
tclass->sticky.hilited = tclass->sticky.normal; TSTATE_SET_STATE(sticky_active.disabled, sticky_active.normal);
if (!tclass->sticky.clicked)
tclass->sticky.clicked = tclass->sticky.normal;
if (!tclass->sticky.disabled)
tclass->sticky.disabled = tclass->sticky.normal;
if (!tclass->sticky_active.normal)
tclass->sticky_active.normal = tclass->norm.normal;
if (!tclass->sticky_active.hilited)
tclass->sticky_active.hilited = tclass->sticky_active.normal;
if (!tclass->sticky_active.clicked)
tclass->sticky_active.clicked = tclass->sticky_active.normal;
if (!tclass->sticky_active.disabled)
tclass->sticky_active.disabled = tclass->sticky_active.normal;
} }
static int static int
@ -250,6 +235,8 @@ TextclassConfigLoad(FILE * fs)
while (GetLine(s, sizeof(s), fs)) while (GetLine(s, sizeof(s), fs))
{ {
i1 = ConfigParseline1(s, s2, NULL, NULL); i1 = ConfigParseline1(s, s2, NULL, NULL);
/* tc not needed */
switch (i1) switch (i1)
{ {
case CONFIG_CLOSE: case CONFIG_CLOSE:
@ -262,107 +249,97 @@ TextclassConfigLoad(FILE * fs)
goto done; goto done;
} }
tc = TextclassCreate(s2); tc = TextclassCreate(s2);
break; continue;
case TEXT_ORIENTATION: }
if (ts)
ts->style.orientation = atoi(s2); /* tc needed */
break; if (!tc)
break;
switch (i1)
{
case TEXT_JUSTIFICATION: case TEXT_JUSTIFICATION:
if (tc) tc->justification = atoi(s2);
tc->justification = atoi(s2); continue;
break;
case CONFIG_DESKTOP: case CONFIG_DESKTOP:
case ICLASS_NORMAL: case ICLASS_NORMAL:
if (tc) tc->norm.normal = ts = TextstateCreate(s2);
tc->norm.normal = ts = TextstateCreate(s2); continue;
break;
case ICLASS_CLICKED: case ICLASS_CLICKED:
if (tc) tc->norm.clicked = ts = TextstateCreate(s2);
tc->norm.clicked = ts = TextstateCreate(s2); continue;
break;
case ICLASS_HILITED: case ICLASS_HILITED:
if (tc) tc->norm.hilited = ts = TextstateCreate(s2);
tc->norm.hilited = ts = TextstateCreate(s2); continue;
break;
case ICLASS_DISABLED: case ICLASS_DISABLED:
if (tc) tc->norm.disabled = ts = TextstateCreate(s2);
tc->norm.disabled = ts = TextstateCreate(s2); continue;
break;
case ICLASS_STICKY_NORMAL: case ICLASS_STICKY_NORMAL:
if (tc) tc->sticky.normal = ts = TextstateCreate(s2);
tc->sticky.normal = ts = TextstateCreate(s2); continue;
break;
case ICLASS_STICKY_CLICKED: case ICLASS_STICKY_CLICKED:
if (tc) tc->sticky.clicked = ts = TextstateCreate(s2);
tc->sticky.clicked = ts = TextstateCreate(s2); continue;
break;
case ICLASS_STICKY_HILITED: case ICLASS_STICKY_HILITED:
if (tc) tc->sticky.hilited = ts = TextstateCreate(s2);
tc->sticky.hilited = ts = TextstateCreate(s2); continue;
break;
case ICLASS_STICKY_DISABLED: case ICLASS_STICKY_DISABLED:
if (tc) tc->sticky.disabled = ts = TextstateCreate(s2);
tc->sticky.disabled = ts = TextstateCreate(s2); continue;
break;
case ICLASS_ACTIVE_NORMAL: case ICLASS_ACTIVE_NORMAL:
if (tc) tc->active.normal = ts = TextstateCreate(s2);
tc->active.normal = ts = TextstateCreate(s2); continue;
break;
case ICLASS_ACTIVE_CLICKED: case ICLASS_ACTIVE_CLICKED:
if (tc) tc->active.clicked = ts = TextstateCreate(s2);
tc->active.clicked = ts = TextstateCreate(s2); continue;
break;
case ICLASS_ACTIVE_HILITED: case ICLASS_ACTIVE_HILITED:
if (tc) tc->active.hilited = ts = TextstateCreate(s2);
tc->active.hilited = ts = TextstateCreate(s2); continue;
break;
case ICLASS_ACTIVE_DISABLED: case ICLASS_ACTIVE_DISABLED:
if (tc) tc->active.disabled = ts = TextstateCreate(s2);
tc->active.disabled = ts = TextstateCreate(s2); continue;
break;
case ICLASS_STICKY_ACTIVE_NORMAL: case ICLASS_STICKY_ACTIVE_NORMAL:
if (tc) tc->sticky_active.normal = ts = TextstateCreate(s2);
tc->sticky_active.normal = ts = TextstateCreate(s2); continue;
break;
case ICLASS_STICKY_ACTIVE_CLICKED: case ICLASS_STICKY_ACTIVE_CLICKED:
if (tc) tc->sticky_active.clicked = ts = TextstateCreate(s2);
tc->sticky_active.clicked = ts = TextstateCreate(s2); continue;
break;
case ICLASS_STICKY_ACTIVE_HILITED: case ICLASS_STICKY_ACTIVE_HILITED:
if (tc) tc->sticky_active.hilited = ts = TextstateCreate(s2);
tc->sticky_active.hilited = ts = TextstateCreate(s2); continue;
break;
case ICLASS_STICKY_ACTIVE_DISABLED: case ICLASS_STICKY_ACTIVE_DISABLED:
if (tc) tc->sticky_active.disabled = ts = TextstateCreate(s2);
tc->sticky_active.disabled = ts = TextstateCreate(s2); continue;
break; }
/* ts needed */
if (!ts)
break;
switch (i1)
{
case TEXT_ORIENTATION:
ts->style.orientation = atoi(s2);
continue;
case TEXT_MODE: case TEXT_MODE:
if (ts) ts->style.mode = atoi(s2);
ts->style.mode = atoi(s2); continue;
break;
case TEXT_EFFECT: case TEXT_EFFECT:
if (ts) ts->style.effect = atoi(s2);
ts->style.effect = atoi(s2); continue;
break;
case TEXT_FG_COL: case TEXT_FG_COL:
if (ts) r = g = b = 0;
{ sscanf(s, "%*s %i %i %i", &r, &g, &b);
r = g = b = 0; SET_COLOR(&ts->fg_col, r, g, b);
sscanf(s, "%*s %i %i %i", &r, &g, &b); continue;
SET_COLOR(&ts->fg_col, r, g, b);
}
break;
case TEXT_BG_COL: case TEXT_BG_COL:
if (ts) r = g = b = 0;
{ sscanf(s, "%*s %i %i %i", &r, &g, &b);
r = g = b = 0; SET_COLOR(&ts->bg_col, r, g, b);
sscanf(s, "%*s %i %i %i", &r, &g, &b); continue;
SET_COLOR(&ts->bg_col, r, g, b);
}
break;
default: default:
ConfigParseError("TextClass", s); ConfigParseError("TextClass", s);
break; continue;
} }
} }
err = -1; err = -1;