115 lines
3.3 KiB
C
Executable File
115 lines
3.3 KiB
C
Executable File
/**
|
|
* \file customial.h
|
|
* \author Wei Yongming <vincent@minigui.org>
|
|
* \date 2007/06/06
|
|
*
|
|
* \brief This file is the head file for Custom IAL Engine.
|
|
*
|
|
\verbatim
|
|
|
|
This file is part of MiniGUI, a mature cross-platform windowing
|
|
and Graphics User Interface (GUI) support system for embedded systems
|
|
and smart IoT devices.
|
|
|
|
Copyright (C) 2007~2018, Beijing FMSoft Technologies Co., Ltd.
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
Or,
|
|
|
|
As this program is a library, any link to this program must follow
|
|
GNU General Public License version 3 (GPLv3). If you cannot accept
|
|
GPLv3, you need to be licensed from FMSoft.
|
|
|
|
If you have got a commercial license of this program, please use it
|
|
under the terms and conditions of the commercial license.
|
|
|
|
For more information about the commercial license, please refer to
|
|
<http://www.minigui.com/en/about/licensing-policy/>.
|
|
|
|
\endverbatim
|
|
*/
|
|
|
|
/*
|
|
* $Id: customial.h 11349 2009-03-02 05:00:43Z weiym $
|
|
*
|
|
* MiniGUI for Linux/uClinux, eCos, uC/OS-II, VxWorks,
|
|
* pSOS, ThreadX, NuCleus, OSE, and Win32.
|
|
*/
|
|
|
|
#ifndef GUI_IAL_CUSTOM_H
|
|
#define GUI_IAL_CUSTOM_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
#define IAL_MOUSE_LEFTBUTTON 1
|
|
#define IAL_MOUSE_RIGHTBUTTON 2
|
|
#define IAL_MOUSE_MIDDLEBUTTON 4
|
|
#define IAL_MOUSE_FOURTHBUTTON 8
|
|
#define IAL_MOUSE_FIFTHBUTTON 16
|
|
#define IAL_MOUSE_SIXTHBUTTON 32
|
|
#define IAL_MOUSE_RESETBUTTON 64
|
|
|
|
#define IAL_MOUSEEVENT 1
|
|
#define IAL_KEYEVENT 2
|
|
|
|
typedef struct tagINPUT
|
|
{
|
|
char* id;
|
|
|
|
// Initialization and termination
|
|
BOOL (*init_input) (struct tagINPUT *input, const char* mdev, const char* mtype);
|
|
void (*term_input) (void);
|
|
|
|
// Mouse operations
|
|
int (*update_mouse) (void);
|
|
void (*get_mouse_xy) (int* x, int* y);
|
|
void (*set_mouse_xy) (int x, int y);
|
|
int (*get_mouse_button) (void);
|
|
void (*set_mouse_range) (int minx, int miny, int maxx, int maxy);
|
|
void (*suspend_mouse) (void);
|
|
int (*resume_mouse) (void);
|
|
|
|
// Keyboard operations
|
|
int (*update_keyboard) (void);
|
|
const char* (*get_keyboard_state) (void);
|
|
void (*suspend_keyboard) (void);
|
|
int (*resume_keyboard) (void);
|
|
void (*set_leds) (unsigned int leds);
|
|
|
|
// Event
|
|
int (*wait_event) (int which, int maxfd, fd_set *in, fd_set *out,
|
|
fd_set *except, struct timeval *timeout);
|
|
|
|
char mdev0 [MAX_PATH + 1];
|
|
char mdev1 [MAX_PATH + 1];
|
|
char mdev2 [MAX_PATH + 1];
|
|
}INPUT;
|
|
|
|
#ifdef _MGIAL_CUSTOM
|
|
extern BOOL InitCustomInput (INPUT* input, const char* mdev, const char* mtype);
|
|
extern void TermCustomInput (void);
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif /* __cplusplus */
|
|
|
|
#endif /* GUI_IAL_CUSTOM_H */
|
|
|
|
|