1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
#include <xcb/xcb.h>
#include "xcb_reply.h"
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
pthread_mutex_t lock = PTHREAD_MUTEX_INITIALIZER;
void fontinfo_handler(void *data, xcb_connection_t *c, xcb_generic_reply_t *rg, xcb_generic_error_t *eg)
{
xcb_list_fonts_with_info_reply_t *rep = (xcb_list_fonts_with_info_reply_t *) rg;
if(rep)
{
int len = xcb_list_fonts_with_info_name_length(rep);
if(len)
printf("(+%u) Font \"%.*s\"\n",
(unsigned int) rep->replies_hint,
len, xcb_list_fonts_with_info_name(rep));
else
{
pthread_mutex_lock(&lock);
pthread_cond_broadcast(&cond);
pthread_mutex_unlock(&lock);
printf("End of font list.\n");
}
}
if(eg)
printf("Error from ListFontsWithInfo: %d\n", eg->error_code);
}
int main(int argc, char **argv)
{
int count = 10;
char *pattern = "*";
xcb_connection_t *c = xcb_connect(NULL, NULL);
reply_handlers_t *h = alloc_reply_handlers(c);
if(argc > 1)
count = atoi(argv[1]);
if(argc > 2)
pattern = argv[2];
add_reply_handler(h, xcb_list_fonts_with_info(c, count, strlen(pattern), pattern).sequence, fontinfo_handler, 0);
pthread_mutex_lock(&lock);
start_reply_thread(h);
pthread_cond_wait(&cond, &lock);
stop_reply_thread(h);
pthread_mutex_unlock(&lock);
xcb_disconnect(c);
exit(0);
}
|