]> git.sur5r.net Git - i3/i3/blobdiff - include/data.h
travis: remove deprecated docker login -e flag (#3651)
[i3/i3] / include / data.h
index 32fb098f970bb1bed29e036b9bb46550882e851e..c3cada3702819e0f84f7c65cc12c105e6163c862 100644 (file)
@@ -477,8 +477,18 @@ struct Window {
     int min_width;
     int min_height;
 
+    /* Maximum size specified for the window. */
+    int max_width;
+    int max_height;
+
     /* aspect ratio from WM_NORMAL_HINTS (MPlayer uses this for example) */
-    double aspect_ratio;
+    double min_aspect_ratio;
+    double max_aspect_ratio;
+
+    /** The window has a nonrectangular shape. */
+    bool shaped;
+    /** The window has a nonrectangular input shape. */
+    bool input_shaped;
 };
 
 /**