2003-06-30 16:44:03 +04:00
|
|
|
/*
|
|
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
|
|
* Licensed under the GNU General Public License,
|
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
2006-02-13 02:07:28 +03:00
|
|
|
* Copyright 2006 James Bursa <bursa@users.sourceforge.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
* Content for text/plain (interface).
|
2003-02-09 15:58:15 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _NETSURF_RENDER_TEXTPLAIN_H_
|
|
|
|
#define _NETSURF_RENDER_TEXTPLAIN_H_
|
|
|
|
|
2004-03-11 05:19:14 +03:00
|
|
|
struct content;
|
2003-02-09 15:58:15 +03:00
|
|
|
|
2006-02-13 02:07:28 +03:00
|
|
|
struct content_textplain_data {
|
|
|
|
const char *encoding;
|
|
|
|
iconv_t iconv_cd;
|
|
|
|
size_t converted;
|
|
|
|
char *utf8_data;
|
|
|
|
size_t utf8_data_size;
|
|
|
|
size_t utf8_data_allocated;
|
|
|
|
unsigned long physical_line_count;
|
|
|
|
size_t *physical_line_start;
|
|
|
|
};
|
|
|
|
|
2004-06-11 00:41:26 +04:00
|
|
|
bool textplain_create(struct content *c, const char *params[]);
|
2006-02-13 02:07:28 +03:00
|
|
|
bool textplain_process_data(struct content *c, char *data, unsigned int size);
|
2004-06-11 00:41:26 +04:00
|
|
|
bool textplain_convert(struct content *c, int width, int height);
|
2006-02-13 02:07:28 +03:00
|
|
|
void textplain_reformat(struct content *c, int width, int height);
|
|
|
|
void textplain_destroy(struct content *c);
|
|
|
|
bool textplain_redraw(struct content *c, int x, int y,
|
|
|
|
int width, int height,
|
|
|
|
int clip_x0, int clip_y0, int clip_x1, int clip_y1,
|
|
|
|
float scale, unsigned long background_colour);
|
2003-02-09 15:58:15 +03:00
|
|
|
|
|
|
|
#endif
|