Subversion Repositories Kolibri OS

Rev

Rev 6980 | Rev 7051 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6980 Rev 7031
Line 55... Line 55...
55
#define EVM_DEBUG       100000000b
55
#define EVM_DEBUG         100000000b
56
#define EVM_STACK2     1000000000b
56
#define EVM_STACK2       1000000000b
57
#define EVM_MOUSE_FILTER  0x80000000
57
#define EVM_MOUSE_FILTER  0x80000000
58
#define EVM_CURSOR_FILTER 0x40000000
58
#define EVM_CURSOR_FILTER 0x40000000
Line 59... Line -...
59
 
-
 
60
 
59
 
61
//Button options
60
//Button options
62
#define BT_DEL      0x80000000
61
#define BT_DEL      0x80000000
63
#define BT_HIDE     0x40000000
62
#define BT_HIDE     0x40000000
Line 64... Line -...
64
#define BT_NOFRAME  0x20000000
-
 
65
 
-
 
66
//allow event mask
-
 
67
#define EVENT_MASK_REDRAW   000000001b
-
 
68
#define EVENT_MASK_KEYBOARD 000000010b
-
 
69
#define EVENT_MASK_BUTTONS  000000100b
-
 
70
#define EVENT_MASK_DESKTOP  000010000b
-
 
71
#define EVENT_MASK_MOUSE    000100000b
-
 
72
#define EVENT_MASK_IPC      001000000b
-
 
73
#define EVENT_MASK_NETWORK  010000000b
-
 
74
#define EVENT_MASK_DEBUG    100000000b
63
#define BT_NOFRAME  0x20000000
Line 75... Line 64...
75
 
64
 
76
//-------------------------------------------------------------------------
65
//-------------------------------------------------------------------------
77
 
66