blob: ba7f23dd1e45661a16b5b3e309d4e0531b98cdfa (
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
|
/** \file
* \brief iupmatrix column resize.
*
* See Copyright Notice in "iup.h"
*/
#ifndef __IUPMAT_COLRES_H
#define __IUPMAT_COLRES_H
#ifdef __cplusplus
extern "C" {
#endif
int iupMatrixColResStart (Ihandle* ih, int x, int y);
void iupMatrixColResFinish (Ihandle* ih, int x);
void iupMatrixColResMove (Ihandle* ih, int x);
void iupMatrixColResCheckChangeCursor(Ihandle* ih, int x, int y);
int iupMatrixColResIsResizing (Ihandle* ih);
#ifdef __cplusplus
}
#endif
#endif
|