23 lines
390 B
C
Executable File
23 lines
390 B
C
Executable File
/** \file
|
|
* \brief iMatrixrix control
|
|
* mouse events.
|
|
*
|
|
* See Copyright Notice in "iup.h"
|
|
*/
|
|
|
|
#ifndef __IUPMAT_MOUSE_H
|
|
#define __IUPMAT_MOUSE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
int iupMatrixMouseButton_CB(Ihandle* ih, int button, int press, int x, int y, char* status);
|
|
int iupMatrixMouseMove_CB(Ihandle* ih, int x, int y, char *status);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|