2012-02-27 12:00:12 +08:00
|
|
|
/**
|
|
|
|
* compton.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Throw everything in here.
|
|
|
|
|
2012-02-08 18:31:39 +08:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2012-09-11 22:22:58 +08:00
|
|
|
#include <inttypes.h>
|
2012-02-08 18:31:39 +08:00
|
|
|
#include <math.h>
|
|
|
|
#include <sys/poll.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <getopt.h>
|
|
|
|
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/Xutil.h>
|
|
|
|
#include <X11/Xatom.h>
|
|
|
|
#include <X11/extensions/Xcomposite.h>
|
|
|
|
#include <X11/extensions/Xdamage.h>
|
|
|
|
#include <X11/extensions/Xrender.h>
|
2012-09-11 21:33:03 +08:00
|
|
|
#include <X11/extensions/shape.h>
|
2012-02-08 18:31:39 +08:00
|
|
|
|
|
|
|
#if COMPOSITE_MAJOR > 0 || COMPOSITE_MINOR >= 2
|
|
|
|
#define HAS_NAME_WINDOW_PIXMAP 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define CAN_DO_USABLE 0
|
2012-09-12 09:08:15 +08:00
|
|
|
|
|
|
|
// Debug options, enable them using -D in CFLAGS
|
|
|
|
// #define DEBUG_REPAINT 1
|
|
|
|
// #define DEBUG_EVENTS 1
|
|
|
|
// #define DEBUG_RESTACK 1
|
|
|
|
// #define DEBUG_WINTYPE 1
|
|
|
|
// #define MONITOR_REPAINT 1
|
|
|
|
|
|
|
|
#ifdef DEBUG_EVENTS
|
|
|
|
// For printing timestamps
|
|
|
|
#include <time.h>
|
|
|
|
extern struct timeval time_start;
|
|
|
|
#endif
|
2012-02-08 18:31:39 +08:00
|
|
|
|
|
|
|
#define OPAQUE 0xffffffff
|
2012-02-09 06:45:08 +08:00
|
|
|
#define REGISTER_PROP "_NET_WM_CM_S"
|
|
|
|
|
|
|
|
#define WINDOW_SOLID 0
|
|
|
|
#define WINDOW_TRANS 1
|
|
|
|
#define WINDOW_ARGB 2
|
2012-02-08 18:31:39 +08:00
|
|
|
|
2012-02-27 12:00:12 +08:00
|
|
|
/**
|
|
|
|
* Types
|
|
|
|
*/
|
|
|
|
|
2012-09-11 22:22:58 +08:00
|
|
|
typedef uint32_t opacity_t;
|
|
|
|
|
2012-02-08 18:31:39 +08:00
|
|
|
typedef enum {
|
|
|
|
WINTYPE_UNKNOWN,
|
|
|
|
WINTYPE_DESKTOP,
|
|
|
|
WINTYPE_DOCK,
|
|
|
|
WINTYPE_TOOLBAR,
|
|
|
|
WINTYPE_MENU,
|
|
|
|
WINTYPE_UTILITY,
|
|
|
|
WINTYPE_SPLASH,
|
|
|
|
WINTYPE_DIALOG,
|
|
|
|
WINTYPE_NORMAL,
|
|
|
|
WINTYPE_DROPDOWN_MENU,
|
|
|
|
WINTYPE_POPUP_MENU,
|
|
|
|
WINTYPE_TOOLTIP,
|
|
|
|
WINTYPE_NOTIFY,
|
|
|
|
WINTYPE_COMBO,
|
|
|
|
WINTYPE_DND,
|
|
|
|
NUM_WINTYPES
|
|
|
|
} wintype;
|
|
|
|
|
|
|
|
typedef struct _ignore {
|
|
|
|
struct _ignore *next;
|
|
|
|
unsigned long sequence;
|
|
|
|
} ignore;
|
|
|
|
|
|
|
|
typedef struct _win {
|
|
|
|
struct _win *next;
|
|
|
|
Window id;
|
|
|
|
Window client_win;
|
|
|
|
#if HAS_NAME_WINDOW_PIXMAP
|
|
|
|
Pixmap pixmap;
|
|
|
|
#endif
|
|
|
|
XWindowAttributes a;
|
|
|
|
#if CAN_DO_USABLE
|
|
|
|
Bool usable; /* mapped and all damaged at one point */
|
|
|
|
XRectangle damage_bounds; /* bounds of damage */
|
|
|
|
#endif
|
|
|
|
int mode;
|
|
|
|
int damaged;
|
|
|
|
Damage damage;
|
|
|
|
Picture picture;
|
|
|
|
Picture alpha_pict;
|
|
|
|
Picture alpha_border_pict;
|
|
|
|
Picture shadow_pict;
|
|
|
|
XserverRegion border_size;
|
|
|
|
XserverRegion extents;
|
|
|
|
Picture shadow;
|
|
|
|
int shadow_dx;
|
|
|
|
int shadow_dy;
|
|
|
|
int shadow_width;
|
|
|
|
int shadow_height;
|
2012-09-11 22:22:58 +08:00
|
|
|
opacity_t opacity;
|
|
|
|
/// Cached value of opacity window attribute.
|
|
|
|
opacity_t opacity_prop;
|
2012-09-12 10:52:52 +08:00
|
|
|
/// Whether the window is to be dimmed.
|
|
|
|
Bool dim;
|
2012-02-08 18:31:39 +08:00
|
|
|
wintype window_type;
|
2012-09-11 22:22:58 +08:00
|
|
|
/// Whether the window is focused.
|
|
|
|
Bool focused;
|
2012-02-08 18:31:39 +08:00
|
|
|
unsigned long damage_sequence; /* sequence when damage was created */
|
|
|
|
Bool destroyed;
|
|
|
|
unsigned int left_width;
|
|
|
|
unsigned int right_width;
|
|
|
|
unsigned int top_width;
|
|
|
|
unsigned int bottom_width;
|
|
|
|
|
|
|
|
Bool need_configure;
|
|
|
|
XConfigureEvent queue_configure;
|
|
|
|
|
|
|
|
/* for drawing translucent windows */
|
|
|
|
XserverRegion border_clip;
|
|
|
|
struct _win *prev_trans;
|
|
|
|
} win;
|
|
|
|
|
|
|
|
typedef struct _conv {
|
|
|
|
int size;
|
|
|
|
double *data;
|
|
|
|
} conv;
|
|
|
|
|
|
|
|
typedef struct _fade {
|
|
|
|
struct _fade *next;
|
|
|
|
win *w;
|
|
|
|
double cur;
|
|
|
|
double finish;
|
|
|
|
double step;
|
|
|
|
void (*callback) (Display *dpy, win *w);
|
|
|
|
Display *dpy;
|
|
|
|
} fade;
|
|
|
|
|
2012-09-13 23:24:37 +08:00
|
|
|
typedef enum {
|
|
|
|
WIN_EVMODE_UNKNOWN,
|
|
|
|
WIN_EVMODE_FRAME,
|
|
|
|
WIN_EVMODE_CLIENT
|
|
|
|
} win_evmode_t;
|
|
|
|
|
2012-09-11 21:33:03 +08:00
|
|
|
extern int root_height, root_width;
|
2012-09-13 21:38:55 +08:00
|
|
|
extern Atom atom_client_attr;
|
2012-09-11 22:22:58 +08:00
|
|
|
|
2012-02-27 12:00:12 +08:00
|
|
|
/**
|
|
|
|
* Functions
|
|
|
|
*/
|
|
|
|
|
2012-09-11 21:57:50 +08:00
|
|
|
// inline functions must be made static to compile correctly under clang:
|
|
|
|
// http://clang.llvm.org/compatibility.html#inline
|
|
|
|
|
2012-09-12 21:01:06 +08:00
|
|
|
/**
|
|
|
|
* Normalize an int value to a specific range.
|
|
|
|
*
|
|
|
|
* @param i int value to normalize
|
|
|
|
* @param min minimal value
|
|
|
|
* @param max maximum value
|
|
|
|
* @return normalized value
|
|
|
|
*/
|
2012-09-13 13:58:05 +08:00
|
|
|
static inline double
|
|
|
|
normalize_i_range(int i, int min, int max) {
|
|
|
|
if (i > max) return max;
|
|
|
|
if (i < min) return min;
|
2012-09-12 21:01:06 +08:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
2012-09-11 22:22:58 +08:00
|
|
|
/**
|
|
|
|
* Normalize a double value to 0.\ 0 - 1.\ 0.
|
|
|
|
*
|
|
|
|
* @param d double value to normalize
|
|
|
|
*/
|
2012-09-13 13:58:05 +08:00
|
|
|
static inline double
|
|
|
|
normalize_d(double d) {
|
|
|
|
if (d > 1.0) return 1.0;
|
|
|
|
if (d < 0.0) return 0.0;
|
2012-09-11 21:57:50 +08:00
|
|
|
return d;
|
|
|
|
}
|
|
|
|
|
2012-09-11 22:22:58 +08:00
|
|
|
/**
|
|
|
|
* Check if a window ID exists in an array of window IDs.
|
|
|
|
*
|
|
|
|
* @param arr the array of window IDs
|
|
|
|
* @param count amount of elements in the array
|
|
|
|
* @param wid window ID to search for
|
|
|
|
*/
|
2012-09-13 13:58:05 +08:00
|
|
|
static inline Bool
|
|
|
|
array_wid_exists(const Window *arr, int count, Window wid) {
|
2012-09-11 22:22:58 +08:00
|
|
|
while (count--) {
|
2012-09-13 13:58:05 +08:00
|
|
|
if (arr[count] == wid) {
|
2012-09-11 22:22:58 +08:00
|
|
|
return True;
|
2012-09-13 13:58:05 +08:00
|
|
|
}
|
2012-09-11 22:22:58 +08:00
|
|
|
}
|
2012-09-13 13:39:43 +08:00
|
|
|
|
2012-09-11 22:22:58 +08:00
|
|
|
return False;
|
|
|
|
}
|
|
|
|
|
2012-09-12 09:08:15 +08:00
|
|
|
#ifdef DEBUG_EVENTS
|
2012-09-13 13:39:43 +08:00
|
|
|
/*
|
2012-09-12 09:08:15 +08:00
|
|
|
* Subtracting two struct timeval values.
|
|
|
|
*
|
|
|
|
* Taken from glibc manual.
|
|
|
|
*
|
|
|
|
* Subtract the `struct timeval' values X and Y,
|
|
|
|
* storing the result in RESULT.
|
|
|
|
* Return 1 if the difference is negative, otherwise 0. */
|
2012-09-13 13:58:05 +08:00
|
|
|
static int
|
|
|
|
timeval_subtract(struct timeval *result,
|
|
|
|
struct timeval *x,
|
|
|
|
struct timeval *y) {
|
2012-09-12 09:08:15 +08:00
|
|
|
/* Perform the carry for the later subtraction by updating y. */
|
|
|
|
if (x->tv_usec < y->tv_usec) {
|
|
|
|
int nsec = (y->tv_usec - x->tv_usec) / 1000000 + 1;
|
|
|
|
y->tv_usec -= 1000000 * nsec;
|
|
|
|
y->tv_sec += nsec;
|
|
|
|
}
|
2012-09-13 13:58:05 +08:00
|
|
|
|
2012-09-12 09:08:15 +08:00
|
|
|
if (x->tv_usec - y->tv_usec > 1000000) {
|
|
|
|
int nsec = (x->tv_usec - y->tv_usec) / 1000000;
|
|
|
|
y->tv_usec += 1000000 * nsec;
|
|
|
|
y->tv_sec -= nsec;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Compute the time remaining to wait.
|
|
|
|
tv_usec is certainly positive. */
|
|
|
|
result->tv_sec = x->tv_sec - y->tv_sec;
|
|
|
|
result->tv_usec = x->tv_usec - y->tv_usec;
|
|
|
|
|
|
|
|
/* Return 1 if result is negative. */
|
|
|
|
return x->tv_sec < y->tv_sec;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Print time passed since program starts execution.
|
|
|
|
*
|
|
|
|
* Used for debugging.
|
|
|
|
*/
|
2012-09-13 13:58:05 +08:00
|
|
|
static inline void
|
|
|
|
print_timestamp(void) {
|
2012-09-12 09:08:15 +08:00
|
|
|
struct timeval tm, diff;
|
|
|
|
|
2012-09-13 13:58:05 +08:00
|
|
|
if (gettimeofday(&tm, NULL)) return;
|
2012-09-12 09:08:15 +08:00
|
|
|
|
|
|
|
timeval_subtract(&diff, &tm, &time_start);
|
|
|
|
printf("[ %5ld.%02ld ] ", diff.tv_sec, diff.tv_usec / 10000);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-09-13 21:38:55 +08:00
|
|
|
/**
|
|
|
|
* Determine if a window has a specific attribute.
|
|
|
|
*
|
|
|
|
* @param dpy Display to use
|
|
|
|
* @param w window to check
|
|
|
|
* @param atom atom of attribute to check
|
|
|
|
* @return 1 if it has the attribute, 0 otherwise
|
|
|
|
*/
|
2012-09-13 23:12:54 +08:00
|
|
|
static inline Bool
|
|
|
|
win_has_attr(Display *dpy, Window w, Atom atom) {
|
2012-09-13 21:38:55 +08:00
|
|
|
Atom type = None;
|
|
|
|
int format;
|
|
|
|
unsigned long nitems, after;
|
|
|
|
unsigned char *data;
|
|
|
|
|
|
|
|
if (Success == XGetWindowProperty(dpy, w, atom, 0, 0, False,
|
|
|
|
AnyPropertyType, &type, &format, &nitems, &after, &data)) {
|
|
|
|
XFree(data);
|
2012-09-13 23:12:54 +08:00
|
|
|
if (type) return True;
|
2012-09-13 21:38:55 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the children of a window.
|
|
|
|
*
|
|
|
|
* @param dpy Display to use
|
|
|
|
* @param w window to check
|
|
|
|
* @param children [out] an array of child window IDs
|
|
|
|
* @param nchildren [out] number of children
|
|
|
|
* @return 1 if successful, 0 otherwise
|
|
|
|
*/
|
2012-09-13 23:12:54 +08:00
|
|
|
static inline Bool
|
|
|
|
win_get_children(Display *dpy, Window w,
|
2012-09-13 21:38:55 +08:00
|
|
|
Window **children, unsigned *nchildren) {
|
|
|
|
Window troot, tparent;
|
|
|
|
|
|
|
|
if (!XQueryTree(dpy, w, &troot, &tparent, children, nchildren)) {
|
|
|
|
*nchildren = 0;
|
|
|
|
return False;
|
|
|
|
}
|
|
|
|
|
|
|
|
return True;
|
|
|
|
}
|
|
|
|
|
2012-02-27 12:00:12 +08:00
|
|
|
static int
|
2012-02-08 18:31:39 +08:00
|
|
|
get_time_in_milliseconds();
|
|
|
|
|
2012-02-27 12:00:12 +08:00
|
|
|
static fade *
|
2012-02-08 18:31:39 +08:00
|
|
|
find_fade(win *w);
|
|
|
|
|
2012-02-27 12:00:12 +08:00
|
|
|
static void
|
2012-02-08 18:31:39 +08:00
|
|
|
dequeue_fade(Display *dpy, fade *f);
|
|
|
|
|
2012-02-27 12:00:12 +08:00
|
|
|
static void
|
2012-02-08 18:31:39 +08:00
|
|
|
cleanup_fade(Display *dpy, win *w);
|
|
|
|
|
2012-02-27 12:00:12 +08:00
|
|
|
static void
|
2012-02-08 18:31:39 +08:00
|
|
|
enqueue_fade(Display *dpy, fade *f);
|
|
|
|
|
|
|
|
static void
|
|
|
|
set_fade(Display *dpy, win *w, double start,
|
|
|
|
double finish, double step,
|
|
|
|
void(*callback) (Display *dpy, win *w),
|
|
|
|
Bool exec_callback, Bool override);
|
|
|
|
|
2012-02-27 12:00:12 +08:00
|
|
|
static int
|
2012-02-08 18:31:39 +08:00
|
|
|
fade_timeout(void);
|
|
|
|
|
2012-02-27 12:00:12 +08:00
|
|
|
static void
|
2012-02-08 18:31:39 +08:00
|
|
|
run_fades(Display *dpy);
|
|
|
|
|
|
|
|
static double
|
|
|
|
gaussian(double r, double x, double y);
|
|
|
|
|
|
|
|
static conv *
|
|
|
|
make_gaussian_map(Display *dpy, double r);
|
|
|
|
|
|
|
|
static unsigned char
|
|
|
|
sum_gaussian(conv *map, double opacity,
|
|
|
|
int x, int y, int width, int height);
|
|
|
|
|
|
|
|
static void
|
|
|
|
presum_gaussian(conv *map);
|
|
|
|
|
|
|
|
static XImage *
|
|
|
|
make_shadow(Display *dpy, double opacity,
|
|
|
|
int width, int height);
|
|
|
|
|
|
|
|
static Picture
|
|
|
|
shadow_picture(Display *dpy, double opacity, Picture alpha_pict,
|
|
|
|
int width, int height, int *wp, int *hp);
|
|
|
|
|
2012-02-27 12:00:12 +08:00
|
|
|
static Picture
|
2012-02-08 18:31:39 +08:00
|
|
|
solid_picture(Display *dpy, Bool argb, double a,
|
|
|
|
double r, double g, double b);
|
|
|
|
|
2012-02-27 12:00:12 +08:00
|
|
|
static void
|
2012-02-08 18:31:39 +08:00
|
|
|
discard_ignore(Display *dpy, unsigned long sequence);
|
|
|
|
|
2012-02-27 12:00:12 +08:00
|
|
|
static void
|
2012-02-08 18:31:39 +08:00
|
|
|
set_ignore(Display *dpy, unsigned long sequence);
|
|
|
|
|
2012-02-27 12:00:12 +08:00
|
|
|
static int
|
2012-02-08 18:31:39 +08:00
|
|
|
should_ignore(Display *dpy, unsigned long sequence);
|
|
|
|
|
2012-09-13 23:24:37 +08:00
|
|
|
static long
|
|
|
|
determine_evmask(Display *dpy, Window wid, win_evmode_t mode);
|
|
|
|
|
2012-02-08 18:31:39 +08:00
|
|
|
static win *
|
|
|
|
find_win(Display *dpy, Window id);
|
|
|
|
|
|
|
|
static win *
|
|
|
|
find_toplevel(Display *dpy, Window id);
|
|
|
|
|
2012-09-13 23:12:54 +08:00
|
|
|
static win *
|
|
|
|
find_toplevel2(Display *dpy, Window wid);
|
|
|
|
|
|
|
|
static win *
|
|
|
|
recheck_focus(Display *dpy);
|
|
|
|
|
2012-02-08 18:31:39 +08:00
|
|
|
static Picture
|
|
|
|
root_tile_f(Display *dpy);
|
|
|
|
|
|
|
|
static void
|
|
|
|
paint_root(Display *dpy);
|
|
|
|
|
|
|
|
static XserverRegion
|
|
|
|
win_extents(Display *dpy, win *w);
|
|
|
|
|
|
|
|
static XserverRegion
|
|
|
|
border_size(Display *dpy, win *w);
|
|
|
|
|
2012-09-13 23:12:54 +08:00
|
|
|
static Window
|
|
|
|
find_client_win(Display *dpy, Window w);
|
2012-09-13 21:38:55 +08:00
|
|
|
|
2012-09-13 23:12:54 +08:00
|
|
|
static Window
|
|
|
|
find_client_win2(Display *dpy, Window w);
|
2012-02-08 18:31:39 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
get_frame_extents(Display *dpy, Window w,
|
|
|
|
unsigned int *left,
|
|
|
|
unsigned int *right,
|
|
|
|
unsigned int *top,
|
|
|
|
unsigned int *bottom);
|
|
|
|
|
|
|
|
static void
|
|
|
|
paint_all(Display *dpy, XserverRegion region);
|
|
|
|
|
|
|
|
static void
|
|
|
|
add_damage(Display *dpy, XserverRegion damage);
|
|
|
|
|
|
|
|
static void
|
|
|
|
repair_win(Display *dpy, win *w);
|
|
|
|
|
|
|
|
static wintype
|
|
|
|
get_wintype_prop(Display * dpy, Window w);
|
|
|
|
|
|
|
|
static wintype
|
|
|
|
determine_wintype(Display *dpy, Window w, Window top);
|
|
|
|
|
|
|
|
static void
|
|
|
|
map_win(Display *dpy, Window id,
|
|
|
|
unsigned long sequence, Bool fade,
|
|
|
|
Bool override_redirect);
|
|
|
|
|
|
|
|
static void
|
|
|
|
finish_unmap_win(Display *dpy, win *w);
|
|
|
|
|
|
|
|
#if HAS_NAME_WINDOW_PIXMAP
|
|
|
|
static void
|
|
|
|
unmap_callback(Display *dpy, win *w);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void
|
|
|
|
unmap_win(Display *dpy, Window id, Bool fade);
|
|
|
|
|
2012-09-13 13:58:05 +08:00
|
|
|
static opacity_t
|
2012-09-11 22:22:58 +08:00
|
|
|
get_opacity_prop(Display *dpy, win *w, opacity_t def);
|
2012-02-08 18:31:39 +08:00
|
|
|
|
|
|
|
static double
|
|
|
|
get_opacity_percent(Display *dpy, win *w);
|
|
|
|
|
|
|
|
static void
|
|
|
|
determine_mode(Display *dpy, win *w);
|
|
|
|
|
2012-09-13 13:58:05 +08:00
|
|
|
static void
|
|
|
|
set_opacity(Display *dpy, win *w, opacity_t opacity);
|
2012-09-11 22:22:58 +08:00
|
|
|
|
2012-09-13 13:58:05 +08:00
|
|
|
static void
|
|
|
|
calc_opacity(Display *dpy, win *w, Bool refetch_prop);
|
2012-02-08 18:31:39 +08:00
|
|
|
|
2012-09-13 13:58:05 +08:00
|
|
|
static void
|
|
|
|
calc_dim(Display *dpy, win *w);
|
2012-09-12 10:52:52 +08:00
|
|
|
|
2012-02-08 18:31:39 +08:00
|
|
|
static void
|
|
|
|
add_win(Display *dpy, Window id, Window prev, Bool override_redirect);
|
|
|
|
|
2012-02-27 12:00:12 +08:00
|
|
|
static void
|
2012-02-08 18:31:39 +08:00
|
|
|
restack_win(Display *dpy, win *w, Window new_above);
|
|
|
|
|
|
|
|
static void
|
|
|
|
configure_win(Display *dpy, XConfigureEvent *ce);
|
|
|
|
|
|
|
|
static void
|
|
|
|
circulate_win(Display *dpy, XCirculateEvent *ce);
|
|
|
|
|
|
|
|
static void
|
|
|
|
finish_destroy_win(Display *dpy, Window id);
|
|
|
|
|
|
|
|
#if HAS_NAME_WINDOW_PIXMAP
|
|
|
|
static void
|
|
|
|
destroy_callback(Display *dpy, win *w);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static void
|
|
|
|
destroy_win(Display *dpy, Window id, Bool fade);
|
|
|
|
|
|
|
|
static void
|
|
|
|
damage_win(Display *dpy, XDamageNotifyEvent *de);
|
|
|
|
|
|
|
|
static int
|
|
|
|
error(Display *dpy, XErrorEvent *ev);
|
|
|
|
|
|
|
|
static void
|
|
|
|
expose_root(Display *dpy, Window root, XRectangle *rects, int nrects);
|
|
|
|
|
2012-09-12 09:08:15 +08:00
|
|
|
#if defined(DEBUG_EVENTS) || defined(DEBUG_RESTACK)
|
2012-09-13 13:58:05 +08:00
|
|
|
static int
|
|
|
|
window_get_name(Window w, char **name);
|
2012-09-12 09:08:15 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DEBUG_EVENTS
|
2012-02-08 18:31:39 +08:00
|
|
|
static int
|
|
|
|
ev_serial(XEvent *ev);
|
|
|
|
|
|
|
|
static char *
|
|
|
|
ev_name(XEvent *ev);
|
|
|
|
|
|
|
|
static Window
|
|
|
|
ev_window(XEvent *ev);
|
|
|
|
#endif
|
|
|
|
|
2012-02-27 12:00:12 +08:00
|
|
|
static void
|
|
|
|
usage();
|
2012-02-08 18:31:39 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
register_cm(int scr);
|
|
|
|
|
|
|
|
inline static void
|
|
|
|
ev_focus_in(XFocusChangeEvent *ev);
|
|
|
|
|
|
|
|
inline static void
|
|
|
|
ev_focus_out(XFocusChangeEvent *ev);
|
|
|
|
|
|
|
|
inline static void
|
|
|
|
ev_create_notify(XCreateWindowEvent *ev);
|
|
|
|
|
|
|
|
inline static void
|
|
|
|
ev_configure_notify(XConfigureEvent *ev);
|
|
|
|
|
|
|
|
inline static void
|
|
|
|
ev_destroy_notify(XDestroyWindowEvent *ev);
|
|
|
|
|
|
|
|
inline static void
|
|
|
|
ev_map_notify(XMapEvent *ev);
|
|
|
|
|
|
|
|
inline static void
|
|
|
|
ev_unmap_notify(XUnmapEvent *ev);
|
|
|
|
|
|
|
|
inline static void
|
|
|
|
ev_reparent_notify(XReparentEvent *ev);
|
|
|
|
|
|
|
|
inline static void
|
|
|
|
ev_circulate_notify(XCirculateEvent *ev);
|
|
|
|
|
|
|
|
inline static void
|
|
|
|
ev_expose(XExposeEvent *ev);
|
|
|
|
|
|
|
|
inline static void
|
|
|
|
ev_property_notify(XPropertyEvent *ev);
|
|
|
|
|
|
|
|
inline static void
|
|
|
|
ev_damage_notify(XDamageNotifyEvent *ev);
|
|
|
|
|
2012-09-13 13:58:05 +08:00
|
|
|
inline static void
|
|
|
|
ev_shape_notify(XShapeEvent *ev);
|
|
|
|
|
2012-09-11 21:33:03 +08:00
|
|
|
/**
|
|
|
|
* Destory the cached border_size of a window.
|
|
|
|
*/
|
2012-09-13 13:58:05 +08:00
|
|
|
inline static void
|
|
|
|
win_free_border_size(Display *dpy, win *w) {
|
2012-09-11 21:33:03 +08:00
|
|
|
if (w->border_size) {
|
|
|
|
set_ignore(dpy, NextRequest(dpy));
|
|
|
|
XFixesDestroyRegion(dpy, w->border_size);
|
|
|
|
w->border_size = None;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a region of the screen size.
|
|
|
|
*/
|
2012-09-13 13:58:05 +08:00
|
|
|
inline static XserverRegion
|
|
|
|
get_screen_region(Display *dpy) {
|
2012-09-11 21:33:03 +08:00
|
|
|
XRectangle r;
|
|
|
|
|
|
|
|
r.x = 0;
|
|
|
|
r.y = 0;
|
|
|
|
r.width = root_width;
|
|
|
|
r.height = root_height;
|
|
|
|
return XFixesCreateRegion(dpy, &r, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copies a region
|
|
|
|
*/
|
2012-09-13 13:58:05 +08:00
|
|
|
inline static XserverRegion
|
|
|
|
copy_region(Display *dpy, XserverRegion oldregion) {
|
2012-09-11 21:33:03 +08:00
|
|
|
XserverRegion region = XFixesCreateRegion(dpy, NULL, 0);
|
|
|
|
|
|
|
|
XFixesCopyRegion(dpy, region, oldregion);
|
|
|
|
|
|
|
|
return region;
|
|
|
|
}
|
|
|
|
|
2012-09-12 10:52:52 +08:00
|
|
|
/**
|
|
|
|
* Add a window to damaged area.
|
|
|
|
*
|
|
|
|
* @param dpy display in use
|
|
|
|
* @param w struct _win element representing the window
|
|
|
|
*/
|
2012-09-13 13:58:05 +08:00
|
|
|
static inline void
|
|
|
|
add_damage_win(Display *dpy, win *w) {
|
|
|
|
if (w->extents) {
|
2012-09-12 10:52:52 +08:00
|
|
|
add_damage(dpy, copy_region(dpy, w->extents));
|
2012-09-13 13:58:05 +08:00
|
|
|
}
|
2012-09-12 10:52:52 +08:00
|
|
|
}
|
|
|
|
|
2012-02-08 18:31:39 +08:00
|
|
|
inline static void
|
2012-02-27 12:00:12 +08:00
|
|
|
ev_handle(XEvent *ev);
|
|
|
|
|
|
|
|
static void
|
|
|
|
fork_after();
|
2012-02-08 18:31:39 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
get_atoms();
|