summaryrefslogtreecommitdiff
path: root/list.h
diff options
context:
space:
mode:
Diffstat (limited to 'list.h')
-rw-r--r--list.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/list.h b/list.h
new file mode 100644
index 0000000..bbbea95
--- /dev/null
+++ b/list.h
@@ -0,0 +1,16 @@
+/* functions for managing the window list */
+
+#ifndef _LIST_H
+#define _LIST_H
+
+rp_window *add_to_window_list (screen_info *s, Window w);
+void init_window_list ();
+void remove_from_window_list (rp_window *w);
+void next_window ();
+void prev_window ();
+void last_window ();
+rp_window *find_window (Window w);
+void maximize_current_window ();
+void set_active_window (rp_window *rp_w);
+void set_current_window (rp_window *win);
+#endif /* _LIST_H */