]> git.sur5r.net Git - i3/i3/blobdiff - include/output.h
Ensure all *.[ch] files include config.h
[i3/i3] / include / output.h
index e0125c06f74540d7c6ef96e4d655dd52a139ecc9..b13c97283ff840cf5bc4eb7509118ef2d45565ea 100644 (file)
@@ -9,6 +9,8 @@
  */
 #pragma once
 
+#include <config.h>
+
 /**
  * Returns the output container below the given output container.
  *
@@ -21,3 +23,16 @@ Con *output_get_content(Con *output);
  *
  */
 Output *get_output_from_string(Output *current_output, const char *output_str);
+
+/**
+ * Returns the output for the given con.
+ *
+ */
+Output *get_output_for_con(Con *con);
+
+/**
+ * Iterates over all outputs and pushes sticky windows to the currently visible
+ * workspace on that output.
+ *
+ */
+void output_push_sticky_windows(Con *to_focus);