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
|
2011-12-26 21:35:57 +00:00
|
|
|
/*
|
|
|
|
htop - RichString.h
|
|
|
|
(C) 2004,2011 Hisham H. Muhammad
|
|
|
|
Released under the GNU GPL, see the COPYING file
|
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2014-11-20 01:17:52 +00:00
|
|
|
#define RICHSTRING_MAXLEN 350
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2008-03-09 02:33:23 +00:00
|
|
|
#include "config.h"
|
2009-03-11 13:51:50 +00:00
|
|
|
#include <ctype.h>
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
#include <assert.h>
|
2011-11-03 22:07:10 +00:00
|
|
|
#ifdef HAVE_NCURSESW_CURSES_H
|
2011-09-08 01:45:16 +00:00
|
|
|
#include <ncursesw/curses.h>
|
|
|
|
#elif HAVE_NCURSES_NCURSES_H
|
|
|
|
#include <ncurses/ncurses.h>
|
2013-02-26 17:10:11 +00:00
|
|
|
#elif HAVE_NCURSES_CURSES_H
|
|
|
|
#include <ncurses/curses.h>
|
2011-11-03 22:07:10 +00:00
|
|
|
#elif HAVE_NCURSES_H
|
|
|
|
#include <ncurses.h>
|
|
|
|
#elif HAVE_CURSES_H
|
|
|
|
#include <curses.h>
|
2008-03-09 02:33:23 +00:00
|
|
|
#endif
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2015-08-25 13:23:50 +00:00
|
|
|
#ifdef HAVE_LIBNCURSESW
|
|
|
|
#include <wctype.h>
|
|
|
|
#endif
|
|
|
|
|
2010-11-22 12:40:20 +00:00
|
|
|
#define RichString_size(this) ((this)->chlen)
|
|
|
|
#define RichString_sizeVal(this) ((this).chlen)
|
|
|
|
|
2015-08-20 03:31:48 +00:00
|
|
|
#define RichString_begin(this) RichString (this); memset(&this, 0, sizeof(RichString)); (this).chptr = (this).chstr;
|
|
|
|
#define RichString_beginAllocated(this) memset(&this, 0, sizeof(RichString)); (this).chptr = (this).chstr;
|
2010-11-22 12:40:20 +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)
|
|
|
|
#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)
|
2015-08-28 00:45:02 +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)
|
|
|
|
#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
|
2008-03-09 02:33:23 +00:00
|
|
|
#endif
|
|
|
|
|
2006-03-04 18:16:49 +00:00
|
|
|
typedef struct RichString_ {
|
2010-11-22 12:40:20 +00:00
|
|
|
int chlen;
|
|
|
|
CharType* chptr;
|
2014-11-20 01:17:52 +00:00
|
|
|
CharType chstr[RICHSTRING_MAXLEN+1];
|
2006-03-04 18:16:49 +00:00
|
|
|
} RichString;
|
|
|
|
|
|
|
|
|
2018-02-26 14:05:12 +00:00
|
|
|
#ifndef CLAMP
|
|
|
|
#define CLAMP(x,low,high) (((x)>(high))?(high):(((x)<(low))?(low):(x)))
|
|
|
|
#endif
|
|
|
|
|
2019-10-31 16:39:12 +00:00
|
|
|
#define charBytes(n) (sizeof(CharType) * (n))
|
2010-11-22 12:40:20 +00:00
|
|
|
|
2015-08-20 04:13:20 +00:00
|
|
|
#define RichString_setLen(this, len) do{ if(len < RICHSTRING_MAXLEN && this->chlen < RICHSTRING_MAXLEN) { RichString_setChar(this,len,0); this->chlen=len; } else RichString_extendLen(this,len); }while(0)
|
2014-11-20 01:17:52 +00:00
|
|
|
|
2008-03-09 02:33:23 +00:00
|
|
|
#ifdef HAVE_LIBNCURSESW
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2010-11-22 12:40:20 +00:00
|
|
|
extern void RichString_setAttrn(RichString* this, int attrs, int start, int finish);
|
2008-03-09 02:33:23 +00:00
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern int RichString_findChar(RichString* this, char c, int start);
|
2008-03-09 02:33:23 +00:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern void RichString_setAttrn(RichString* this, int attrs, int start, int finish);
|
2008-03-09 02:33:23 +00:00
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern int RichString_findChar(RichString* this, char c, int start);
|
2008-03-09 02:33:23 +00:00
|
|
|
|
|
|
|
#endif
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern void RichString_prune(RichString* this);
|
2009-06-02 04:51:23 +00:00
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern void RichString_setAttr(RichString* this, int attrs);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern void RichString_append(RichString* this, int attrs, const char* data);
|
2012-11-10 00:31:37 +00:00
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern void RichString_appendn(RichString* this, int attrs, const char* data, int len);
|
2008-03-09 02:33:23 +00:00
|
|
|
|
2020-08-18 07:41:49 +00:00
|
|
|
extern void RichString_write(RichString* this, int attrs, const char* data);
|
2006-03-04 18:16:49 +00:00
|
|
|
|
|
|
|
#endif
|