/SAVEWINDOWS saves now split windows

git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1202 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-02-10 07:26:54 +00:00 committed by cras
commit 5ab27ea604
5 changed files with 262 additions and 31 deletions

View file

@ -4,6 +4,8 @@
#include "fe-windows.h"
#include "screen.h"
#define WINDOW_MIN_SIZE 2
typedef struct {
WINDOW_REC *active;
GSList *sticky_windows; /* list of windows allowed to show only in this mainwindow */
@ -27,9 +29,12 @@ MAIN_WINDOW_REC *mainwindow_create(void);
void mainwindow_destroy(MAIN_WINDOW_REC *window);
void mainwindows_redraw(void);
void mainwindows_resize(int ychange, int xchange);
void mainwindows_recreate(void);
void mainwindow_set_size(MAIN_WINDOW_REC *window, int size);
void mainwindows_resize(int ychange, int xchange);
int mainwindows_reserve_lines(int count, int up);
GSList *mainwindows_get_sorted(int reverse);
#endif