summaryrefslogtreecommitdiff
path: root/src/fe-text/mainwindows.h
blob: bad52393eae64d05ef3ff3abee7b2098b7422e91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef __MAINWINDOWS_H
#define __MAINWINDOWS_H

#include "windows.h"
#include "screen.h"

typedef struct {
	WINDOW_REC *active;

	WINDOW *curses_win;
	int first_line, last_line, lines;
	int statusbar_lines;
	void *statusbar;
	void *statusbar_channel_item;
} MAIN_WINDOW_REC;

extern GSList *mainwindows;
extern MAIN_WINDOW_REC *active_mainwin;

void mainwindows_init(void);
void mainwindows_deinit(void);

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);

int mainwindows_reserve_lines(int count, int up);

#endif