mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
/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:
parent
88b091cc95
commit
5ab27ea604
5 changed files with 262 additions and 31 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue