wmbiff: EXAMINE before STATUS
[dockapps.git] / wmcalc / wmcalc_t.h
blobbb8bb2f2d460ea9cc6f9c12ec7a3ed5f1b86ce37
1 /* File: wmcalc_t.h
2 * Author: Edward H. Flora <ehflora@access1.net>
3 * Version: 0.2
5 * Description:
6 * This file contains the typedefs for the wmcalc program.
8 * Change History:
9 * Date Modification
10 * 10/25/00 Original file creation, extracted from wmcalc.h
13 #ifndef WMCALC_T_H
14 #define WMCALC_T_H
16 typedef struct _XpmIcon {
17 Pixmap pixmap;
18 Pixmap mask;
19 XpmAttributes attributes;
20 } XpmIcon;
22 typedef struct _button_region {
23 int x,y;
24 int i,j;
25 } ButtonArea;
27 typedef enum {
28 MEM_LABEL_0 = 0,
29 MEM_LABEL_1,
30 MEM_LABEL_2,
31 MEM_LABEL_3,
32 MEM_LABEL_4,
33 MEM_LABEL_5,
34 MEM_LABEL_6,
35 MEM_LABEL_7,
36 MEM_LABEL_8,
37 MEM_LABEL_9,
38 MEM_LOCK_0,
39 MEM_LOCK_1,
40 MEM_LOCK_2,
41 MEM_LOCK_3,
42 MEM_LOCK_4,
43 MEM_LOCK_5,
44 MEM_LOCK_6,
45 MEM_LOCK_7,
46 MEM_LOCK_8,
47 MEM_LOCK_9,
48 IMAG_LABEL,
49 CALC_LABEL,
50 MAX_LABEL
51 } cfg_var_label_type;
54 #endif