2019-09-16 07:35:57 +00:00
|
|
|
/* See LICENSE for license details. */
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <sys/types.h>
|
2021-03-10 17:09:47 +00:00
|
|
|
#include <X11/Xatom.h>
|
|
|
|
#include <X11/Xlib.h>
|
|
|
|
#include <X11/cursorfont.h>
|
|
|
|
#include <X11/keysym.h>
|
|
|
|
#include <X11/Xft/Xft.h>
|
|
|
|
#include <X11/XKBlib.h>
|
2019-09-16 07:35:57 +00:00
|
|
|
#include "patches.h"
|
|
|
|
|
|
|
|
/* macros */
|
|
|
|
#define MIN(a, b) ((a) < (b) ? (a) : (b))
|
|
|
|
#define MAX(a, b) ((a) < (b) ? (b) : (a))
|
|
|
|
#define LEN(a) (sizeof(a) / sizeof(a)[0])
|
|
|
|
#define BETWEEN(x, a, b) ((a) <= (x) && (x) <= (b))
|
2021-05-09 15:48:28 +00:00
|
|
|
#if VIM_BROWSE_PATCH
|
|
|
|
#define OUT(x, a, b) ((a) <= (x) || (x) <= (b))
|
|
|
|
#endif // VIM_BROWSE_PATCH
|
2019-09-16 07:35:57 +00:00
|
|
|
#define DIVCEIL(n, d) (((n) + ((d) - 1)) / (d))
|
|
|
|
#define DEFAULT(a, b) (a) = (a) ? (a) : (b)
|
|
|
|
#define LIMIT(x, a, b) (x) = (x) < (a) ? (a) : (x) > (b) ? (b) : (x)
|
2020-06-05 11:43:14 +00:00
|
|
|
#if LIGATURES_PATCH
|
|
|
|
#define ATTRCMP(a, b) (((a).mode & (~ATTR_WRAP) & (~ATTR_LIGA)) != ((b).mode & (~ATTR_WRAP) & (~ATTR_LIGA)) || \
|
|
|
|
(a).fg != (b).fg || \
|
|
|
|
(a).bg != (b).bg)
|
|
|
|
#else
|
2019-09-16 07:35:57 +00:00
|
|
|
#define ATTRCMP(a, b) ((a).mode != (b).mode || (a).fg != (b).fg || \
|
|
|
|
(a).bg != (b).bg)
|
2020-06-05 11:43:14 +00:00
|
|
|
#endif // LIGATURES_PATCH
|
2019-09-16 07:35:57 +00:00
|
|
|
#define TIMEDIFF(t1, t2) ((t1.tv_sec-t2.tv_sec)*1000 + \
|
|
|
|
(t1.tv_nsec-t2.tv_nsec)/1E6)
|
|
|
|
#define MODBIT(x, set, bit) ((set) ? ((x) |= (bit)) : ((x) &= ~(bit)))
|
|
|
|
|
|
|
|
#define TRUECOLOR(r,g,b) (1 << 24 | (r) << 16 | (g) << 8 | (b))
|
|
|
|
#define IS_TRUECOL(x) (1 << 24 & (x))
|
2021-03-29 07:13:14 +00:00
|
|
|
#if SCROLLBACK_PATCH
|
|
|
|
#define HISTSIZE 2000
|
|
|
|
#endif // SCROLLBACK_PATCH
|
2019-09-16 07:35:57 +00:00
|
|
|
|
|
|
|
enum glyph_attribute {
|
|
|
|
ATTR_NULL = 0,
|
|
|
|
ATTR_BOLD = 1 << 0,
|
|
|
|
ATTR_FAINT = 1 << 1,
|
|
|
|
ATTR_ITALIC = 1 << 2,
|
|
|
|
ATTR_UNDERLINE = 1 << 3,
|
|
|
|
ATTR_BLINK = 1 << 4,
|
|
|
|
ATTR_REVERSE = 1 << 5,
|
|
|
|
ATTR_INVISIBLE = 1 << 6,
|
|
|
|
ATTR_STRUCK = 1 << 7,
|
|
|
|
ATTR_WRAP = 1 << 8,
|
|
|
|
ATTR_WIDE = 1 << 9,
|
|
|
|
ATTR_WDUMMY = 1 << 10,
|
2019-09-17 06:53:00 +00:00
|
|
|
#if BOXDRAW_PATCH
|
|
|
|
ATTR_BOXDRAW = 1 << 11,
|
2021-03-10 17:09:47 +00:00
|
|
|
#endif // BOXDRAW_PATCH
|
2020-06-05 11:43:14 +00:00
|
|
|
#if LIGATURES_PATCH
|
|
|
|
ATTR_LIGA = 1 << 12,
|
|
|
|
#endif // LIGATURES_PATCH
|
2021-03-10 17:09:47 +00:00
|
|
|
#if SIXEL_PATCH
|
|
|
|
ATTR_SIXEL = 1 << 13,
|
|
|
|
#endif // SIXEL_PATCH
|
2019-09-16 07:35:57 +00:00
|
|
|
ATTR_BOLD_FAINT = ATTR_BOLD | ATTR_FAINT,
|
2021-05-08 08:53:46 +00:00
|
|
|
#if UNDERCURL_PATCH
|
|
|
|
ATTR_DIRTYUNDERLINE = 1 << 15,
|
|
|
|
#endif // UNDERCURL_PATCH
|
2019-09-16 07:35:57 +00:00
|
|
|
};
|
|
|
|
|
2021-03-10 17:09:47 +00:00
|
|
|
#if SIXEL_PATCH
|
|
|
|
typedef struct _ImageList {
|
|
|
|
struct _ImageList *next, *prev;
|
|
|
|
unsigned char *pixels;
|
|
|
|
void *pixmap;
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
int should_delete;
|
|
|
|
} ImageList;
|
|
|
|
#endif // SIXEL_PATCH
|
|
|
|
|
2020-11-14 15:24:07 +00:00
|
|
|
#if WIDE_GLYPHS_PATCH
|
|
|
|
enum drawing_mode {
|
|
|
|
DRAW_NONE = 0,
|
|
|
|
DRAW_BG = 1 << 0,
|
|
|
|
DRAW_FG = 1 << 1,
|
|
|
|
};
|
|
|
|
#endif // WIDE_GLYPHS_PATCH
|
|
|
|
|
2019-09-16 07:35:57 +00:00
|
|
|
enum selection_mode {
|
|
|
|
SEL_IDLE = 0,
|
|
|
|
SEL_EMPTY = 1,
|
|
|
|
SEL_READY = 2
|
|
|
|
};
|
|
|
|
|
|
|
|
enum selection_type {
|
|
|
|
SEL_REGULAR = 1,
|
|
|
|
SEL_RECTANGULAR = 2
|
|
|
|
};
|
|
|
|
|
|
|
|
enum selection_snap {
|
|
|
|
SNAP_WORD = 1,
|
|
|
|
SNAP_LINE = 2
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef unsigned char uchar;
|
|
|
|
typedef unsigned int uint;
|
|
|
|
typedef unsigned long ulong;
|
|
|
|
typedef unsigned short ushort;
|
|
|
|
|
|
|
|
typedef uint_least32_t Rune;
|
|
|
|
|
2021-03-10 17:09:47 +00:00
|
|
|
typedef XftDraw *Draw;
|
|
|
|
typedef XftColor Color;
|
|
|
|
typedef XftGlyphFontSpec GlyphFontSpec;
|
|
|
|
|
2019-09-16 07:35:57 +00:00
|
|
|
#define Glyph Glyph_
|
|
|
|
typedef struct {
|
|
|
|
Rune u; /* character code */
|
|
|
|
ushort mode; /* attribute flags */
|
|
|
|
uint32_t fg; /* foreground */
|
|
|
|
uint32_t bg; /* background */
|
2021-05-08 08:53:46 +00:00
|
|
|
#if UNDERCURL_PATCH
|
|
|
|
int ustyle; /* underline style */
|
|
|
|
int ucolor[3]; /* underline color */
|
|
|
|
#endif // UNDERCURL_PATCH
|
2019-09-16 07:35:57 +00:00
|
|
|
} Glyph;
|
|
|
|
|
|
|
|
typedef Glyph *Line;
|
|
|
|
|
2021-03-10 17:09:47 +00:00
|
|
|
typedef struct {
|
|
|
|
Glyph attr; /* current char attributes */
|
|
|
|
int x;
|
|
|
|
int y;
|
|
|
|
char state;
|
|
|
|
} TCursor;
|
|
|
|
|
|
|
|
/* Internal representation of the screen */
|
|
|
|
typedef struct {
|
|
|
|
int row; /* nb row */
|
|
|
|
int col; /* nb col */
|
|
|
|
Line *line; /* screen */
|
|
|
|
Line *alt; /* alternate screen */
|
|
|
|
#if SCROLLBACK_PATCH
|
|
|
|
Line hist[HISTSIZE]; /* history buffer */
|
|
|
|
int histi; /* history index */
|
|
|
|
int scr; /* scroll back */
|
|
|
|
#endif // SCROLLBACK_PATCH
|
|
|
|
int *dirty; /* dirtyness of lines */
|
|
|
|
TCursor c; /* cursor */
|
|
|
|
int ocx; /* old cursor col */
|
|
|
|
int ocy; /* old cursor row */
|
|
|
|
int top; /* top scroll limit */
|
|
|
|
int bot; /* bottom scroll limit */
|
|
|
|
int mode; /* terminal mode flags */
|
|
|
|
int esc; /* escape state flags */
|
|
|
|
char trantbl[4]; /* charset table translation */
|
|
|
|
int charset; /* current charset */
|
|
|
|
int icharset; /* selected charset for sequence */
|
|
|
|
int *tabs;
|
|
|
|
#if SIXEL_PATCH
|
|
|
|
ImageList *images; /* sixel images */
|
|
|
|
ImageList *images_alt; /* sixel images for alternate screen */
|
|
|
|
#endif // SIXEL_PATCH
|
|
|
|
Rune lastc; /* last printed char outside of sequence, 0 if control */
|
|
|
|
} Term;
|
|
|
|
|
2019-09-16 07:35:57 +00:00
|
|
|
typedef union {
|
|
|
|
int i;
|
|
|
|
uint ui;
|
|
|
|
float f;
|
|
|
|
const void *v;
|
2020-03-24 13:02:07 +00:00
|
|
|
const char *s;
|
2019-09-16 07:35:57 +00:00
|
|
|
} Arg;
|
|
|
|
|
2021-03-10 17:09:47 +00:00
|
|
|
/* Purely graphic info */
|
|
|
|
typedef struct {
|
|
|
|
int tw, th; /* tty width and height */
|
|
|
|
int w, h; /* window width and height */
|
|
|
|
#if ANYSIZE_PATCH
|
|
|
|
int hborderpx, vborderpx;
|
|
|
|
#endif // ANYSIZE_PATCH
|
|
|
|
int ch; /* char height */
|
|
|
|
int cw; /* char width */
|
|
|
|
#if VERTCENTER_PATCH
|
|
|
|
int cyo; /* char y offset */
|
|
|
|
#endif // VERTCENTER_PATCH
|
|
|
|
int mode; /* window state/mode flags */
|
|
|
|
int cursor; /* cursor style */
|
|
|
|
} TermWindow;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
Display *dpy;
|
|
|
|
Colormap cmap;
|
|
|
|
Window win;
|
|
|
|
Drawable buf;
|
|
|
|
GlyphFontSpec *specbuf; /* font spec buffer used for rendering */
|
2021-05-10 07:28:15 +00:00
|
|
|
Atom xembed, wmdeletewin, netwmname, netwmiconname, netwmpid;
|
2021-05-08 12:49:59 +00:00
|
|
|
#if NETWMICON_PATCH
|
|
|
|
Atom netwmicon;
|
|
|
|
#endif // NETWMICON_PATCH
|
2021-03-10 17:09:47 +00:00
|
|
|
struct {
|
|
|
|
XIM xim;
|
|
|
|
XIC xic;
|
|
|
|
XPoint spot;
|
|
|
|
XVaNestedList spotlist;
|
|
|
|
} ime;
|
|
|
|
Draw draw;
|
|
|
|
Visual *vis;
|
|
|
|
XSetWindowAttributes attrs;
|
|
|
|
#if HIDECURSOR_PATCH
|
|
|
|
/* Here, we use the term *pointer* to differentiate the cursor
|
|
|
|
* one sees when hovering the mouse over the terminal from, e.g.,
|
|
|
|
* a green rectangle where text would be entered. */
|
|
|
|
Cursor vpointer, bpointer; /* visible and hidden pointers */
|
|
|
|
int pointerisvisible;
|
|
|
|
#endif // HIDECURSOR_PATCH
|
|
|
|
int scr;
|
|
|
|
int isfixed; /* is fixed geometry? */
|
|
|
|
#if ALPHA_PATCH
|
|
|
|
int depth; /* bit depth */
|
|
|
|
#endif // ALPHA_PATCH
|
|
|
|
int l, t; /* left and top offset */
|
|
|
|
int gm; /* geometry mask */
|
|
|
|
} XWindow;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
Atom xtarget;
|
|
|
|
char *primary, *clipboard;
|
|
|
|
struct timespec tclick1;
|
|
|
|
struct timespec tclick2;
|
|
|
|
} XSelection;
|
|
|
|
|
|
|
|
/* types used in config.h */
|
|
|
|
typedef struct {
|
|
|
|
uint mod;
|
|
|
|
KeySym keysym;
|
|
|
|
void (*func)(const Arg *);
|
|
|
|
const Arg arg;
|
|
|
|
} Shortcut;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint mod;
|
|
|
|
uint button;
|
|
|
|
void (*func)(const Arg *);
|
|
|
|
const Arg arg;
|
|
|
|
uint release;
|
2021-05-08 15:49:04 +00:00
|
|
|
#if UNIVERSCROLL_PATCH
|
|
|
|
int altscrn; /* 0: don't care, -1: not alt screen, 1: alt screen */
|
|
|
|
#endif // UNIVERSCROLL_PATCH
|
2021-03-10 17:09:47 +00:00
|
|
|
} MouseShortcut;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
KeySym k;
|
|
|
|
uint mask;
|
|
|
|
char *s;
|
|
|
|
/* three-valued logic variables: 0 indifferent, 1 on, -1 off */
|
|
|
|
signed char appkey; /* application keypad */
|
|
|
|
signed char appcursor; /* application cursor */
|
|
|
|
} Key;
|
|
|
|
|
|
|
|
/* Font structure */
|
|
|
|
#define Font Font_
|
|
|
|
typedef struct {
|
|
|
|
int height;
|
|
|
|
int width;
|
|
|
|
int ascent;
|
|
|
|
int descent;
|
|
|
|
int badslant;
|
|
|
|
int badweight;
|
|
|
|
short lbearing;
|
|
|
|
short rbearing;
|
|
|
|
XftFont *match;
|
|
|
|
FcFontSet *set;
|
|
|
|
FcPattern *pattern;
|
|
|
|
} Font;
|
|
|
|
|
|
|
|
/* Drawing Context */
|
|
|
|
typedef struct {
|
|
|
|
Color *col;
|
|
|
|
size_t collen;
|
|
|
|
Font font, bfont, ifont, ibfont;
|
|
|
|
GC gc;
|
|
|
|
} DC;
|
|
|
|
|
2019-09-16 07:35:57 +00:00
|
|
|
void die(const char *, ...);
|
|
|
|
void redraw(void);
|
|
|
|
void draw(void);
|
2021-03-10 17:09:47 +00:00
|
|
|
void drawregion(int, int, int, int);
|
2021-05-09 15:48:28 +00:00
|
|
|
void tfulldirt(void);
|
2019-09-16 07:35:57 +00:00
|
|
|
|
|
|
|
void printscreen(const Arg *);
|
|
|
|
void printsel(const Arg *);
|
|
|
|
void sendbreak(const Arg *);
|
|
|
|
void toggleprinter(const Arg *);
|
|
|
|
|
|
|
|
int tattrset(int);
|
|
|
|
void tnew(int, int);
|
|
|
|
void tresize(int, int);
|
2021-05-09 15:48:28 +00:00
|
|
|
#if VIM_BROWSE_PATCH
|
|
|
|
void tmoveto(int x, int y);
|
|
|
|
#endif // VIM_BROWSE_PATCH
|
2019-09-16 07:35:57 +00:00
|
|
|
void tsetdirtattr(int);
|
|
|
|
void ttyhangup(void);
|
|
|
|
int ttynew(char *, char *, char *, char **);
|
|
|
|
size_t ttyread(void);
|
|
|
|
void ttyresize(int, int);
|
|
|
|
void ttywrite(const char *, size_t, int);
|
|
|
|
|
|
|
|
void resettitle(void);
|
|
|
|
|
|
|
|
void selclear(void);
|
|
|
|
void selinit(void);
|
|
|
|
void selstart(int, int, int);
|
|
|
|
void selextend(int, int, int, int);
|
|
|
|
int selected(int, int);
|
|
|
|
char *getsel(void);
|
|
|
|
|
|
|
|
size_t utf8encode(Rune, char *);
|
|
|
|
|
|
|
|
void *xmalloc(size_t);
|
|
|
|
void *xrealloc(void *, size_t);
|
|
|
|
char *xstrdup(char *);
|
2019-09-17 06:53:00 +00:00
|
|
|
#if BOXDRAW_PATCH
|
|
|
|
int isboxdraw(Rune);
|
|
|
|
ushort boxdrawindex(const Glyph *);
|
|
|
|
#ifdef XFT_VERSION
|
|
|
|
/* only exposed to x.c, otherwise we'll need Xft.h for the types */
|
|
|
|
void boxdraw_xinit(Display *, Colormap, XftDraw *, Visual *);
|
|
|
|
void drawboxes(int, int, int, int, XftColor *, XftColor *, const XftGlyphFontSpec *, int);
|
|
|
|
#endif // XFT_VERSION
|
|
|
|
#endif // BOXDRAW_PATCH
|
2019-09-16 07:35:57 +00:00
|
|
|
|
|
|
|
/* config.h globals */
|
|
|
|
extern char *utmp;
|
2020-04-20 08:24:34 +00:00
|
|
|
extern char *scroll;
|
2019-09-16 07:35:57 +00:00
|
|
|
extern char *stty_args;
|
|
|
|
extern char *vtiden;
|
2020-03-24 12:51:45 +00:00
|
|
|
extern wchar_t *worddelimiters;
|
2019-09-16 07:35:57 +00:00
|
|
|
extern int allowaltscreen;
|
2020-06-10 18:53:01 +00:00
|
|
|
extern int allowwindowops;
|
2019-09-16 07:35:57 +00:00
|
|
|
extern char *termname;
|
|
|
|
extern unsigned int tabspaces;
|
|
|
|
extern unsigned int defaultfg;
|
|
|
|
extern unsigned int defaultbg;
|
2020-04-20 10:35:11 +00:00
|
|
|
extern unsigned int defaultcs;
|
2019-09-17 06:53:00 +00:00
|
|
|
#if BOXDRAW_PATCH
|
|
|
|
extern const int boxdraw, boxdraw_bold, boxdraw_braille;
|
|
|
|
#endif // BOXDRAW_PATCH
|
2019-09-16 07:35:57 +00:00
|
|
|
#if ALPHA_PATCH
|
|
|
|
extern float alpha;
|
2021-05-09 12:40:30 +00:00
|
|
|
#if ALPHA_FOCUS_HIGHLIGHT_PATCH
|
|
|
|
extern float alphaUnfocused;
|
|
|
|
#endif // ALPHA_FOCUS_HIGHLIGHT_PATCH
|
2020-04-20 08:24:34 +00:00
|
|
|
#endif // ALPHA_PATCH
|
2021-03-10 17:09:47 +00:00
|
|
|
|
|
|
|
extern DC dc;
|
|
|
|
extern XWindow xw;
|
|
|
|
extern XSelection xsel;
|
|
|
|
extern TermWindow win;
|
2021-03-29 08:27:10 +00:00
|
|
|
extern Term term;
|