Implement resizing (still buggy)

Committing basic resizing functionality. We need testcases for the bugs and
then eliminate them.
This commit is contained in:
Michael Stapelberg
2010-11-29 10:56:16 +01:00
parent a86d8ab329
commit ee45c92564
5 changed files with 211 additions and 4 deletions

View File

@ -52,5 +52,6 @@
#include "match.h"
#include "cmdparse.h"
#include "xcursor.h"
#include "resize.h"
#endif

6
include/resize.h Normal file
View File

@ -0,0 +1,6 @@
#ifndef _RESIZE_H
#define _RESIZE_H
int resize_graphical_handler(Con *first, Con *second, orientation_t orientation, xcb_button_press_event_t *event);
#endif