X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Frtk_impl.h;h=566e254700475266048659a5da0b2d75a9558609;hb=3c3612761bcf77a5c4ec6810aa47e0e3f0131bf1;hp=d9ee120318f24c7a74649223bd4b3f5390bd1278;hpb=c4a043b45ff38d532579cfdf0b6a7e3f50527559;p=retroray diff --git a/src/rtk_impl.h b/src/rtk_impl.h index d9ee120..566e254 100644 --- a/src/rtk_impl.h +++ b/src/rtk_impl.h @@ -2,14 +2,21 @@ #define RTK_IMPL_H_ #include -#include "inttypes.h" +#include "sizeint.h" #include "rtk.h" enum { VISIBLE = 0x001, ENABLED = 0x002, + HOVER = 0x010, + PRESS = 0x020, GEOMCHG = 0x100, - DIRTY = 0x200 + DIRTY = 0x200, + + /* window flags */ + FRAME = RTK_WIN_FRAME << 16, + MOVABLE = RTK_WIN_MOVABLE << 16, + RESIZABLE = RTK_WIN_RESIZABLE << 16 }; typedef struct rtk_any { @@ -31,6 +38,7 @@ typedef struct rtk_window { typedef struct rtk_button { rtk_any any; + int mode; rtk_icon *icon; } rtk_button; @@ -41,14 +49,6 @@ typedef union rtk_widget { rtk_button bn; } rtk_widget; -typedef struct rtk_icon { - char *name; - int width, height, scanlen; - uint32_t *pixels; - - struct rtk_icon *next; -} rtk_icon; - typedef struct rtk_iconsheet { int width, height; uint32_t *pixels;