blob: a2a0c290c59ad219ff1beb142caa9d2a376b1445 (
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
|
/** \file
* \brief Abstract Layout Management
*
* See Copyright Notice in "iup.h"
*/
#ifndef __IUP_LAYOUT_H
#define __IUP_LAYOUT_H
#ifdef __cplusplus
extern "C" {
#endif
/* called from IupMap and IupRefresh */
void iupLayoutCompute(Ihandle* ih); /* can be called before map */
void iupLayoutUpdate(Ihandle* ih); /* called only after map */
/* Other functions declared in <iup.h> and implemented here.
IupRefresh
*/
#ifdef __cplusplus
}
#endif
#endif
|