progressbar: cosmetic

Signed-off-by: Julien Danjou <julien@danjou.info>
This commit is contained in:
marco candrian 2008-07-02 12:25:51 +02:00 committed by Julien Danjou
parent 46ea7c45aa
commit 3074c3fdf4
1 changed files with 8 additions and 8 deletions

View File

@ -45,9 +45,9 @@ struct bar_t
/** Foreground color of turned-off ticks */ /** Foreground color of turned-off ticks */
xcolor_t fg_off; xcolor_t fg_off;
/** Foreground color when bar is half-full */ /** Foreground color when bar is half-full */
xcolor_t pfg_center; xcolor_t fg_center;
/** Foreground color when bar is full */ /** Foreground color when bar is full */
xcolor_t pfg_end; xcolor_t fg_end;
/** Background color */ /** Background color */
xcolor_t bg; xcolor_t bg;
/** Border color */ /** Border color */
@ -261,7 +261,7 @@ progressbar_draw(draw_context_t *ctx,
draw_rectangle(ctx, rectangle, 1.0, true, &bar->fg_off); draw_rectangle(ctx, rectangle, 1.0, true, &bar->fg_off);
else else
draw_rectangle_gradient(ctx, rectangle, 1.0, true, pattern_rect, draw_rectangle_gradient(ctx, rectangle, 1.0, true, pattern_rect,
&bar->fg, &bar->pfg_center, &bar->pfg_end); &bar->fg, &bar->fg_center, &bar->fg_end);
} }
/* top part */ /* top part */
@ -275,7 +275,7 @@ progressbar_draw(draw_context_t *ctx,
/* bg color */ /* bg color */
if(bar->reverse) if(bar->reverse)
draw_rectangle_gradient(ctx, rectangle, 1.0, true, pattern_rect, draw_rectangle_gradient(ctx, rectangle, 1.0, true, pattern_rect,
&bar->fg, &bar->pfg_center, &bar->pfg_end); &bar->fg, &bar->fg_center, &bar->fg_end);
else else
draw_rectangle(ctx, rectangle, 1.0, true, &bar->fg_off); draw_rectangle(ctx, rectangle, 1.0, true, &bar->fg_off);
} }
@ -359,7 +359,7 @@ progressbar_draw(draw_context_t *ctx,
draw_rectangle(ctx, rectangle, 1.0, true, &bar->fg_off); draw_rectangle(ctx, rectangle, 1.0, true, &bar->fg_off);
else else
draw_rectangle_gradient(ctx, rectangle, 1.0, true, pattern_rect, draw_rectangle_gradient(ctx, rectangle, 1.0, true, pattern_rect,
&bar->fg, &bar->pfg_center, &bar->pfg_end); &bar->fg, &bar->fg_center, &bar->fg_end);
} }
/* right part */ /* right part */
@ -373,7 +373,7 @@ progressbar_draw(draw_context_t *ctx,
/* bg color */ /* bg color */
if(bar->reverse) if(bar->reverse)
draw_rectangle_gradient(ctx, rectangle, 1.0, true, pattern_rect, draw_rectangle_gradient(ctx, rectangle, 1.0, true, pattern_rect,
&bar->fg, &bar->pfg_center, &bar->pfg_end); &bar->fg, &bar->fg_center, &bar->fg_end);
else else
draw_rectangle(ctx, rectangle, 1.0, true, &bar->fg_off); draw_rectangle(ctx, rectangle, 1.0, true, &bar->fg_off);
} }
@ -450,13 +450,13 @@ luaA_progressbar_bar_properties_set(lua_State *L)
if((buf = luaA_getopt_string(L, 3, "fg_center", NULL))) if((buf = luaA_getopt_string(L, 3, "fg_center", NULL)))
{ {
xcolor_init(&bar->pfg_center, globalconf.connection, xcolor_init(&bar->fg_center, globalconf.connection,
globalconf.default_screen, buf); globalconf.default_screen, buf);
} }
if((buf = luaA_getopt_string(L, 3, "fg_end", NULL))) if((buf = luaA_getopt_string(L, 3, "fg_end", NULL)))
{ {
xcolor_init(&bar->pfg_end, globalconf.connection, xcolor_init(&bar->fg_end, globalconf.connection,
globalconf.default_screen, buf); globalconf.default_screen, buf);
} }