Usermode/libc - Fix strchr and strrchr behavior
[tpg/acess2.git] / Usermode / Libraries / libaxwin4.so_src / include_exp / axwin4 / definitions.h
1 /*
2  * Acess2 GUIv4 (AxWin4)
3  * - By John Hodge (thePowersGang)
4  *
5  * axwin4/definitions.h
6  * - Shared definitions (Client and server)
7  */
8 #ifndef _LIBAXWIN4_AXWIN4_DEFINITIONS_H_
9 #define _LIBAXWIN4_AXWIN4_DEFINITIONS_H_
10
11 /**
12  * \name Window Flags
13  * \{
14  */
15 #define AXWIN4_WNDFLAG_NODECORATE       0x01    //!< Disable automatic inclusion of window decorations
16 #define AXWIN4_WNDFLAG_KEEPBELOW        0x02    //!< Keep the window below all others, even when it has focus
17 #define AXWIN4_WNDFLAG_KEEPABOVE        0x04    //!< Keep window above all others, ecen when it loses focus
18 /**
19  * \}
20  */
21
22 /**
23  * \brief Global controls
24  */
25 enum eAxWin4_GlobalControls {
26         AXWIN4_CTL_BUTTON,      //!< Standard button (possibly rounded edges)
27         AXWIN4_CTL_BOX,         //!< Grouping box in a window
28         AXWIN4_CTL_TOOLBAR,     //!< Toolbar (raised region)
29         AXWIN4_CTL_TEXTBOX,     //!< Text edit box
30 };
31
32 enum eAxWin4_GlobalFonts {
33         AXWIN4_FONT_DEFAULT,    //!< Default font (usually a sans-serif)
34         AXWIN4_FONT_MONOSPACE,  //!< Default monospace font
35 };
36
37 #endif
38

UCC git Repository :: git.ucc.asn.au