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
|
/* -*- c-basic-offset:2; tab-width:2; indent-tabs-mode:nil -*- */
#ifndef ___UI_DISPLAY_H__
#define ___UI_DISPLAY_H__
#include "../ui_display.h"
#ifdef __FreeBSD__
#include <sys/kbio.h> /* NLKED */
#else
#define CLKED 1
#define NLKED 2
#define SLKED 4
#define ALKED 8
#endif
#define KeyPress 2 /* Private in fb/ */
#define ButtonPress 4 /* Private in fb/ */
#define ButtonRelease 5 /* Private in fb/ */
#define MotionNotify 6 /* Private in fb/ */
#define IM_WINDOW_IS_ACTIVATED(disp) ((disp)->num_roots > 1 && (disp)->roots[1]->is_mapped)
#ifdef USE_LIBSIXEL
void ui_display_output_picture(ui_display_t *disp, u_char *picture, u_int width, u_int height);
#else
#define ui_display_output_picture(disp, picture, width, height) (0)
#endif
#endif
|