RichString.h 1.88 KB
Newer Older
Hisham Muhammad's avatar
Hisham Muhammad committed
1
/* Do not edit this file. It was automatically generated. */
Hisham Muhammad's avatar
Hisham Muhammad committed
2
3
4
5
6

#ifndef HEADER_RichString
#define HEADER_RichString


7
8
9
10
11
#ifndef CONFIG_H
#define CONFIG_H
#include "config.h"
#endif

Hisham Muhammad's avatar
Hisham Muhammad committed
12
13
14
15
16
17
#include <stdlib.h>
#include <string.h>
#include <curses.h>

#include "debug.h"
#include <assert.h>
18
19
20
#ifdef HAVE_LIBNCURSESW
#include <wchar.h>
#endif
Hisham Muhammad's avatar
Hisham Muhammad committed
21
22
23
24

#define RICHSTRING_MAXLEN 300


25
26
27
#define RichString_init(this) (this)->len = 0
#define RichString_initVal(this) (this).len = 0

28
29
30
31
32
33
34
35
36
37
#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

Hisham Muhammad's avatar
Hisham Muhammad committed
38
39
typedef struct RichString_ {
   int len;
40
41
42
#ifdef HAVE_LIBNCURSESW
   cchar_t chstr[RICHSTRING_MAXLEN+1];
#else
Hisham Muhammad's avatar
Hisham Muhammad committed
43
   chtype chstr[RICHSTRING_MAXLEN+1];
44
#endif
Hisham Muhammad's avatar
Hisham Muhammad committed
45
46
47
} RichString;


Hisham Muhammad's avatar
Hisham Muhammad committed
48
49
50
#ifndef MIN
#define MIN(a,b) ((a)<(b)?(a):(b))
#endif
Hisham Muhammad's avatar
Hisham Muhammad committed
51

52
#ifdef HAVE_LIBNCURSESW
Hisham Muhammad's avatar
Hisham Muhammad committed
53

54
extern void RichString_appendn(RichString* this, int attrs, char* data_c, int len);
Hisham Muhammad's avatar
Hisham Muhammad committed
55

56
57
58
59
60
61
62
63
64
65
66
67
68
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
Hisham Muhammad's avatar
Hisham Muhammad committed
69
70
71

void RichString_setAttr(RichString *this, int attrs);

72
73
74
extern void RichString_append(RichString* this, int attrs, char* data);

void RichString_write(RichString* this, int attrs, char* data);
Hisham Muhammad's avatar
Hisham Muhammad committed
75
76
77
78

RichString RichString_quickString(int attrs, char* data);

#endif