RichString.h 2.5 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
#include <stdlib.h>
#include <string.h>
14
#include <ctype.h>
Hisham Muhammad's avatar
Hisham Muhammad committed
15
16
17

#include "debug.h"
#include <assert.h>
18
#ifdef HAVE_CURSES_H
19
#include <curses.h>
20
21
22
23
24
25
#elif HAVE_NCURSES_H
#include <ncurses.h>
#elif HAVE_NCURSESW_CURSES_H
#include <ncursesw/curses.h>
#elif HAVE_NCURSES_NCURSES_H
#include <ncurses/ncurses.h>
26
#endif
Hisham Muhammad's avatar
Hisham Muhammad committed
27
28
29
30

#define RICHSTRING_MAXLEN 300


31
32
33
34
35
36
#define RichString_size(this) ((this)->chlen)
#define RichString_sizeVal(this) ((this).chlen)

#define RichString_begin(this) RichString (this); (this).chlen = 0; (this).chptr = (this).chstr;
#define RichString_beginAllocated(this) (this).chlen = 0; (this).chptr = (this).chstr;
#define RichString_end(this) RichString_prune(&(this));
37

38
#ifdef HAVE_LIBNCURSESW
39
40
41
42
43
#define RichString_printVal(this, y, x) mvadd_wchstr(y, x, (this).chptr)
#define RichString_printoffnVal(this, y, x, off, n) mvadd_wchnstr(y, x, (this).chptr + off, n)
#define RichString_getCharVal(this, i) ((this).chptr[i].chars[0] & 255)
#define RichString_setChar(this, at, ch) do{ (this)->chptr[(at)].chars[0] = ch; } while(0)
#define CharType cchar_t
44
#else
45
46
47
48
49
#define RichString_printVal(this, y, x) mvaddchstr(y, x, (this).chptr)
#define RichString_printoffnVal(this, y, x, off, n) mvaddchnstr(y, x, (this).chptr + off, n)
#define RichString_getCharVal(this, i) ((this).chptr[i])
#define RichString_setChar(this, at, ch) do{ (this)->chptr[(at)] = ch; } while(0)
#define CharType chtype
50
51
#endif

Hisham Muhammad's avatar
Hisham Muhammad committed
52
typedef struct RichString_ {
53
54
55
   int chlen;
   CharType chstr[RICHSTRING_MAXLEN+1];
   CharType* chptr;
Hisham Muhammad's avatar
Hisham Muhammad committed
56
57
58
} RichString;


Hisham Muhammad's avatar
Hisham Muhammad committed
59
60
61
#ifndef MIN
#define MIN(a,b) ((a)<(b)?(a):(b))
#endif
Hisham Muhammad's avatar
Hisham Muhammad committed
62

63
64
#define charBytes(n) (sizeof(CharType) * (n)) 

65
#ifdef HAVE_LIBNCURSESW
Hisham Muhammad's avatar
Hisham Muhammad committed
66

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

69
extern void RichString_setAttrn(RichString* this, int attrs, int start, int finish);
70

71
int RichString_findChar(RichString* this, char c, int start);
72
73
74

#else

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

77
void RichString_setAttrn(RichString* this, int attrs, int start, int finish);
78

79
int RichString_findChar(RichString* this, char c, int start);
80
81

#endif
Hisham Muhammad's avatar
Hisham Muhammad committed
82

Hisham Muhammad's avatar
Hisham Muhammad committed
83
84
void RichString_prune(RichString* this);

85
void RichString_setAttr(RichString* this, int attrs);
Hisham Muhammad's avatar
Hisham Muhammad committed
86

Hisham Muhammad's avatar
Hisham Muhammad committed
87
extern void RichString_append(RichString* this, int attrs, const char* data);
88

Hisham Muhammad's avatar
Hisham Muhammad committed
89
void RichString_write(RichString* this, int attrs, const char* data);
Hisham Muhammad's avatar
Hisham Muhammad committed
90
91

#endif