]> git.sur5r.net Git - i3/i3/commitdiff
libi3: add logical_px() for Retina display support
authorMichael Stapelberg <michael@stapelberg.de>
Sat, 26 Apr 2014 15:17:37 +0000 (17:17 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Sat, 26 Apr 2014 15:17:37 +0000 (17:17 +0200)
include/libi3.h
libi3/dpi.c [new file with mode: 0644]

index 3815777b49b713ec6679b6c628949fe6ca69e137..dc5d537f7fecef0289a2a104ec38f60dfd91bd92 100644 (file)
@@ -381,3 +381,11 @@ char *get_process_filename(const char *prefix);
  * Returned value must be freed by the caller.
  */
 char *get_exe_path(const char *argv0);
+
+/**
+ * Convert a logical amount of pixels (e.g. 2 pixels on a “standard” 96 DPI
+ * screen) to a corresponding amount of physical pixels on a standard or retina
+ * screen, e.g. 5 pixels on a 227 DPI MacBook Pro 13" Retina screen.
+ *
+ */
+int logical_px(const int logical);
diff --git a/libi3/dpi.c b/libi3/dpi.c
new file mode 100644 (file)
index 0000000..c015065
--- /dev/null
@@ -0,0 +1,16 @@
+#include "libi3.h"
+#include <math.h>
+
+extern xcb_screen_t *root_screen;
+
+/*
+ * Convert a logical amount of pixels (e.g. 2 pixels on a “standard” 96 DPI
+ * screen) to a corresponding amount of physical pixels on a standard or retina
+ * screen, e.g. 5 pixels on a 227 DPI MacBook Pro 13" Retina screen.
+ *
+ */
+int logical_px(const int logical) {
+    const double dpi = (double)root_screen->height_in_pixels * 25.4 /
+                       (double)root_screen->height_in_millimeters;
+       return ceil((dpi / 96.0) * logical);
+}