From c74c38760df69bb87e93dff18cf91464e5d02f37 Mon Sep 17 00:00:00 2001 From: Daniel Lange Date: Mon, 11 Apr 2016 13:00:22 +0200 Subject: Imported Upstream version 0.8.1 --- RichString.h | 44 ++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 40 insertions(+), 4 deletions(-) (limited to 'RichString.h') diff --git a/RichString.h b/RichString.h index 6eed0d9..7f777bb 100644 --- a/RichString.h +++ b/RichString.h @@ -4,12 +4,20 @@ #define HEADER_RichString +#ifndef CONFIG_H +#define CONFIG_H +#include "config.h" +#endif + #include #include #include #include "debug.h" #include +#ifdef HAVE_LIBNCURSESW +#include +#endif #define RICHSTRING_MAXLEN 300 @@ -17,9 +25,23 @@ #define RichString_init(this) (this)->len = 0 #define RichString_initVal(this) (this).len = 0 +#ifdef HAVE_LIBNCURSESW +#define RichString_printVal(this, y, x) mvadd_wchstr(y, x, this.chstr) +#define RichString_printoffnVal(this, y, x, off, n) mvadd_wchnstr(y, x, this.chstr + off, n) +#define RichString_getCharVal(this, i) (this.chstr[i].chars[0] & 255) +#else +#define RichString_printVal(this, y, x) mvaddchstr(y, x, this.chstr) +#define RichString_printoffnVal(this, y, x, off, n) mvaddchnstr(y, x, this.chstr + off, n) +#define RichString_getCharVal(this, i) (this.chstr[i]) +#endif + typedef struct RichString_ { int len; +#ifdef HAVE_LIBNCURSESW + cchar_t chstr[RICHSTRING_MAXLEN+1]; +#else chtype chstr[RICHSTRING_MAXLEN+1]; +#endif } RichString; @@ -27,15 +49,29 @@ typedef struct RichString_ { #define MIN(a,b) ((a)<(b)?(a):(b)) #endif -extern void RichString_appendn(RichString* this, int attrs, char* data, int len); +#ifdef HAVE_LIBNCURSESW -extern void RichString_append(RichString* this, int attrs, char* data); +extern void RichString_appendn(RichString* this, int attrs, char* data_c, int len); -void RichString_write(RichString* this, int attrs, char* data); +extern void RichString_setAttrn(RichString *this, int attrs, int start, int finish); + +int RichString_findChar(RichString *this, char c, int start); + +#else + +extern void RichString_appendn(RichString* this, int attrs, char* data_c, int len); + +void RichString_setAttrn(RichString *this, int attrs, int start, int finish); + +int RichString_findChar(RichString *this, char c, int start); + +#endif void RichString_setAttr(RichString *this, int attrs); -void RichString_applyAttr(RichString *this, int attrs); +extern void RichString_append(RichString* this, int attrs, char* data); + +void RichString_write(RichString* this, int attrs, char* data); RichString RichString_quickString(int attrs, char* data); -- cgit v1.2.3