X-Git-Url: https://git.stderr.nl/gitweb?p=rodin%2Fchimara.git;a=blobdiff_plain;f=libchimara%2Fchimara-glk-private.h;h=b3c90853795eb9465a6c62d3ae7cd5e044acd768;hp=33e8ebf5b8ea20d26d4a1658a006f697bf870df1;hb=cbd4cb7f8c62b2ba51329a4cb082a96115a7529d;hpb=4240a3dfe7bae2864cdd67e8bdb9819949f01183 diff --git a/libchimara/chimara-glk-private.h b/libchimara/chimara-glk-private.h index 33e8ebf..b3c9085 100644 --- a/libchimara/chimara-glk-private.h +++ b/libchimara/chimara-glk-private.h @@ -83,6 +83,8 @@ struct _ChimaraGlkPrivate { void (*unregister_arr)(void *, glui32, char *, gidispatch_rock_t); /* Have styles been initialized */ gboolean style_initialized; + /* Is widget still displaying windows from last run */ + gboolean needs_reset; /* *** Platform-dependent Glk library data *** */ /* Flag for functions to find out if they are being called from startup code */ @@ -93,7 +95,9 @@ struct _ChimaraGlkPrivate { #define CHIMARA_GLK_PRIVATE(obj) (G_TYPE_INSTANCE_GET_PRIVATE((obj), CHIMARA_TYPE_GLK, ChimaraGlkPrivate)) #define CHIMARA_GLK_USE_PRIVATE(o, n) ChimaraGlkPrivate *n = CHIMARA_GLK_PRIVATE(o) - + +G_GNUC_INTERNAL void _chimara_glk_free_nonwindow_private_data(ChimaraGlkPrivate *self); + G_END_DECLS #endif /* __CHIMARA_GLK_PRIVATE_H__ */