90 lines
2.7 KiB
C
90 lines
2.7 KiB
C
![]() |
/************************/
|
|||
|
/* mouse.h */
|
|||
|
/************************/
|
|||
|
#ifndef _MOUSE_H_
|
|||
|
#define _MOUSE_H_
|
|||
|
|
|||
|
//#include "menu.h"
|
|||
|
|
|||
|
// ????<3F>֢t
|
|||
|
|
|||
|
#define MOUSE_NO_CRICK 0 // ???????
|
|||
|
#define MOUSE_LEFT_CRICK ( 1 << 0 ) // ?????<3F>֢t
|
|||
|
#define MOUSE_RIGHT_CRICK ( 1 << 1 ) // ?????<3F>֢t
|
|||
|
#define MOUSE_LEFT_CRICK_UP ( 1 << 2 ) // ????????<3F>֢t
|
|||
|
#define MOUSE_RIGHT_CRICK_UP ( 1 << 3 ) // ????????<3F>֢t
|
|||
|
#define MOUSE_LEFT_DBL_CRICK ( 1 << 4 ) // ????????<3F>֢t
|
|||
|
#define MOUSE_RIGHT_DBL_CRICK ( 1 << 5 ) // ????????<3F>֢t
|
|||
|
//#define MOUSE_LEFT_AUTO_CRICK ( 1 << 6 ) // ????????<3F>֢t
|
|||
|
//#define MOUSE_RIGHT_AUTO_CRICK ( 1 << 7 ) // ????????<3F>֢t
|
|||
|
|
|||
|
// ?????<3F><> ?<3F>B<EFBFBD>l
|
|||
|
typedef struct{
|
|||
|
int x, y; // ????( ?,? )?<3F><>
|
|||
|
}MOUSE_POINT;
|
|||
|
|
|||
|
// ????<3F>B<EFBFBD>l
|
|||
|
typedef struct{
|
|||
|
MOUSE_POINT nowPoint; // ????????<3F><>
|
|||
|
MOUSE_POINT crickLeftDownPoint; // ???????????????<3F><>
|
|||
|
MOUSE_POINT crickLeftUpPoint; // ?????????????????<3F><>
|
|||
|
MOUSE_POINT crickRightDownPoint;// ???????????????<3F><>
|
|||
|
MOUSE_POINT crickRightUpPoint; // ?????????????????<3F><>
|
|||
|
int state; // ???????<3F>֢t????????
|
|||
|
int onceState; // ???????<3F>֢t????????????????<3F>k?<3F>V?
|
|||
|
int autoState; // ???????<3F>֢t???????
|
|||
|
UINT beforeLeftPushTime; // ??????????????
|
|||
|
UINT leftPushTime; // ??????????????
|
|||
|
UINT beforeRightPushTime;// ??????????????
|
|||
|
UINT rightPushTime; // ??????????????
|
|||
|
UCHAR level; // ?????????????
|
|||
|
int itemNo; // ?????????????<3F>k?
|
|||
|
BOOL flag; // ????????<3F><><EFBFBD><EFBFBD>?<3F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>???
|
|||
|
}MOUSE;
|
|||
|
|
|||
|
// ????? ???
|
|||
|
extern MOUSE mouse;
|
|||
|
|
|||
|
// ????????????????<3F>k????????
|
|||
|
extern int HitFontNo;
|
|||
|
// ?????????????????????????????
|
|||
|
extern int HitDispNo;
|
|||
|
|
|||
|
// ??????<3F><>??
|
|||
|
extern char OneLineInfoStr[];
|
|||
|
|
|||
|
// <20><><EFBFBD><EFBFBD>?????<3F><>
|
|||
|
extern int BoxColor;
|
|||
|
|
|||
|
// ???<3F>ѩ<EFBFBD>???? ////////////////////////////////////////////////////////
|
|||
|
void MouseInit( void );
|
|||
|
|
|||
|
// ????????<3F>t????? //////////////////////////////////////////////
|
|||
|
void MouseNowPoint( int x, int y );
|
|||
|
|
|||
|
// ????????????????????<3F>t????? //////////////////////
|
|||
|
void MouseCrickLeftDownPoint( int x, int y );
|
|||
|
|
|||
|
// ????????????????????<3F>t????? //////////////////////
|
|||
|
void MouseCrickLeftUpPoint( int x, int y );
|
|||
|
|
|||
|
// ????????????????????<3F>t????? //////////////////////
|
|||
|
void MouseCrickRightDownPoint( int x, int y );
|
|||
|
|
|||
|
// ????????????????????<3F>t????? //////////////////////
|
|||
|
void MouseCrickRightUpPoint( int x, int y );
|
|||
|
|
|||
|
// ??????????????????<3F>t????? //////////////////////////
|
|||
|
void MouseDblCrickLeftUpPoint( int x, int y );
|
|||
|
|
|||
|
// ??????????????????<3F>t????? //////////////////////////
|
|||
|
void MouseDblCrickRightUpPoint( int x, int y );
|
|||
|
|
|||
|
// ????? ///////////////////////////////////////////////////////////////
|
|||
|
void MouseProc( void );
|
|||
|
|
|||
|
/* ???????????<3F>R<EFBFBD>e **************************************************/
|
|||
|
void HitMouseCursor( void );
|
|||
|
|
|||
|
#endif
|