stoneage8.5/石器时代8.5客户端最新源代码/石器源码/systeminc/mouse.h

90 lines
2.8 KiB
C
Raw Permalink Normal View History

2020-06-23 15:53:23 +08:00
/************************/
2020-06-23 15:27:59 +08:00
/* mouse.h */
/************************/
#ifndef _MOUSE_H_
#define _MOUSE_H_
//#include "menu.h"
2020-06-23 15:53:23 +08:00
// ????┤
2020-06-23 15:27:59 +08:00
#define MOUSE_NO_CRICK 0 // ???????
2020-06-23 15:53:23 +08:00
#define MOUSE_LEFT_CRICK ( 1 << 0 ) // ?????┤
#define MOUSE_RIGHT_CRICK ( 1 << 1 ) // ?????┤
#define MOUSE_LEFT_CRICK_UP ( 1 << 2 ) // ????????┤
#define MOUSE_RIGHT_CRICK_UP ( 1 << 3 ) // ????????┤
#define MOUSE_LEFT_DBL_CRICK ( 1 << 4 ) // ????????┤
#define MOUSE_RIGHT_DBL_CRICK ( 1 << 5 ) // ????????┤
//#define MOUSE_LEFT_AUTO_CRICK ( 1 << 6 ) // ????????┤
//#define MOUSE_RIGHT_AUTO_CRICK ( 1 << 7 ) // ????????┤
// ?????火 ?﹨▍
2020-06-23 15:27:59 +08:00
typedef struct{
2020-06-23 15:53:23 +08:00
int x, y; // ????( ?,? )?火
2020-06-23 15:27:59 +08:00
}MOUSE_POINT;
2020-06-23 15:53:23 +08:00
// ????﹨▍
2020-06-23 15:27:59 +08:00
typedef struct{
2020-06-23 15:53:23 +08:00
MOUSE_POINT nowPoint; // ????????火
MOUSE_POINT crickLeftDownPoint; // ???????????????火
MOUSE_POINT crickLeftUpPoint; // ?????????????????火
MOUSE_POINT crickRightDownPoint;// ???????????????火
MOUSE_POINT crickRightUpPoint; // ?????????????????火
int state; // ???????┤????????
int onceState; // ???????┤????????????????π?向?
int autoState; // ???????┤???????
2020-06-23 15:27:59 +08:00
UINT beforeLeftPushTime; // ??????????????
UINT leftPushTime; // ??????????????
UINT beforeRightPushTime;// ??????????????
UINT rightPushTime; // ??????????????
UCHAR level; // ?????????????
2020-06-23 15:53:23 +08:00
int itemNo; // ?????????????吻?
BOOL flag; // ????????牙??牙???
2020-06-23 15:27:59 +08:00
}MOUSE;
// ????? ???
extern MOUSE mouse;
2020-06-23 15:53:23 +08:00
// ????????????????吻????????
2020-06-23 15:27:59 +08:00
extern int HitFontNo;
// ?????????????????????????????
extern int HitDispNo;
2020-06-23 15:53:23 +08:00
// ??????更??
2020-06-23 15:27:59 +08:00
extern char OneLineInfoStr[];
2020-06-23 15:53:23 +08:00
// 牙?????
2020-06-23 15:27:59 +08:00
extern int BoxColor;
2020-06-23 15:53:23 +08:00
// ???????? ////////////////////////////////////////////////////////
2020-06-23 15:27:59 +08:00
void MouseInit( void );
2020-06-23 15:53:23 +08:00
// ????????ㄅ????? //////////////////////////////////////////////
2020-06-23 15:27:59 +08:00
void MouseNowPoint( int x, int y );
2020-06-23 15:53:23 +08:00
// ????????????????????ㄅ????? //////////////////////
2020-06-23 15:27:59 +08:00
void MouseCrickLeftDownPoint( int x, int y );
2020-06-23 15:53:23 +08:00
// ????????????????????ㄅ????? //////////////////////
2020-06-23 15:27:59 +08:00
void MouseCrickLeftUpPoint( int x, int y );
2020-06-23 15:53:23 +08:00
// ????????????????????ㄅ????? //////////////////////
2020-06-23 15:27:59 +08:00
void MouseCrickRightDownPoint( int x, int y );
2020-06-23 15:53:23 +08:00
// ????????????????????ㄅ????? //////////////////////
2020-06-23 15:27:59 +08:00
void MouseCrickRightUpPoint( int x, int y );
2020-06-23 15:53:23 +08:00
// ??????????????????ㄅ????? //////////////////////////
2020-06-23 15:27:59 +08:00
void MouseDblCrickLeftUpPoint( int x, int y );
2020-06-23 15:53:23 +08:00
// ??????????????????ㄅ????? //////////////////////////
2020-06-23 15:27:59 +08:00
void MouseDblCrickRightUpPoint( int x, int y );
// ????? ///////////////////////////////////////////////////////////////
void MouseProc( void );
2020-06-23 15:53:23 +08:00
/* ???????????刪叉 **************************************************/
2020-06-23 15:27:59 +08:00
void HitMouseCursor( void );
#endif