blob: 9a7815f934e3689f465e11874a869df792445374 (
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
|
/** \file
* \brief iupmatrix.
* Functions used to edit a cell in place.
*
* See Copyright Notice in "iup.h"
*/
#ifndef __IUPMAT_EDIT_H
#define __IUPMAT_EDIT_H
#ifdef __cplusplus
extern "C" {
#endif
int iupMatrixEditIsVisible (Ihandle *ih);
int iupMatrixEditShow (Ihandle* ih);
int iupMatrixEditHide (Ihandle* ih);
void iupMatrixEditForceHidden(Ihandle* ih);
char* iupMatrixEditGetValue (Ihandle* ih);
void iupMatrixEditCreate (Ihandle* ih);
#ifdef __cplusplus
}
#endif
#endif
|