mirror of
git://projects.qi-hardware.com/eda-tools.git
synced 2024-11-18 01:04:05 +02:00
eeshow/gui/glabel.c: show glabel name in pop-up
This commit is contained in:
parent
56a4479912
commit
b114f4e00e
@ -36,6 +36,9 @@ struct glabel_aoi_ctx {
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
#define GLABEL_W 100
|
||||||
|
|
||||||
|
|
||||||
/* ----- Tools ------------------------------------------------------------- */
|
/* ----- Tools ------------------------------------------------------------- */
|
||||||
|
|
||||||
|
|
||||||
@ -69,16 +72,38 @@ void dehover_glabel(struct gui_ctx *ctx)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
static void add_dest_header(struct gui_ctx *ctx, const char *label)
|
||||||
|
{
|
||||||
|
struct overlay_style style = {
|
||||||
|
.font = BOLD_FONT,
|
||||||
|
.wmin = GLABEL_W,
|
||||||
|
.wmax = GLABEL_W,
|
||||||
|
.radius = 0,
|
||||||
|
.pad = 2,
|
||||||
|
.skip = 2,
|
||||||
|
.fg = { 0.0, 0.0, 0.0, 1.0 },
|
||||||
|
.bg = { 0.8, 0.8, 1.0, 0.6 },
|
||||||
|
.frame = { 1.0, 1.0, 1.0, 1.0 }, /* debugging */
|
||||||
|
.width = 0,
|
||||||
|
};
|
||||||
|
struct overlay *over;
|
||||||
|
|
||||||
|
over = overlay_add(&ctx->pop_overlays, NULL, NULL, NULL, NULL);
|
||||||
|
overlay_text(over, "%s", label);
|
||||||
|
overlay_style(over, &style);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
static void add_dest_overlay(struct gui_ctx *ctx, const char *label,
|
static void add_dest_overlay(struct gui_ctx *ctx, const char *label,
|
||||||
struct gui_sheet *sheet, unsigned n)
|
struct gui_sheet *sheet, unsigned n)
|
||||||
{
|
{
|
||||||
struct overlay_style style = {
|
struct overlay_style style = {
|
||||||
.font = BOLD_FONT,
|
.font = BOLD_FONT,
|
||||||
.wmin = 100,
|
.wmin = GLABEL_W,
|
||||||
.wmax = 100,
|
.wmax = GLABEL_W,
|
||||||
.radius = 0,
|
.radius = 0,
|
||||||
.pad = 0,
|
.pad = 2,
|
||||||
.skip = 4,
|
.skip = 0,
|
||||||
.fg = { 0.0, 0.0, 0.0, 1.0 },
|
.fg = { 0.0, 0.0, 0.0, 1.0 },
|
||||||
.bg = { 0.0, 0.0, 0.0, 0.0 },
|
.bg = { 0.0, 0.0, 0.0, 0.0 },
|
||||||
.frame = { 1.0, 1.0, 1.0, 1.0 }, /* debugging */
|
.frame = { 1.0, 1.0, 1.0, 1.0 }, /* debugging */
|
||||||
@ -151,6 +176,8 @@ static bool hover_glabel(void *user, bool on)
|
|||||||
aoi_dehover();
|
aoi_dehover();
|
||||||
overlay_remove_all(&ctx->pop_overlays);
|
overlay_remove_all(&ctx->pop_overlays);
|
||||||
overlay_remove_all(&ctx->pop_underlays);
|
overlay_remove_all(&ctx->pop_underlays);
|
||||||
|
|
||||||
|
add_dest_header(ctx, aoi_ctx->obj->u.text.s);
|
||||||
for (sheet = ctx->new_hist->sheets; sheet; sheet = sheet->next)
|
for (sheet = ctx->new_hist->sheets; sheet; sheet = sheet->next)
|
||||||
add_dest_overlay(ctx, aoi_ctx->obj->u.text.s, sheet, ++n);
|
add_dest_overlay(ctx, aoi_ctx->obj->u.text.s, sheet, ++n);
|
||||||
add_dest_frame(ctx);
|
add_dest_frame(ctx);
|
||||||
|
Loading…
Reference in New Issue
Block a user