X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=src%2Fwtimpl.h;fp=src%2Fwtimpl.h;h=76e51f105bd2c09c102cb46ba0778d28fd028a16;hb=526fc352816f21f1cbfa8110262a58224c14d208;hp=f4956acde579d12c0ee6de1b8a78a08827549c53;hpb=b012c112e391964e63247dcbb55988855b0fc95e;p=windtk diff --git a/src/wtimpl.h b/src/wtimpl.h index f4956ac..76e51f1 100644 --- a/src/wtimpl.h +++ b/src/wtimpl.h @@ -20,7 +20,8 @@ enum { NUM_COLORS }; -enum { FRM_OUT, FRM_IN }; +enum { FRM_OUT, FRM_IN, FRM_NOFILL = 0x8000 }; +#define FRMSTYLE(x) ((x) & 0xff) struct wt_context { struct wt_graphics gfx; @@ -29,6 +30,8 @@ struct wt_context { struct wt_theme *theme; int colors[NUM_COLORS]; + + wt_widget *focuswin; }; extern struct wt_context *wt_curctx_;