[][src]Function xcb::xproto::list_fonts_with_info_unchecked

pub fn list_fonts_with_info_unchecked<'a>(
    c: &'a Connection,
    max_names: u16,
    pattern: &str
) -> ListFontsWithInfoCookie<'a>

get matching font names and information

Gets a list of available font names which match the given pattern.

parameters:

  • c: The connection object to the server

  • max_names: The maximum number of fonts to be returned.

  • pattern: A font pattern, for example "-misc-fixed-*".

    The asterisk (*) is a wildcard for any number of characters. The question mark (?) is a wildcard for a single character. Use of uppercase or lowercase does not matter.