X-Git-Url: https://git.lizzy.rs/?a=blobdiff_plain;f=window.h;h=78d1983b606a5d254098f1ea3f7d2e6d28532a71;hb=e0b6cd3cd42863addcc9a719ea6fe2e44883c72d;hp=090864a2d2a493caf9e3bccd87a863237b6fce49;hpb=6c7d7d94444d93feaf9293e4c0c829e6958d20b7;p=bspwm.git diff --git a/window.h b/window.h index 090864a..78d1983 100644 --- a/window.h +++ b/window.h @@ -1,48 +1,84 @@ -#ifndef _WINDOW_H -#define _WINDOW_H +/* * Copyright (c) 2012-2013 Bastien Dejean + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without modification, + * are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation and/or + * other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR + * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES + * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON + * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +#ifndef BSPWM_WINDOW_H +#define BSPWM_WINDOW_H #include #include #include +#include #include "types.h" -void center(xcb_rectangle_t, xcb_rectangle_t *); -bool contains(xcb_rectangle_t, xcb_rectangle_t); -bool might_cover(desktop_t *, node_t *); -bool locate_window(xcb_window_t, window_location_t *); -bool locate_desktop(char *, desktop_location_t *); -bool is_inside(monitor_t *, xcb_point_t); -monitor_t *monitor_from_point(xcb_point_t); -monitor_t *underlying_monitor(client_t *); -void manage_window(monitor_t *, desktop_t *, xcb_window_t); +void schedule_window(xcb_window_t win); +void manage_window(xcb_window_t win, rule_consequence_t *csq, int fd); +void unmanage_window(xcb_window_t win); +void window_draw_border(node_t *n, bool focused_window, bool focused_monitor); +pointer_state_t *make_pointer_state(void); +bool contains(xcb_rectangle_t a, xcb_rectangle_t b); +xcb_rectangle_t get_rectangle(client_t *c); +void get_side_handle(client_t *c, direction_t dir, xcb_point_t *pt); void adopt_orphans(void); -void window_draw_border(node_t *, bool, bool); -uint32_t get_border_color(client_t *, bool, bool); -void update_floating_rectangle(client_t *); -void query_pointer(xcb_window_t *, xcb_point_t *); -void list_windows(char *); -void window_close(node_t *); -void window_kill(desktop_t *, node_t *); -void toggle_fullscreen(monitor_t *, client_t *); -void toggle_floating(node_t *); -void toggle_locked(client_t *); -void set_urgency(monitor_t *, desktop_t *, node_t *, bool); -void set_shadow(xcb_window_t, uint32_t); -void enable_shadow(xcb_window_t); -void disable_shadow(xcb_window_t); -void window_border_width(xcb_window_t, uint32_t); -void window_move(xcb_window_t, int16_t, int16_t); -void window_move_resize(xcb_window_t, int16_t, int16_t, uint16_t, uint16_t); -void window_focus(xcb_window_t); -void window_raise(xcb_window_t); -void stack_tiled(desktop_t *); -void window_lower(xcb_window_t); -void window_set_visibility(xcb_window_t, bool); -void window_hide(xcb_window_t); -void window_show(xcb_window_t); +void window_close(node_t *n); +void window_kill(monitor_t *m, desktop_t *d, node_t *n); +void set_fullscreen(node_t *n, bool value); +void set_floating(node_t *n, bool value); +void set_locked(monitor_t *m, desktop_t *d, node_t *n, bool value); +void set_sticky(monitor_t *m, desktop_t *d, node_t *n, bool value); +void set_private(monitor_t *m, desktop_t *d, node_t *n, bool value); +void set_urgency(monitor_t *m, desktop_t *d, node_t *n, bool value); +void set_floating_atom(xcb_window_t win, uint32_t value); +void enable_floating_atom(xcb_window_t win); +void disable_floating_atom(xcb_window_t win); +uint32_t get_border_color(client_t *c, bool focused_window, bool focused_monitor); +void update_floating_rectangle(client_t *c); +void query_pointer(xcb_window_t *win, xcb_point_t *pt); +bool window_focus(xcb_window_t win); +void window_border_width(xcb_window_t win, uint32_t bw); +void window_move(xcb_window_t win, int16_t x, int16_t y); +void window_resize(xcb_window_t win, uint16_t w, uint16_t h); +void window_move_resize(xcb_window_t win, int16_t x, int16_t y, uint16_t w, uint16_t h); +void window_raise(xcb_window_t win); +void window_center(monitor_t *m, client_t *c); +void window_stack(xcb_window_t w1, xcb_window_t w2, uint32_t mode); +void window_above(xcb_window_t w1, xcb_window_t w2); +void window_below(xcb_window_t w1, xcb_window_t w2); +void window_lower(xcb_window_t win); +void window_set_visibility(xcb_window_t win, bool visible); +void window_hide(xcb_window_t win); +void window_show(xcb_window_t win); void toggle_visibility(void); void enable_motion_recorder(void); void disable_motion_recorder(void); +void update_motion_recorder(void); +void update_input_focus(void); +void set_input_focus(node_t *n); void clear_input_focus(void); +void center_pointer(monitor_t *m); +void get_atom(char *name, xcb_atom_t *atom); +void set_atom(xcb_window_t win, xcb_atom_t atom, uint32_t value); +bool has_proto(xcb_atom_t atom, xcb_icccm_get_wm_protocols_reply_t *protocols); +void send_client_message(xcb_window_t win, xcb_atom_t property, xcb_atom_t value); #endif