blob: 775e5a2f13fb4ddab99033d453cab855ea65f864 (
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
|
/** \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 */
void iupLayoutSetMinMaxSize(Ihandle* ih, int *w, int *h);
/* Other functions declared in <iup.h> and implemented here.
IupRefresh
*/
#ifdef __cplusplus
}
#endif
#endif
|