mirror of
https://github.com/irssi/irssi.git
synced 2025-04-26 04:51:11 -05:00
24 lines
692 B
C
24 lines
692 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_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);
|
|
|
|
#endif
|