home · contact · privacy
Moved keybindings manipulation stuff into its own library.
[plomrogue] / windows.h
index 779a672ec0f1348016b13ccab09c5d7c42307bc8..b5df4981e98fe13a7d9f3cc9ed2e19e44692c02b 100644 (file)
--- a/windows.h
+++ b/windows.h
@@ -29,7 +29,8 @@ struct Corners {
   struct yx br; };
 
 struct  WinMeta init_win_meta (WINDOW *);
-struct Win init_window (struct WinMeta *, char *);
+void scroll_pad (struct WinMeta *, char);
+struct Win init_window (struct WinMeta *, char *, void *, void *);
 void append_window (struct WinMeta *, struct Win *);
 void suspend_window (struct WinMeta *, struct Win *);
 struct yx place_window (struct WinMeta *, struct Win *);
@@ -39,6 +40,6 @@ void draw_windows (struct Win *);
 void draw_windows_borders (struct Win *, struct Win *, struct Corners *, int);
 void draw_window_borders (struct Win *, char);
 void draw_all_windows (struct WinMeta *);
-void resize_window (struct WinMeta *, char);
+void resize_active_window (struct WinMeta *, int, int);
 void cycle_active_window (struct WinMeta *, char);
-void shift_window (struct WinMeta *, char);
+void shift_active_window (struct WinMeta *, char);