blob: 706a6ac4b8aec725fbe7ac0b4f7dff053b214f04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
/** \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 <iup.h> and implemented here.
IupSetGlobal
IupStoreGlobal
IupGetGlobal
*/
#ifdef __cplusplus
}
#endif
#endif
|