Lines Matching refs:text_prop

1763     XTextProperty	text_prop;  in test_x11_window()  local
1767 if (XGetWMName(dpy, x11_window, &text_prop)) in test_x11_window()
1768 XFree((void *)text_prop.value); in test_x11_window()
1986 XTextProperty text_prop; in get_x11_thing() local
1994 status = XGetWMName(x11_display, x11_window, &text_prop); in get_x11_thing()
1996 status = XGetWMIconName(x11_display, x11_window, &text_prop); in get_x11_thing()
2014 while (!status || text_prop.value == NULL) in get_x11_thing()
2026 status = XGetWMName(x11_display, win, &text_prop); in get_x11_thing()
2028 status = XGetWMIconName(x11_display, win, &text_prop); in get_x11_thing()
2031 if (status && text_prop.value != NULL) in get_x11_thing()
2040 if (text_prop.encoding == XA_STRING && !has_mbyte) in get_x11_thing()
2043 oldtitle = vim_strsave((char_u *)text_prop.value); in get_x11_thing()
2045 oldicon = vim_strsave((char_u *)text_prop.value); in get_x11_thing()
2054 &text_prop, in get_x11_thing()
2067 oldtitle = vim_strsave((char_u *)text_prop.value); in get_x11_thing()
2069 oldicon = vim_strsave((char_u *)text_prop.value); in get_x11_thing()
2073 XFree((void *)text_prop.value); in get_x11_thing()
2112 XTextProperty text_prop; in set_x11_title()
2116 (void)XStringListToTextProperty(&c_title, 1, &text_prop); in set_x11_title()
2117 XSetWMProperties(x11_display, x11_window, &text_prop, in set_x11_title()
2148 XTextProperty text_prop; in set_x11_icon()
2151 (void)XStringListToTextProperty(&c_icon, 1, &text_prop); in set_x11_icon()
2152 XSetWMProperties(x11_display, x11_window, NULL, &text_prop, in set_x11_icon()