23 #ifndef M4_GUI_GUI_VMNG_H 24 #define M4_GUI_GUI_VMNG_H 26 #include "m4/m4_types.h" 27 #include "m4/gui/gui_univ.h" 28 #include "m4/gui/gui_vmng_core.h" 29 #include "m4/gui/gui_vmng_rectangles.h" 30 #include "m4/gui/gui_vmng_screen.h" 35 SCRN_DLG = 0, SCRN_BUF, SCRN_TEXT, SCRN_TRANS
38 SCRN_ANY = 0, SCRN_ACTIVE, SCRN_INACTIVE, SCRN_UNDEFN
41 #define SF_LAYER 0x000f 42 #define SF_BACKGRND 0x0000 43 #define SF_DRIFTER 0x0001 44 #define SF_FLOATER 0x0002 45 #define SF_SURFACE 0x0003 46 #define SF_MOUSE 0x000e 48 #define SF_GET_NONE 0x0000 49 #define SF_GET_KEY 0x0010 50 #define SF_GET_MOUSE 0x0020 51 #define SF_GET_ALL 0x0030 53 #define SF_BLOCK_NONE 0x0000 54 #define SF_BLOCK_KEY 0x0040 55 #define SF_BLOCK_MOUSE 0x0080 56 #define SF_BLOCK_ALL 0x00c0 58 #define SF_IMMOVABLE 0x0100 // if set, it ain't draggable 59 #define SF_OFFSCRN 0x0200 // can be dragged off screen, if it's draggable 60 #define SF_TRANSPARENT 0x0400 // if the screen is transparent 62 #define SF_DEFAULT SF_DRIFTER | SF_GET_ALL | SF_BLOCK_NONE 63 #define SF_ALERT SF_FLOATER | SF_GET_ALL | SF_BLOCK_ALL Definition: database.h:28