add support for x,y coords supplying in widgets
This commit is contained in:
parent
6ca7d7b2db
commit
a4c09d142c
14
config.c
14
config.c
|
@ -514,16 +514,22 @@ config_parse(const char *confpatharg)
|
||||||
};
|
};
|
||||||
static cfg_opt_t widget_opts[] =
|
static cfg_opt_t widget_opts[] =
|
||||||
{
|
{
|
||||||
|
CFG_INT((char *) "x", -1, CFGF_NONE),
|
||||||
|
CFG_INT((char *) "y", -1, CFGF_NONE),
|
||||||
CFG_SEC((char *) "mouse", mouse_generic_opts, CFGF_MULTI),
|
CFG_SEC((char *) "mouse", mouse_generic_opts, CFGF_MULTI),
|
||||||
CFG_END()
|
CFG_END()
|
||||||
};
|
};
|
||||||
static cfg_opt_t widget_taglist_opts[] =
|
static cfg_opt_t widget_taglist_opts[] =
|
||||||
{
|
{
|
||||||
|
CFG_INT((char *) "x", -1, CFGF_NONE),
|
||||||
|
CFG_INT((char *) "y", -1, CFGF_NONE),
|
||||||
CFG_SEC((char *) "mouse", mouse_taglist_opts, CFGF_MULTI),
|
CFG_SEC((char *) "mouse", mouse_taglist_opts, CFGF_MULTI),
|
||||||
CFG_END()
|
CFG_END()
|
||||||
};
|
};
|
||||||
static cfg_opt_t widget_iconbox_opts[] =
|
static cfg_opt_t widget_iconbox_opts[] =
|
||||||
{
|
{
|
||||||
|
CFG_INT((char *) "x", -1, CFGF_NONE),
|
||||||
|
CFG_INT((char *) "y", -1, CFGF_NONE),
|
||||||
CFG_SEC((char *) "mouse", mouse_generic_opts, CFGF_MULTI),
|
CFG_SEC((char *) "mouse", mouse_generic_opts, CFGF_MULTI),
|
||||||
CFG_STR((char *) "image", (char *) NULL, CFGF_NONE),
|
CFG_STR((char *) "image", (char *) NULL, CFGF_NONE),
|
||||||
CFG_BOOL((char *) "resize", cfg_true, CFGF_NONE),
|
CFG_BOOL((char *) "resize", cfg_true, CFGF_NONE),
|
||||||
|
@ -531,6 +537,8 @@ config_parse(const char *confpatharg)
|
||||||
};
|
};
|
||||||
static cfg_opt_t widget_textbox_opts[] =
|
static cfg_opt_t widget_textbox_opts[] =
|
||||||
{
|
{
|
||||||
|
CFG_INT((char *) "x", -1, CFGF_NONE),
|
||||||
|
CFG_INT((char *) "y", -1, CFGF_NONE),
|
||||||
CFG_SEC((char *) "mouse", mouse_generic_opts, CFGF_MULTI),
|
CFG_SEC((char *) "mouse", mouse_generic_opts, CFGF_MULTI),
|
||||||
CFG_INT((char *) "width", 0, CFGF_NONE),
|
CFG_INT((char *) "width", 0, CFGF_NONE),
|
||||||
CFG_STR((char *) "text", (char *) NULL, CFGF_NONE),
|
CFG_STR((char *) "text", (char *) NULL, CFGF_NONE),
|
||||||
|
@ -542,6 +550,8 @@ config_parse(const char *confpatharg)
|
||||||
};
|
};
|
||||||
static cfg_opt_t widget_focustitle_opts[] =
|
static cfg_opt_t widget_focustitle_opts[] =
|
||||||
{
|
{
|
||||||
|
CFG_INT((char *) "x", -1, CFGF_NONE),
|
||||||
|
CFG_INT((char *) "y", -1, CFGF_NONE),
|
||||||
CFG_SEC((char *) "mouse", mouse_generic_opts, CFGF_MULTI),
|
CFG_SEC((char *) "mouse", mouse_generic_opts, CFGF_MULTI),
|
||||||
CFG_STR((char *) "fg", (char *) NULL, CFGF_NONE),
|
CFG_STR((char *) "fg", (char *) NULL, CFGF_NONE),
|
||||||
CFG_STR((char *) "bg", (char *) NULL, CFGF_NONE),
|
CFG_STR((char *) "bg", (char *) NULL, CFGF_NONE),
|
||||||
|
@ -551,6 +561,8 @@ config_parse(const char *confpatharg)
|
||||||
};
|
};
|
||||||
static cfg_opt_t widget_tasklist_opts[] =
|
static cfg_opt_t widget_tasklist_opts[] =
|
||||||
{
|
{
|
||||||
|
CFG_INT((char *) "x", -1, CFGF_NONE),
|
||||||
|
CFG_INT((char *) "y", -1, CFGF_NONE),
|
||||||
CFG_SEC((char *) "mouse", mouse_generic_opts, CFGF_MULTI),
|
CFG_SEC((char *) "mouse", mouse_generic_opts, CFGF_MULTI),
|
||||||
CFG_STR((char *) "fg", (char *) NULL, CFGF_NONE),
|
CFG_STR((char *) "fg", (char *) NULL, CFGF_NONE),
|
||||||
CFG_STR((char *) "bg", (char *) NULL, CFGF_NONE),
|
CFG_STR((char *) "bg", (char *) NULL, CFGF_NONE),
|
||||||
|
@ -569,6 +581,8 @@ config_parse(const char *confpatharg)
|
||||||
};
|
};
|
||||||
static cfg_opt_t widget_progressbar_opts[] =
|
static cfg_opt_t widget_progressbar_opts[] =
|
||||||
{
|
{
|
||||||
|
CFG_INT((char *) "x", -1, CFGF_NONE),
|
||||||
|
CFG_INT((char *) "y", -1, CFGF_NONE),
|
||||||
CFG_SEC((char *) "mouse", mouse_generic_opts, CFGF_MULTI),
|
CFG_SEC((char *) "mouse", mouse_generic_opts, CFGF_MULTI),
|
||||||
CFG_SEC((char *) "bar", widget_progressbar_bar_opts, CFGF_MULTI),
|
CFG_SEC((char *) "bar", widget_progressbar_bar_opts, CFGF_MULTI),
|
||||||
CFG_INT((char *) "width", 100, CFGF_NONE),
|
CFG_INT((char *) "width", 100, CFGF_NONE),
|
||||||
|
|
2
widget.c
2
widget.c
|
@ -115,6 +115,8 @@ widget_common_new(Widget *widget, Statusbar *statusbar, cfg_t* config)
|
||||||
widget->name = a_strdup(name);
|
widget->name = a_strdup(name);
|
||||||
widget->tell = widget_common_tell;
|
widget->tell = widget_common_tell;
|
||||||
widget->button_press = widget_common_button_press;
|
widget->button_press = widget_common_button_press;
|
||||||
|
widget->area.x = cfg_getint(config, "x");
|
||||||
|
widget->area.y = cfg_getint(config, "y");
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Send command to widget
|
/** Send command to widget
|
||||||
|
|
|
@ -44,26 +44,30 @@ focustitle_draw(Widget *widget, DrawCtx *ctx, int offset, int used)
|
||||||
Data *d = widget->data;
|
Data *d = widget->data;
|
||||||
Client *sel = focus_get_current_client(widget->statusbar->screen);
|
Client *sel = focus_get_current_client(widget->statusbar->screen);
|
||||||
|
|
||||||
widget->area.x = widget_calculate_offset(widget->statusbar->width,
|
if(widget->area.x < 0)
|
||||||
0,
|
widget->area.x = widget_calculate_offset(widget->statusbar->width,
|
||||||
offset,
|
0,
|
||||||
widget->alignment);
|
offset,
|
||||||
|
widget->alignment);
|
||||||
|
|
||||||
|
if(widget->area.y < 0)
|
||||||
|
widget->area.y = 0;
|
||||||
|
|
||||||
if(sel)
|
if(sel)
|
||||||
{
|
{
|
||||||
draw_text(ctx, widget->area.x, 0,
|
draw_text(ctx, widget->area.x, widget->area.y,
|
||||||
widget->statusbar->width - used,
|
widget->statusbar->width - used,
|
||||||
widget->statusbar->height,
|
widget->statusbar->height,
|
||||||
d->align,
|
d->align,
|
||||||
widget->font->height / 2, widget->font, sel->name,
|
widget->font->height / 2, widget->font, sel->name,
|
||||||
d->fg, d->bg);
|
d->fg, d->bg);
|
||||||
if(sel->isfloating)
|
if(sel->isfloating)
|
||||||
draw_circle(ctx, widget->area.x, 0,
|
draw_circle(ctx, widget->area.x, widget->area.y,
|
||||||
(widget->font->height + 2) / 4,
|
(widget->font->height + 2) / 4,
|
||||||
sel->ismax, d->fg);
|
sel->ismax, d->fg);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
draw_rectangle(ctx, widget->area.x, 0,
|
draw_rectangle(ctx, widget->area.x, widget->area.y,
|
||||||
widget->statusbar->width - used, widget->statusbar->height, True, d->bg);
|
widget->statusbar->width - used, widget->statusbar->height, True, d->bg);
|
||||||
|
|
||||||
widget->area.width = widget->statusbar->width - used;
|
widget->area.width = widget->statusbar->width - used;
|
||||||
|
|
|
@ -42,12 +42,17 @@ iconbox_draw(Widget *widget, DrawCtx *ctx, int offset,
|
||||||
else
|
else
|
||||||
widget->area.width = area.width;
|
widget->area.width = area.width;
|
||||||
|
|
||||||
widget->area.x = widget_calculate_offset(widget->statusbar->width,
|
if(widget->area.x < 0)
|
||||||
widget->area.width,
|
widget->area.x = widget_calculate_offset(widget->statusbar->width,
|
||||||
offset,
|
widget->area.width,
|
||||||
widget->alignment);
|
offset,
|
||||||
|
widget->alignment);
|
||||||
|
|
||||||
draw_image(ctx, widget->area.x, 0, d->resize ? widget->statusbar->height : 0, d->image);
|
if(widget->area.y < 0)
|
||||||
|
widget->area.y = 0;
|
||||||
|
|
||||||
|
draw_image(ctx, widget->area.x, widget->area.y,
|
||||||
|
d->resize ? widget->statusbar->height : 0, d->image);
|
||||||
|
|
||||||
return widget->area.width;
|
return widget->area.width;
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,14 +34,20 @@ layoutinfo_draw(Widget *widget,
|
||||||
int used __attribute__ ((unused)))
|
int used __attribute__ ((unused)))
|
||||||
{
|
{
|
||||||
Tag **curtags = get_current_tags(widget->statusbar->screen);
|
Tag **curtags = get_current_tags(widget->statusbar->screen);
|
||||||
widget->area.x = widget_calculate_offset(widget->statusbar->width,
|
|
||||||
widget->statusbar->height,
|
if(widget->area.x < 0)
|
||||||
offset,
|
widget->area.x = widget_calculate_offset(widget->statusbar->width,
|
||||||
widget->alignment);
|
widget->statusbar->height,
|
||||||
|
offset,
|
||||||
|
widget->alignment);
|
||||||
|
|
||||||
|
if(widget->area.y < 0)
|
||||||
|
widget->area.y = 0;
|
||||||
|
|
||||||
widget->area.width = widget->statusbar->height;
|
widget->area.width = widget->statusbar->height;
|
||||||
|
|
||||||
draw_image(ctx, widget->area.x, 0, widget->statusbar->height,
|
draw_image(ctx, widget->area.x, widget->area.y,
|
||||||
|
widget->statusbar->height,
|
||||||
curtags[0]->layout->image);
|
curtags[0]->layout->image);
|
||||||
|
|
||||||
p_delete(&curtags);
|
p_delete(&curtags);
|
||||||
|
|
|
@ -51,11 +51,16 @@ netwmicon_draw(Widget *widget, DrawCtx *ctx, int offset,
|
||||||
area = draw_get_image_size(r->icon);
|
area = draw_get_image_size(r->icon);
|
||||||
widget->area.width = ((double) widget->statusbar->height / (double) area.height)
|
widget->area.width = ((double) widget->statusbar->height / (double) area.height)
|
||||||
* area.width;
|
* area.width;
|
||||||
widget->area.x = widget_calculate_offset(widget->statusbar->width,
|
if(widget->area.x < 0)
|
||||||
widget->area.width,
|
widget->area.x = widget_calculate_offset(widget->statusbar->width,
|
||||||
offset,
|
widget->area.width,
|
||||||
widget->alignment);
|
offset,
|
||||||
draw_image(ctx, widget->area.x, 0, widget->statusbar->height, r->icon);
|
widget->alignment);
|
||||||
|
|
||||||
|
if(widget->area.y < 0)
|
||||||
|
widget->area.y = 0;
|
||||||
|
draw_image(ctx, widget->area.x, widget->area.y,
|
||||||
|
widget->statusbar->height, r->icon);
|
||||||
|
|
||||||
return widget->area.width;
|
return widget->area.width;
|
||||||
}
|
}
|
||||||
|
@ -69,13 +74,17 @@ netwmicon_draw(Widget *widget, DrawCtx *ctx, int offset,
|
||||||
|
|
||||||
widget->area.width = ((double) widget->statusbar->height / (double) icon->height) * icon->width;
|
widget->area.width = ((double) widget->statusbar->height / (double) icon->height) * icon->width;
|
||||||
|
|
||||||
widget->area.x = widget_calculate_offset(widget->statusbar->width,
|
if(widget->area.x < 0)
|
||||||
widget->area.width,
|
widget->area.x = widget_calculate_offset(widget->statusbar->width,
|
||||||
offset,
|
widget->area.width,
|
||||||
widget->alignment);
|
offset,
|
||||||
|
widget->alignment);
|
||||||
|
|
||||||
|
if(widget->area.y < 0)
|
||||||
|
widget->area.y = 0;
|
||||||
|
|
||||||
draw_image_from_argb_data(ctx,
|
draw_image_from_argb_data(ctx,
|
||||||
widget->area.x, 0,
|
widget->area.x, widget->area.y,
|
||||||
icon->width, icon->height,
|
icon->width, icon->height,
|
||||||
widget->statusbar->height, icon->image);
|
widget->statusbar->height, icon->image);
|
||||||
|
|
||||||
|
|
|
@ -61,19 +61,22 @@ progressbar_draw(Widget *widget, DrawCtx *ctx, int offset,
|
||||||
if (!(d->bars))
|
if (!(d->bars))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
margin_top = (int) (widget->statusbar->height * (1 - d->height)) / 2 + 0.5;
|
|
||||||
pb_height = (int) (widget->statusbar->height * d->height - (d->gap * (d->bars - 1))) / d->bars + 0.5;
|
|
||||||
|
|
||||||
width = d->width - d->lpadding;
|
width = d->width - d->lpadding;
|
||||||
|
|
||||||
widget->area.x = widget_calculate_offset(widget->statusbar->width,
|
if(widget->area.x < 0)
|
||||||
d->width,
|
widget->area.x = widget_calculate_offset(widget->statusbar->width,
|
||||||
offset,
|
d->width,
|
||||||
widget->alignment);
|
offset,
|
||||||
|
widget->alignment);
|
||||||
|
|
||||||
|
if(widget->area.y < 0)
|
||||||
|
widget->area.y = 0;
|
||||||
|
|
||||||
|
margin_top = (int) (widget->statusbar->height * (1 - d->height)) / 2 + 0.5 + widget->area.y;
|
||||||
|
pb_height = (int) (widget->statusbar->height * d->height - (d->gap * (d->bars - 1))) / d->bars + 0.5;
|
||||||
left_offset = widget->area.x + d->lpadding;
|
left_offset = widget->area.x + d->lpadding;
|
||||||
|
|
||||||
for (i = 0; i < d->bars; i++)
|
for(i = 0; i < d->bars; i++)
|
||||||
{
|
{
|
||||||
pwidth = (int) d->percent[i] ? ((width - 2) * d->percent[i]) / 100 : 0;
|
pwidth = (int) d->percent[i] ? ((width - 2) * d->percent[i]) / 100 : 0;
|
||||||
|
|
||||||
|
|
|
@ -75,10 +75,14 @@ taglist_draw(Widget *widget,
|
||||||
for(tag = vscreen.tags; tag; tag = tag->next)
|
for(tag = vscreen.tags; tag; tag = tag->next)
|
||||||
widget->area.width += textwidth(vscreen.font, tag->name) + vscreen.font->height;
|
widget->area.width += textwidth(vscreen.font, tag->name) + vscreen.font->height;
|
||||||
|
|
||||||
widget->area.x = widget_calculate_offset(widget->statusbar->width,
|
if(widget->area.x < 0)
|
||||||
widget->area.width,
|
widget->area.x = widget_calculate_offset(widget->statusbar->width,
|
||||||
offset,
|
widget->area.width,
|
||||||
widget->alignment);
|
offset,
|
||||||
|
widget->alignment);
|
||||||
|
|
||||||
|
if(widget->area.y < 0)
|
||||||
|
widget->area.y = 0;
|
||||||
|
|
||||||
widget->area.width = 0;
|
widget->area.width = 0;
|
||||||
for(tag = vscreen.tags; tag; tag = tag->next)
|
for(tag = vscreen.tags; tag; tag = tag->next)
|
||||||
|
@ -91,7 +95,7 @@ taglist_draw(Widget *widget,
|
||||||
else
|
else
|
||||||
colors = vscreen.colors_normal;
|
colors = vscreen.colors_normal;
|
||||||
draw_text(ctx,
|
draw_text(ctx,
|
||||||
widget->area.x + widget->area.width, 0,
|
widget->area.x + widget->area.width, widget->area.y,
|
||||||
w, widget->statusbar->height,
|
w, widget->statusbar->height,
|
||||||
AlignCenter,
|
AlignCenter,
|
||||||
vscreen.font->height / 2,
|
vscreen.font->height / 2,
|
||||||
|
@ -100,7 +104,9 @@ taglist_draw(Widget *widget,
|
||||||
colors[ColFG],
|
colors[ColFG],
|
||||||
colors[ColBG]);
|
colors[ColBG]);
|
||||||
if(isoccupied(tag))
|
if(isoccupied(tag))
|
||||||
draw_rectangle(ctx, widget->area.x + widget->area.width, 0, flagsize, flagsize,
|
draw_rectangle(ctx,
|
||||||
|
widget->area.x + widget->area.width, widget->area.y,
|
||||||
|
flagsize, flagsize,
|
||||||
sel && is_client_tagged(sel, tag), colors[ColFG]);
|
sel && is_client_tagged(sel, tag), colors[ColFG]);
|
||||||
widget->area.width += w;
|
widget->area.width += w;
|
||||||
}
|
}
|
||||||
|
|
|
@ -67,10 +67,14 @@ tasklist_draw(Widget *widget, DrawCtx *ctx, int offset, int used)
|
||||||
|
|
||||||
box_width = (widget->statusbar->width - used) / n;
|
box_width = (widget->statusbar->width - used) / n;
|
||||||
|
|
||||||
widget->area.x = widget_calculate_offset(widget->statusbar->width,
|
if(widget->area.x < 0)
|
||||||
0,
|
widget->area.x = widget_calculate_offset(widget->statusbar->width,
|
||||||
offset,
|
0,
|
||||||
widget->alignment);
|
offset,
|
||||||
|
widget->alignment);
|
||||||
|
|
||||||
|
if(widget->area.y < 0)
|
||||||
|
widget->area.y = 0;
|
||||||
|
|
||||||
for(c = globalconf.clients; c; c = c->next)
|
for(c = globalconf.clients; c; c = c->next)
|
||||||
if(ISVISIBLE_ON_TB(c, widget->statusbar->screen))
|
if(ISVISIBLE_ON_TB(c, widget->statusbar->screen))
|
||||||
|
@ -86,7 +90,8 @@ tasklist_draw(Widget *widget, DrawCtx *ctx, int offset, int used)
|
||||||
icon_width = ((double) widget->statusbar->height / (double) area.height) * area.width;
|
icon_width = ((double) widget->statusbar->height / (double) area.height) * area.width;
|
||||||
draw_image(ctx,
|
draw_image(ctx,
|
||||||
widget->area.x + box_width * i,
|
widget->area.x + box_width * i,
|
||||||
0, widget->statusbar->height,
|
widget->area.y,
|
||||||
|
widget->statusbar->height,
|
||||||
r->icon);
|
r->icon);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -95,7 +100,8 @@ tasklist_draw(Widget *widget, DrawCtx *ctx, int offset, int used)
|
||||||
icon_width = ((double) widget->statusbar->height / (double) icon->height)
|
icon_width = ((double) widget->statusbar->height / (double) icon->height)
|
||||||
* icon->width;
|
* icon->width;
|
||||||
draw_image_from_argb_data(ctx,
|
draw_image_from_argb_data(ctx,
|
||||||
widget->area.x + box_width * i, 0,
|
widget->area.x + box_width * i,
|
||||||
|
widget->area.y,
|
||||||
icon->width, icon->height,
|
icon->width, icon->height,
|
||||||
widget->statusbar->height, icon->image);
|
widget->statusbar->height, icon->image);
|
||||||
p_delete(&icon->image);
|
p_delete(&icon->image);
|
||||||
|
@ -105,7 +111,8 @@ tasklist_draw(Widget *widget, DrawCtx *ctx, int offset, int used)
|
||||||
|
|
||||||
if(sel == c)
|
if(sel == c)
|
||||||
{
|
{
|
||||||
draw_text(ctx, widget->area.x + icon_width + box_width * i, 0,
|
draw_text(ctx, widget->area.x + icon_width + box_width * i,
|
||||||
|
widget->area.y,
|
||||||
box_width - icon_width,
|
box_width - icon_width,
|
||||||
widget->statusbar->height,
|
widget->statusbar->height,
|
||||||
d->align,
|
d->align,
|
||||||
|
@ -113,14 +120,16 @@ tasklist_draw(Widget *widget, DrawCtx *ctx, int offset, int used)
|
||||||
d->fg_sel, d->bg_sel);
|
d->fg_sel, d->bg_sel);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
draw_text(ctx, widget->area.x + icon_width + box_width * i, 0,
|
draw_text(ctx, widget->area.x + icon_width + box_width * i,
|
||||||
|
widget->area.y,
|
||||||
box_width - icon_width,
|
box_width - icon_width,
|
||||||
widget->statusbar->height,
|
widget->statusbar->height,
|
||||||
d->align,
|
d->align,
|
||||||
widget->font->height / 2, widget->font, c->name,
|
widget->font->height / 2, widget->font, c->name,
|
||||||
d->fg, d->bg);
|
d->fg, d->bg);
|
||||||
if(c->isfloating)
|
if(c->isfloating)
|
||||||
draw_circle(ctx, widget->area.x + icon_width + box_width * i, 0,
|
draw_circle(ctx, widget->area.x + icon_width + box_width * i,
|
||||||
|
widget->area.y,
|
||||||
(widget->font->height + 2) / 4,
|
(widget->font->height + 2) / 4,
|
||||||
c->ismax, d->fg);
|
c->ismax, d->fg);
|
||||||
i++;
|
i++;
|
||||||
|
|
|
@ -46,10 +46,11 @@ textbox_draw(Widget *widget, DrawCtx *ctx, int offset,
|
||||||
else
|
else
|
||||||
widget->area.width = textwidth(widget->font, d->text);
|
widget->area.width = textwidth(widget->font, d->text);
|
||||||
|
|
||||||
widget->area.x = widget_calculate_offset(widget->statusbar->width,
|
if(widget->area.x < 0)
|
||||||
widget->area.width,
|
widget->area.x = widget_calculate_offset(widget->statusbar->width,
|
||||||
offset,
|
widget->area.width,
|
||||||
widget->alignment);
|
offset,
|
||||||
|
widget->alignment);
|
||||||
|
|
||||||
draw_text(ctx, widget->area.x, 0, widget->area.width, widget->statusbar->height,
|
draw_text(ctx, widget->area.x, 0, widget->area.width, widget->statusbar->height,
|
||||||
d->align, 0, widget->font, d->text, d->fg, d->bg);
|
d->align, 0, widget->font, d->text, d->fg, d->bg);
|
||||||
|
|
Loading…
Reference in New Issue