X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=openbox%2Faction.c;h=683e205f098f5170b7f918c46dded265df99f7f0;hb=3d6e0f941d36ff335ad13ecf83405a40775e4c04;hp=a9c7737af1a3c9d8e668adeb481a9d3f468906a8;hpb=a6130b8407506d546c8343aae209755d926e4eb3;p=chaz%2Fopenbox diff --git a/openbox/action.c b/openbox/action.c index a9c7737a..683e205f 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -2,12 +2,11 @@ #include "focus.h" #include "stacking.h" #include "frame.h" +#include "framerender.h" #include "screen.h" #include "action.h" #include "dispatch.h" #include "openbox.h" -#include "engine.h" -#include "render/render.h" #include @@ -649,10 +648,10 @@ static void popup_coords(char *format, int a, int b, gboolean hide) char *text; text = g_strdup_printf(format, a, b); - engine_size_label(text, TRUE, TRUE, &s); + framerender_size_popup_label(text, &s); XMoveResizeWindow(ob_display, coords, 10, 10, s.width, s.height); - engine_render_label(coords, &s, text, TRUE, TRUE); + framerender_popup_label(coords, &s, text); g_free(text); XMapWindow(ob_display, coords); @@ -733,12 +732,12 @@ static void popup_cycle(Client *c, gboolean hide) a = screen_area(c->desktop); - engine_size_label(c->title, TRUE, TRUE, &s); + framerender_size_popup_label(c->title, &s); XMoveResizeWindow(ob_display, coords, a->x + (a->width - s.width) / 2, a->y + (a->height - s.height) / 2, s.width, s.height); - engine_render_label(coords, &s, c->title, TRUE, TRUE); + framerender_popup_label(coords, &s, c->title); XMapWindow(ob_display, coords); }