2006-03-04 18:16:49 +00:00
|
|
|
#ifndef HEADER_RichString
|
|
|
|
#define HEADER_RichString
|
2011-12-26 21:35:57 +00:00
|
|
|
/*
|
|
|
|
htop - RichString.h
|
|
|
|
(C) 2004,2011 Hisham H. Muhammad
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2011-12-26 21:35:57 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2008-03-09 02:33:23 +00:00
|
|
|
#include "config.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-09-19 11:55:23 +00:00
|
|
|
#include "ProvideCurses.h"
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2015-08-25 13:23:50 +00:00
|
|
|
|
2010-11-22 12:40:20 +00:00
|
|
|
#define RichString_size(this) ((this)->chlen)
|
|
|
|
#define RichString_sizeVal(this) ((this).chlen)
|
|
|
|
|
2020-10-31 19:08:44 +00:00
|
|
|
#define RichString_begin(this) RichString (this); RichString_beginAllocated(this)
|
2020-11-02 20:30:47 +00:00
|
|
|
#define RichString_beginAllocated(this) do { memset(&(this), 0, sizeof(RichString)); (this).chptr = (this).chstr; } while(0)
|
2020-10-31 19:08:44 +00:00
|
|
|
#define RichString_end(this) RichString_prune(&(this))
|
2006-07-12 01:16:03 +00:00
|
|
|
|
2008-03-09 02:33:23 +00:00
|
|
|
#ifdef HAVE_LIBNCURSESW
|
2010-11-22 12:40:20 +00:00
|
|
|
#define RichString_printVal(this, y, x) mvadd_wchstr(y, x, (this).chptr)
|
2020-10-27 20:26:33 +00:00
|
|
|
#define RichString_printoffnVal(this, y, x, off, n) mvadd_wchnstr(y, x, (this).chptr + (off), n)
|
2010-11-22 12:40:20 +00:00
|
|
|
#define RichString_getCharVal(this, i) ((this).chptr[i].chars[0] & 255)
|
2020-10-31 19:39:01 +00:00
|
|
|
#define RichString_setChar(this, at, ch) do { (this)->chptr[(at)] = (CharType) { .chars = { ch, 0 } }; } while (0)
|
2010-11-22 12:40:20 +00:00
|
|
|
#define CharType cchar_t
|
2008-03-09 02:33:23 +00:00
|
|
|
#else
|
2010-11-22 12:40:20 +00:00
|
|
|
#define RichString_printVal(this, y, x) mvaddchstr(y, x, (this).chptr)
|
2020-10-31 18:39:32 +00:00
|
|
|
#define RichString_printoffnVal(this, y, x, off, n) mvaddchnstr(y, x, (this).chptr + (off), n)
|
2010-11-22 12:40:20 +00:00
|
|
|
#define RichString_getCharVal(this, i) ((this).chptr[i])
|
2020-10-31 19:39:01 +00:00
|
|
|
#define RichString_setChar(this, at, ch) do { (this)->chptr[(at)] = ch; } while (0)
|
2010-11-22 12:40:20 +00:00
|
|
|
#define CharType chtype
|
2008-03-09 02:33:23 +00:00
|
|
|
#endif
|
|
|
|
|
2020-09-12 21:25:25 +00:00
|
|
|
#define RICHSTRING_MAXLEN 350
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
typedef struct RichString_ {
|
2010-11-22 12:40:20 +00:00
|
|
|
int chlen;
|
|
|
|
CharType* chptr;
|
2020-10-31 22:28:02 +00:00
|
|
|
CharType chstr[RICHSTRING_MAXLEN + 1];
|
2020-10-31 01:56:16 +00:00
|
|
|
int highlightAttr;
|
2006-03-04 18:16:49 +00:00
|
|
|
} RichString;
|
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void RichString_setAttrn(RichString* this, int attrs, int start, int finish);
|
2008-03-09 02:33:23 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
int RichString_findChar(RichString* this, char c, int start);
|
2008-03-09 02:33:23 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void RichString_prune(RichString* this);
|
2009-06-02 04:51:23 +00:00
|
|
|
|
2020-09-02 07:38:44 +00:00
|
|
|
void RichString_setAttr(RichString* this, int attrs);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-11-23 19:12:11 +00:00
|
|
|
void RichString_appendChr(RichString* this, char c, int count);
|
|
|
|
|
2020-12-23 11:20:57 +00:00
|
|
|
int RichString_appendWide(RichString* this, int attrs, const char* data);
|
2012-11-10 00:31:37 +00:00
|
|
|
|
2020-12-23 11:20:57 +00:00
|
|
|
int RichString_appendnWide(RichString* this, int attrs, const char* data, int len);
|
2008-03-09 02:33:23 +00:00
|
|
|
|
2020-12-23 11:20:57 +00:00
|
|
|
int RichString_writeWide(RichString* this, int attrs, const char* data);
|
2020-12-04 13:44:57 +00:00
|
|
|
|
2020-12-23 11:20:57 +00:00
|
|
|
int RichString_appendAscii(RichString* this, int attrs, const char* data);
|
2020-12-04 13:44:57 +00:00
|
|
|
|
2020-12-23 11:20:57 +00:00
|
|
|
int RichString_appendnAscii(RichString* this, int attrs, const char* data, int len);
|
2020-12-04 13:44:57 +00:00
|
|
|
|
2020-12-23 11:20:57 +00:00
|
|
|
int RichString_writeAscii(RichString* this, int attrs, const char* data);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
#endif
|