gint config_screen_firstdesk;
gboolean config_resize_redraw;
+gint config_resize_popup_show;
ObStackingLayer config_dock_layer;
gboolean config_dock_floating;
if ((n = parse_find_node("drawContents", node)))
config_resize_redraw = parse_bool(doc, n);
+ if ((n = parse_find_node("popupShow", node))) {
+ if (parse_contains("Always", doc, n))
+ config_resize_popup_show = 2;
+ else if (parse_contains("Never", doc, n))
+ config_resize_popup_show = 0;
+ else if (parse_contains("Nonpixel", doc, n))
+ config_resize_popup_show = 1;
+ }
}
static void parse_dock(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node,
parse_register(i, "desktops", parse_desktops, NULL);
config_resize_redraw = TRUE;
+ config_resize_popup_show = 1;
parse_register(i, "resize", parse_resize, NULL);
client_configure(moveresize_client, OB_CORNER_TOPLEFT, cur_x, cur_y,
moveresize_client->area.width,
moveresize_client->area.height, TRUE, FALSE);
+ if (config_resize_popup_show == 2)
+ popup_coords(moveresize_client, "%d x %d",
+ moveresize_client->frame->area.x,
+ moveresize_client->frame->area.y);
}
static void do_resize(gboolean resist)
/* this would be better with a fixed width font ... XXX can do it better
if there are 2 text boxes */
- if (moveresize_client->size_inc.width > 1 ||
- moveresize_client->size_inc.height > 1)
+ if (config_resize_popup_show == 2 ||
+ (config_resize_popup_show == 1 &&
+ (moveresize_client->size_inc.width > 1 ||
+ moveresize_client->size_inc.height > 1))
+ )
popup_coords(moveresize_client, "%d x %d",
moveresize_client->logical_size.width,
moveresize_client->logical_size.height);