mirror of
https://github.com/swaywm/sway.git
synced 2025-04-03 19:07:45 +03:00
Implement resizing tiled containers via cursor
* The OP_RESIZE seat operation has been renamed to OP_RESIZE_FLOATING, and OP_RESIZE_TILING has been introduced. * Similar to the above, seat_begin_resize and handle_resize_motion have been renamed and tiling variants introduced. * resize.c's resize_tiled has to be used, so container_resize_tiled has been introduced in resize.c to allow external code to call it.
This commit is contained in:
parent
146cc0a441
commit
b4a0363d17
10 changed files with 173 additions and 34 deletions
|
@ -77,6 +77,15 @@ int list_seq_find(list_t *list, int compare(const void *item, const void *data),
|
|||
return -1;
|
||||
}
|
||||
|
||||
int list_find(list_t *list, void *item) {
|
||||
for (int i = 0; i < list->length; i++) {
|
||||
if (list->items[i] == item) {
|
||||
return i;
|
||||
}
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
|
||||
void list_swap(list_t *list, int src, int dest) {
|
||||
void *tmp = list->items[src];
|
||||
list->items[src] = list->items[dest];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue