forked from dmacvicar/qemacs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.h
86 lines (76 loc) · 2.68 KB
/
variables.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
/*
* Module for handling variables in QEmacs
*
* Copyright (c) 2000-2008 Charlie Gordon.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
typedef enum QVarType {
VAR_UNKNOWN = 0,
VAR_NUMBER,
VAR_STRING,
VAR_CHARS,
} QVarType;
enum QVarAccess {
VAR_RO,
VAR_RW,
};
enum QVarDomain {
VAR_GLOBAL,
VAR_STATE,
VAR_BUFFER,
VAR_WINDOW,
VAR_MODE,
VAR_SELF,
};
extern const char * const var_domain[];
typedef struct VarDef {
const char *name;
enum QVarDomain domain : 4;
enum QVarType type : 4;
enum QVarAccess rw : 2;
unsigned int size : 16;
union {
void *ptr;
int offset;
char **pstr;
int *pint;
char *str;
int num;
} value;
struct VarDef *next;
} VarDef;
#define U_VAR(name, type) \
{ (name), VAR_SELF, type, VAR_RW, 0, { .num = 0 }, NULL },
#define G_VAR(name,ptr,type,rw) \
{ (name), VAR_GLOBAL, type, rw, 0, { (void*)&(ptr) }, NULL },
#define S_VAR(name,fld,type,rw) \
{ (name), VAR_STATE, type, rw, sizeof(((QEmacsState*)0)->fld), { .offset = offsetof(QEmacsState, fld) }, NULL },
#define B_VAR(name,fld,type,rw) \
{ (name), VAR_BUFFER, type, rw, sizeof(((EditBuffer*)0)->fld), { .offset = offsetof(EditBuffer, fld) }, NULL },
#define W_VAR(name,fld,type,rw) \
{ (name), VAR_WINDOW, type, rw, sizeof(((EditState*)0)->fld), { .offset = offsetof(EditState, fld) }, NULL },
#define M_VAR(name,fld,type,rw) \
{ (name), VAR_MODE, type, rw, sizeof(((ModeDef*)0)->fld), { .offset = offsetof(ModeDef, fld) }, NULL },
void qe_register_variables(VarDef *vars, int count);
VarDef *qe_find_variable(const char *name);
void qe_complete_variable(CompleteState *cp);
QVarType qe_get_variable(EditState *s, const char *name,
char *buf, int size, int *pnum, int as_source);
QVarType qe_set_variable(EditState *s, const char *name,
const char *value, int num);
void qe_list_variables(EditState *s, EditBuffer *b);
void do_set_variable(EditState *s, const char *name, const char *value);
void do_show_variable(EditState *s, const char *name);