Merge pull request #2143 from Airblader/feature-2120
Allow title_format for all containers
This commit is contained in:
@ -1926,27 +1926,33 @@ void cmd_title_format(I3_CMD, const char *format) {
|
||||
|
||||
owindow *current;
|
||||
TAILQ_FOREACH(current, &owindows, owindows) {
|
||||
if (current->con->window == NULL)
|
||||
continue;
|
||||
|
||||
DLOG("setting title_format for %p / %s\n", current->con, current->con->name);
|
||||
FREE(current->con->window->title_format);
|
||||
FREE(current->con->title_format);
|
||||
|
||||
/* If we only display the title without anything else, we can skip the parsing step,
|
||||
* so we remove the title format altogether. */
|
||||
if (strcasecmp(format, "%title") != 0) {
|
||||
current->con->window->title_format = sstrdup(format);
|
||||
current->con->title_format = sstrdup(format);
|
||||
|
||||
i3String *formatted_title = window_parse_title_format(current->con->window);
|
||||
ewmh_update_visible_name(current->con->window->id, i3string_as_utf8(formatted_title));
|
||||
I3STRING_FREE(formatted_title);
|
||||
if (current->con->window != NULL) {
|
||||
i3String *formatted_title = con_parse_title_format(current->con);
|
||||
ewmh_update_visible_name(current->con->window->id, i3string_as_utf8(formatted_title));
|
||||
I3STRING_FREE(formatted_title);
|
||||
}
|
||||
} else {
|
||||
/* We can remove _NET_WM_VISIBLE_NAME since we don't display a custom title. */
|
||||
ewmh_update_visible_name(current->con->window->id, NULL);
|
||||
if (current->con->window != NULL) {
|
||||
/* We can remove _NET_WM_VISIBLE_NAME since we don't display a custom title. */
|
||||
ewmh_update_visible_name(current->con->window->id, NULL);
|
||||
}
|
||||
}
|
||||
|
||||
/* Make sure the window title is redrawn immediately. */
|
||||
current->con->window->name_x_changed = true;
|
||||
if (current->con->window != NULL) {
|
||||
/* Make sure the window title is redrawn immediately. */
|
||||
current->con->window->name_x_changed = true;
|
||||
} else {
|
||||
/* For windowless containers we also need to force the redrawing. */
|
||||
FREE(current->con->deco_render_params);
|
||||
}
|
||||
}
|
||||
|
||||
cmd_output->needs_tree_render = true;
|
||||
|
44
src/con.c
44
src/con.c
@ -2000,3 +2000,47 @@ char *con_get_tree_representation(Con *con) {
|
||||
|
||||
return complete_buf;
|
||||
}
|
||||
|
||||
/*
|
||||
* Returns the container's title considering the current title format.
|
||||
*
|
||||
*/
|
||||
i3String *con_parse_title_format(Con *con) {
|
||||
assert(con->title_format != NULL);
|
||||
|
||||
i3Window *win = con->window;
|
||||
|
||||
/* We need to ensure that we only escape the window title if pango
|
||||
* is used by the current font. */
|
||||
const bool pango_markup = font_is_pango();
|
||||
|
||||
char *title;
|
||||
char *class;
|
||||
char *instance;
|
||||
if (win == NULL) {
|
||||
title = pango_escape_markup(con_get_tree_representation(con));
|
||||
class = sstrdup("i3-frame");
|
||||
instance = sstrdup("i3-frame");
|
||||
} else {
|
||||
title = pango_escape_markup(sstrdup((win->name == NULL) ? "" : i3string_as_utf8(win->name)));
|
||||
class = pango_escape_markup(sstrdup((win->class_class == NULL) ? "" : win->class_class));
|
||||
instance = pango_escape_markup(sstrdup((win->class_instance == NULL) ? "" : win->class_instance));
|
||||
}
|
||||
|
||||
placeholder_t placeholders[] = {
|
||||
{.name = "%title", .value = title},
|
||||
{.name = "%class", .value = class},
|
||||
{.name = "%instance", .value = instance}};
|
||||
const size_t num = sizeof(placeholders) / sizeof(placeholder_t);
|
||||
|
||||
char *formatted_str = format_placeholders(con->title_format, &placeholders[0], num);
|
||||
i3String *formatted = i3string_from_utf8(formatted_str);
|
||||
i3string_set_markup(formatted, pango_markup);
|
||||
FREE(formatted_str);
|
||||
|
||||
for (size_t i = 0; i < num; i++) {
|
||||
FREE(placeholders[i].value);
|
||||
}
|
||||
|
||||
return formatted;
|
||||
}
|
||||
|
@ -372,6 +372,11 @@ void dump_node(yajl_gen gen, struct Con *con, bool inplace_restart) {
|
||||
else
|
||||
y(null);
|
||||
|
||||
if (con->title_format != NULL) {
|
||||
ystr("title_format");
|
||||
ystr(con->title_format);
|
||||
}
|
||||
|
||||
if (con->type == CT_WORKSPACE) {
|
||||
ystr("num");
|
||||
y(integer, con->num);
|
||||
|
@ -264,6 +264,9 @@ static int json_string(void *ctx, const unsigned char *val, size_t len) {
|
||||
if (strcasecmp(last_key, "name") == 0) {
|
||||
json_node->name = scalloc(len + 1, 1);
|
||||
memcpy(json_node->name, val, len);
|
||||
} else if (strcasecmp(last_key, "title_format") == 0) {
|
||||
json_node->title_format = scalloc(len + 1, 1);
|
||||
memcpy(json_node->title_format, val, len);
|
||||
} else if (strcasecmp(last_key, "sticky_group") == 0) {
|
||||
json_node->sticky_group = scalloc(len + 1, 1);
|
||||
memcpy(json_node->sticky_group, val, len);
|
||||
|
@ -343,6 +343,7 @@ char *pango_escape_markup(char *input) {
|
||||
|
||||
char *escaped = g_markup_escape_text(input, -1);
|
||||
FREE(input);
|
||||
|
||||
return escaped;
|
||||
}
|
||||
|
||||
|
85
src/window.c
85
src/window.c
@ -67,8 +67,9 @@ void window_update_name(i3Window *win, xcb_get_property_reply_t *prop, bool befo
|
||||
win->name = i3string_from_utf8_with_length(xcb_get_property_value(prop),
|
||||
xcb_get_property_value_length(prop));
|
||||
|
||||
if (win->title_format != NULL) {
|
||||
i3String *name = window_parse_title_format(win);
|
||||
Con *con = con_by_window_id(win->id);
|
||||
if (con != NULL && con->title_format != NULL) {
|
||||
i3String *name = con_parse_title_format(con);
|
||||
ewmh_update_visible_name(win->id, i3string_as_utf8(name));
|
||||
I3STRING_FREE(name);
|
||||
}
|
||||
@ -110,8 +111,10 @@ void window_update_name_legacy(i3Window *win, xcb_get_property_reply_t *prop, bo
|
||||
i3string_free(win->name);
|
||||
win->name = i3string_from_utf8_with_length(xcb_get_property_value(prop),
|
||||
xcb_get_property_value_length(prop));
|
||||
if (win->title_format != NULL) {
|
||||
i3String *name = window_parse_title_format(win);
|
||||
|
||||
Con *con = con_by_window_id(win->id);
|
||||
if (con != NULL && con->title_format != NULL) {
|
||||
i3String *name = con_parse_title_format(con);
|
||||
ewmh_update_visible_name(win->id, i3string_as_utf8(name));
|
||||
I3STRING_FREE(name);
|
||||
}
|
||||
@ -340,77 +343,3 @@ void window_update_motif_hints(i3Window *win, xcb_get_property_reply_t *prop, bo
|
||||
#undef MWM_DECOR_BORDER
|
||||
#undef MWM_DECOR_TITLE
|
||||
}
|
||||
|
||||
/*
|
||||
* Returns the window title considering the current title format.
|
||||
* If no format is set, this will simply return the window's name.
|
||||
*
|
||||
*/
|
||||
i3String *window_parse_title_format(i3Window *win) {
|
||||
char *format = win->title_format;
|
||||
if (format == NULL)
|
||||
return i3string_copy(win->name);
|
||||
|
||||
/* We initialize these lazily so we only escape them if really necessary. */
|
||||
char *escaped_title = NULL;
|
||||
char *escaped_class = NULL;
|
||||
char *escaped_instance = NULL;
|
||||
|
||||
/* We have to first iterate over the string to see how much buffer space
|
||||
* we need to allocate. */
|
||||
int buffer_len = strlen(format) + 1;
|
||||
for (char *walk = format; *walk != '\0'; walk++) {
|
||||
if (STARTS_WITH(walk, "%title")) {
|
||||
if (escaped_title == NULL)
|
||||
escaped_title = pango_escape_markup(sstrdup((win->name == NULL) ? "" : i3string_as_utf8(win->name)));
|
||||
|
||||
buffer_len = buffer_len - strlen("%title") + strlen(escaped_title);
|
||||
walk += strlen("%title") - 1;
|
||||
} else if (STARTS_WITH(walk, "%class")) {
|
||||
if (escaped_class == NULL)
|
||||
escaped_class = pango_escape_markup(sstrdup((win->class_class == NULL) ? "" : win->class_class));
|
||||
|
||||
buffer_len = buffer_len - strlen("%class") + strlen(escaped_class);
|
||||
walk += strlen("%class") - 1;
|
||||
} else if (STARTS_WITH(walk, "%instance")) {
|
||||
if (escaped_instance == NULL)
|
||||
escaped_instance = pango_escape_markup(sstrdup((win->class_instance == NULL) ? "" : win->class_instance));
|
||||
|
||||
buffer_len = buffer_len - strlen("%instance") + strlen(escaped_instance);
|
||||
walk += strlen("%instance") - 1;
|
||||
}
|
||||
}
|
||||
|
||||
/* Now we can parse the format string. */
|
||||
char buffer[buffer_len];
|
||||
char *outwalk = buffer;
|
||||
for (char *walk = format; *walk != '\0'; walk++) {
|
||||
if (*walk != '%') {
|
||||
*(outwalk++) = *walk;
|
||||
continue;
|
||||
}
|
||||
|
||||
if (STARTS_WITH(walk + 1, "title")) {
|
||||
outwalk += sprintf(outwalk, "%s", escaped_title);
|
||||
walk += strlen("title");
|
||||
} else if (STARTS_WITH(walk + 1, "class")) {
|
||||
outwalk += sprintf(outwalk, "%s", escaped_class);
|
||||
walk += strlen("class");
|
||||
} else if (STARTS_WITH(walk + 1, "instance")) {
|
||||
outwalk += sprintf(outwalk, "%s", escaped_instance);
|
||||
walk += strlen("instance");
|
||||
} else {
|
||||
*(outwalk++) = *walk;
|
||||
}
|
||||
}
|
||||
*outwalk = '\0';
|
||||
|
||||
i3String *formatted = i3string_from_utf8(buffer);
|
||||
i3string_set_markup(formatted, font_is_pango());
|
||||
|
||||
FREE(escaped_title);
|
||||
FREE(escaped_class);
|
||||
FREE(escaped_instance);
|
||||
|
||||
return formatted;
|
||||
}
|
||||
|
25
src/x.c
25
src/x.c
@ -531,20 +531,23 @@ void x_draw_decoration(Con *con) {
|
||||
|
||||
struct Window *win = con->window;
|
||||
if (win == NULL) {
|
||||
/* we have a split container which gets a representation
|
||||
* of its children as title
|
||||
*/
|
||||
char *_title;
|
||||
char *tree = con_get_tree_representation(con);
|
||||
sasprintf(&_title, "i3: %s", tree);
|
||||
free(tree);
|
||||
i3String *title;
|
||||
if (con->title_format == NULL) {
|
||||
char *_title;
|
||||
char *tree = con_get_tree_representation(con);
|
||||
sasprintf(&_title, "i3: %s", tree);
|
||||
free(tree);
|
||||
|
||||
title = i3string_from_utf8(_title);
|
||||
FREE(_title);
|
||||
} else {
|
||||
title = con_parse_title_format(con);
|
||||
}
|
||||
|
||||
i3String *title = i3string_from_utf8(_title);
|
||||
draw_util_text(title, &(parent->frame_buffer),
|
||||
p->color->text, p->color->background,
|
||||
con->deco_rect.x + 2, con->deco_rect.y + text_offset_y,
|
||||
con->deco_rect.width - 2);
|
||||
FREE(_title);
|
||||
I3STRING_FREE(title);
|
||||
|
||||
goto after_title;
|
||||
@ -602,12 +605,12 @@ void x_draw_decoration(Con *con) {
|
||||
FREE(formatted_mark);
|
||||
}
|
||||
|
||||
i3String *title = win->title_format == NULL ? win->name : window_parse_title_format(win);
|
||||
i3String *title = con->title_format == NULL ? win->name : con_parse_title_format(con);
|
||||
draw_util_text(title, &(parent->frame_buffer),
|
||||
p->color->text, p->color->background,
|
||||
con->deco_rect.x + logical_px(2) + indent_px, con->deco_rect.y + text_offset_y,
|
||||
con->deco_rect.width - logical_px(2) - indent_px - mark_width - logical_px(2));
|
||||
if (win->title_format != NULL)
|
||||
if (con->title_format != NULL)
|
||||
I3STRING_FREE(title);
|
||||
|
||||
after_title:
|
||||
|
Reference in New Issue
Block a user