/** \file * \brief global attributes enviroment * * See Copyright Notice in "iup.h" */ #ifndef __IUP_GLOBALATTRIB_H #define __IUP_GLOBALATTRIB_H #ifdef __cplusplus extern "C" { #endif /* called only in IupOpen and IupClose */ void iupGlobalAttribInit(void); void iupGlobalAttribFinish(void); int iupGlobalIsPointer(const char* name); int iupGlobalDefaultColorChanged(const char *name); /* check if user changed */ void iupGlobalSetDefaultColorAttrib(const char* name, int r, int g, int b); /* internal change method */ /* Other functions declared in and implemented here. IupSetGlobal IupStoreGlobal IupGetGlobal */ #ifdef __cplusplus } #endif #endif