htop/RichString.h

83 lines
2.0 KiB
C
Raw Normal View History

2006-06-06 20:28:42 +00:00
/* Do not edit this file. It was automatically generated. */
2006-03-04 18:16:49 +00:00
#ifndef HEADER_RichString
#define HEADER_RichString
#ifndef CONFIG_H
#define CONFIG_H
#include "config.h"
#endif
2006-03-04 18:16:49 +00:00
#include <stdlib.h>
#include <string.h>
2009-03-11 13:51:50 +00:00
#include <ctype.h>
2006-03-04 18:16:49 +00:00
#include "debug.h"
#include <assert.h>
#ifdef HAVE_LIBNCURSESW
2009-06-02 04:51:23 +00:00
#include <ncursesw/curses.h>
#else
#include <curses.h>
#endif
2006-03-04 18:16:49 +00:00
#define RICHSTRING_MAXLEN 300
#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
2006-03-04 18:16:49 +00:00
typedef struct RichString_ {
int len;
#ifdef HAVE_LIBNCURSESW
cchar_t chstr[RICHSTRING_MAXLEN+1];
#else
2006-03-04 18:16:49 +00:00
chtype chstr[RICHSTRING_MAXLEN+1];
#endif
2006-03-04 18:16:49 +00:00
} RichString;
2006-06-06 20:28:42 +00:00
#ifndef MIN
#define MIN(a,b) ((a)<(b)?(a):(b))
#endif
2006-03-04 18:16:49 +00:00
#ifdef HAVE_LIBNCURSESW
2006-03-04 18:16:49 +00:00
extern void RichString_appendn(RichString* this, int attrs, char* data_c, int len);
2006-03-04 18:16:49 +00:00
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
2006-03-04 18:16:49 +00:00
2009-06-02 04:51:23 +00:00
void RichString_prune(RichString* this);
2006-03-04 18:16:49 +00:00
void RichString_setAttr(RichString *this, int attrs);
extern void RichString_append(RichString* this, int attrs, char* data);
void RichString_write(RichString* this, int attrs, char* data);
2006-03-04 18:16:49 +00:00
RichString RichString_quickString(int attrs, char* data);
#endif