2000-04-26 08:03:38 +00:00
|
|
|
#ifndef __GUI_PRINTTEXT_H
|
|
|
|
|
#define __GUI_PRINTTEXT_H
|
|
|
|
|
|
2000-11-21 03:00:05 +00:00
|
|
|
#include "gui-windows.h"
|
2001-10-24 22:52:15 +00:00
|
|
|
#include "textbuffer-view.h"
|
2001-08-14 13:19:06 +00:00
|
|
|
#include "formats.h"
|
2000-11-21 03:00:05 +00:00
|
|
|
|
2000-06-30 19:50:56 +00:00
|
|
|
extern int mirc_colors[];
|
|
|
|
|
|
2000-04-26 08:03:38 +00:00
|
|
|
void gui_printtext_init(void);
|
|
|
|
|
void gui_printtext_deinit(void);
|
|
|
|
|
|
2001-10-24 22:52:15 +00:00
|
|
|
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);
|
|
|
|
|
|
2001-02-21 04:21:15 +00:00
|
|
|
void gui_printtext(int xpos, int ypos, const char *str);
|
2014-11-04 12:08:27 +01:00
|
|
|
void gui_printtext_internal(int xpos, int ypos, const char *str);
|
2001-08-14 13:19:06 +00:00
|
|
|
void gui_printtext_after(TEXT_DEST_REC *dest, LINE_REC *prev, const char *str);
|
2014-01-08 13:49:46 +01:00
|
|
|
void gui_printtext_after_time(TEXT_DEST_REC *dest, LINE_REC *prev, const char *str, time_t time);
|
2017-04-25 00:42:53 +02:00
|
|
|
void gui_printtext_window_border(int xpos, int ypos);
|
2001-02-03 19:29:38 +00:00
|
|
|
|
2000-04-26 08:03:38 +00:00
|
|
|
#endif
|