mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 20:33:46 +02:00
warning: * may be buggy This commit adds support for sideways splits into Irssi. To that regard, there are a number of new commands available the "R" commands: /window new rsplit - make a new sideways split /window rshow - show an existing window to the right /window rgrow/rshrink/rsize/rbalance - manipulate the size of your sideways split windows the "D" commands: /window dup/ddown/dleft/dright - navigate the windows directionally, as an alternative to /window up/down that you can bind to some key /window move dleft/dright - the same for moving Enjoy!
25 lines
812 B
C
25 lines
812 B
C
#ifndef __GUI_PRINTTEXT_H
|
|
#define __GUI_PRINTTEXT_H
|
|
|
|
#include "gui-windows.h"
|
|
#include "textbuffer-view.h"
|
|
#include "formats.h"
|
|
|
|
extern int mirc_colors[];
|
|
|
|
void gui_printtext_init(void);
|
|
void gui_printtext_deinit(void);
|
|
|
|
void gui_register_indent_func(const char *name, INDENT_FUNC func);
|
|
void gui_unregister_indent_func(const char *name, INDENT_FUNC func);
|
|
|
|
void gui_set_default_indent(const char *name);
|
|
INDENT_FUNC get_default_indent_func(void);
|
|
|
|
void gui_printtext(int xpos, int ypos, const char *str);
|
|
void gui_printtext_internal(int xpos, int ypos, const char *str);
|
|
void gui_printtext_after(TEXT_DEST_REC *dest, LINE_REC *prev, const char *str);
|
|
void gui_printtext_after_time(TEXT_DEST_REC *dest, LINE_REC *prev, const char *str, time_t time);
|
|
void gui_printtext_window_border(int xpos, int ypos);
|
|
|
|
#endif
|