X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=Usermode%2FLibraries%2Flibaxwin4.so_src%2Finclude_exp%2Faxwin4%2Fdefinitions.h;h=5fe7e4db908a29435790490c1af061cb4cbfd559;hb=b5f8fa2dea9d6a67ac5c8a3a442ee4570deaa56c;hp=8e347cf2d7e6f0b1aeeb2f57c2bfb953c3d35cb2;hpb=145dd00e5c5a36f844be327e16a00b2983245423;p=tpg%2Facess2.git diff --git a/Usermode/Libraries/libaxwin4.so_src/include_exp/axwin4/definitions.h b/Usermode/Libraries/libaxwin4.so_src/include_exp/axwin4/definitions.h index 8e347cf2..5fe7e4db 100644 --- a/Usermode/Libraries/libaxwin4.so_src/include_exp/axwin4/definitions.h +++ b/Usermode/Libraries/libaxwin4.so_src/include_exp/axwin4/definitions.h @@ -8,9 +8,31 @@ #ifndef _LIBAXWIN4_AXWIN4_DEFINITIONS_H_ #define _LIBAXWIN4_AXWIN4_DEFINITIONS_H_ -#define AXWIN4_WNDFLAG_NODECORATE 0x01 -#define AXWIN4_WNDFLAG_KEEPBELOW 0x02 -#define AXWIN4_WNDFLAG_KEEPABOVE 0x04 +/** + * \name Window Flags + * \{ + */ +#define AXWIN4_WNDFLAG_NODECORATE 0x01 //!< Disable automatic inclusion of window decorations +#define AXWIN4_WNDFLAG_KEEPBELOW 0x02 //!< Keep the window below all others, even when it has focus +#define AXWIN4_WNDFLAG_KEEPABOVE 0x04 //!< Keep window above all others, ecen when it loses focus +/** + * \} + */ + +/** + * \brief Global controls + */ +enum eAxWin4_GlobalControls { + AXWIN4_CTL_BUTTON, //!< Standard button (possibly rounded edges) + AXWIN4_CTL_BOX, //!< Grouping box in a window + AXWIN4_CTL_TOOLBAR, //!< Toolbar (raised region) + AXWIN4_CTL_TEXTBOX, //!< Text edit box +}; + +enum eAxWin4_GlobalFonts { + AXWIN4_FONT_DEFAULT, //!< Default font (usually a sans-serif) + AXWIN4_FONT_MONOSPACE, //!< Default monospace font +}; #endif