29 DLOG(
"new x = %d, y = %d\n", new_x, new_y);
33 new_x < (output->
rect.
x + 25))
40 new_y < (output->
rect.
y + 25))
51 DLOG(
"Find two participants for resizing container=%p in direction=%i\n", other, direction);
52 Con *first = *current;
55 DLOG(
"Current container is NULL, aborting.\n");
61 const bool dir_backwards = (direction ==
D_UP || direction ==
D_LEFT);
62 while (first->
type != CT_WORKSPACE &&
63 first->
type != CT_FLOATING_CON &&
82 DLOG(
"No second container in this direction found, trying to look further up in the tree...\n");
87 DLOG(
"Found participants: first=%p and second=%p.\n", first, second);
90 if (first == NULL || second == NULL) {
91 DLOG(
"Could not find two participants for this resize request.\n");
99 DLOG(
"resize handler\n");
111 mask = XCB_CW_OVERRIDE_REDIRECT;
126 if (orientation ==
HORIZ) {
127 helprect.
x = second->
rect.
x;
128 helprect.
y = second->
rect.
y;
131 initial_position = second->
rect.
x;
132 xcb_warp_pointer(
conn, XCB_NONE, event->root, 0, 0, 0, 0,
133 second->
rect.
x, event->root_y);
135 helprect.
x = second->
rect.
x;
136 helprect.
y = second->
rect.
y;
139 initial_position = second->
rect.
y;
140 xcb_warp_pointer(
conn, XCB_NONE, event->root, 0, 0, 0, 0,
141 event->root_x, second->
rect.
y);
144 mask = XCB_CW_BACK_PIXEL;
147 mask |= XCB_CW_OVERRIDE_REDIRECT;
153 xcb_circulate_window(
conn, XCB_CIRCULATE_RAISE_LOWEST, helpwin);
158 new_position = initial_position;
165 xcb_destroy_window(
conn, helpwin);
166 xcb_destroy_window(
conn, grabwin);
173 int pixels = (new_position - initial_position);
175 DLOG(
"Done, pixels = %d\n", pixels);
183 double new_percent, difference;
184 double percent = first->
percent;
185 DLOG(
"percent = %f\n", percent);
187 DLOG(
"original = %d\n", original);
188 new_percent = (original + pixels) * (percent / original);
189 difference = percent - new_percent;
190 DLOG(
"difference = %f\n", difference);
191 DLOG(
"new percent = %f\n", new_percent);
195 double s_percent = second->
percent;
196 second->
percent = s_percent + difference;
void con_fix_percent(Con *con)
Updates the percent attribute of the children of the given container.
drag_result_t
This is the return value of a drag operation like drag_pointer.
void x_mask_event_mask(uint32_t mask)
Applies the given mask to the event mask of every i3 window decoration X11 window.
A 'Con' represents everything from the X11 root window down to a single X11 window.
#define TAILQ_PREV(elm, headname, field)
xcb_connection_t * conn
XCB connection and root screen.
int resize_graphical_handler(Con *first, Con *second, orientation_t orientation, const xcb_button_press_event_t *event)
orientation_t orientation
xcb_window_t create_window(xcb_connection_t *conn, Rect dims, uint16_t depth, xcb_visualid_t visual, uint16_t window_class, enum xcursor_cursor_t cursor, bool map, uint32_t mask, uint32_t *values)
Convenience wrapper around xcb_create_window which takes care of depth, generating an ID and checking...
struct Config::config_client client
Con * con_get_output(Con *con)
Gets the output container (first container with CT_OUTPUT in hierarchy) this node is on...
bool resize_find_tiling_participants(Con **current, Con **other, direction_t direction)
orientation_t con_orientation(Con *con)
Returns the orientation of the given container (for stacked containers, vertical orientation is used ...
drag_result_t drag_pointer(Con *con, const xcb_button_press_event_t *event, xcb_window_t confine_to, border_t border, int cursor, callback_t callback, const void *extra)
This function grabs your pointer and keyboard and lets you drag stuff around (borders).
struct Colortriple focused
int logical_px(const int logical)
Convert a logical amount of pixels (e.g.
#define TAILQ_NEXT(elm, field)
DRAGGING_CB(resize_callback)
Stores a rectangle, for example the size of a window, the child window etc.