Merge pull request #1880 from Airblader/feature-665

Move data from Con to Window
This commit is contained in:
Michael Stapelberg
2015-09-03 20:35:43 +02:00
6 changed files with 54 additions and 49 deletions

View File

@ -409,6 +409,18 @@ struct Window {
/** Depth of the window */
uint16_t depth;
/* the wanted size of the window, used in combination with size
* increments (see below). */
int base_width;
int base_height;
/* minimum increment size specified for the window (in pixels) */
int width_increment;
int height_increment;
/* aspect ratio from WM_NORMAL_HINTS (MPlayer uses this for example) */
double aspect_ratio;
};
/**
@ -570,21 +582,10 @@ struct Con {
double percent;
/* aspect ratio from WM_NORMAL_HINTS (MPlayer uses this for example) */
double aspect_ratio;
/* the wanted size of the window, used in combination with size
* increments (see below). */
int base_width;
int base_height;
/* the x11 border pixel attribute */
int border_width;
int current_border_width;
/* minimum increment size specified for the window (in pixels) */
int width_increment;
int height_increment;
struct Window *window;
/* timer used for disabling urgency */