亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? sdl_events.h

?? MPEG-4編解碼的實現(包括MPEG4視音頻編解碼)
?? H
字號:
/*
    SDL - Simple DirectMedia Layer
    Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002  Sam Lantinga

    This library is free software; you can redistribute it and/or
    modify it under the terms of the GNU Library General Public
    License as published by the Free Software Foundation; either
    version 2 of the License, or (at your option) any later version.

    This library 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
    Library General Public License for more details.

    You should have received a copy of the GNU Library General Public
    License along with this library; if not, write to the Free
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

    Sam Lantinga
    slouken@libsdl.org
*/

#ifdef SAVE_RCSID
static char rcsid =
 "@(#) $Id: SDL_events.h,v 1.4 2002/04/22 21:38:01 wmay Exp $";
#endif

/* Include file for SDL event handling */

#ifndef _SDL_events_h
#define _SDL_events_h

#include "SDL_types.h"
#include "SDL_active.h"
#include "SDL_keyboard.h"
#include "SDL_mouse.h"
#include "SDL_joystick.h"
#include "SDL_quit.h"

#include "begin_code.h"
/* Set up for C function definitions, even when using C++ */
#ifdef __cplusplus
extern "C" {
#endif

/* Event enumerations */
enum { SDL_NOEVENT = 0,			/* Unused (do not remove) */
       SDL_ACTIVEEVENT,			/* Application loses/gains visibility */
       SDL_KEYDOWN,			/* Keys pressed */
       SDL_KEYUP,			/* Keys released */
       SDL_MOUSEMOTION,			/* Mouse moved */
       SDL_MOUSEBUTTONDOWN,		/* Mouse button pressed */
       SDL_MOUSEBUTTONUP,		/* Mouse button released */
       SDL_JOYAXISMOTION,		/* Joystick axis motion */
       SDL_JOYBALLMOTION,		/* Joystick trackball motion */
       SDL_JOYHATMOTION,		/* Joystick hat position change */
       SDL_JOYBUTTONDOWN,		/* Joystick button pressed */
       SDL_JOYBUTTONUP,			/* Joystick button released */
       SDL_QUIT,			/* User-requested quit */
       SDL_SYSWMEVENT,			/* System specific event */
       SDL_EVENT_RESERVEDA,		/* Reserved for future use.. */
       SDL_EVENT_RESERVEDB,		/* Reserved for future use.. */
       SDL_VIDEORESIZE,			/* User resized video mode */
       SDL_VIDEOEXPOSE,			/* Screen needs to be redrawn */
       SDL_EVENT_RESERVED2,		/* Reserved for future use.. */
       SDL_EVENT_RESERVED3,		/* Reserved for future use.. */
       SDL_EVENT_RESERVED4,		/* Reserved for future use.. */
       SDL_EVENT_RESERVED5,		/* Reserved for future use.. */
       SDL_EVENT_RESERVED6,		/* Reserved for future use.. */
       SDL_EVENT_RESERVED7,		/* Reserved for future use.. */
       /* Events SDL_USEREVENT through SDL_MAXEVENTS-1 are for your use */
       SDL_USEREVENT = 24,
       /* This last event is only for bounding internal arrays
	  It is the number of bits in the event mask datatype -- Uint32
        */
       SDL_NUMEVENTS = 32
};

/* Predefined event masks */
#define SDL_EVENTMASK(X)	(1<<(X))
enum {
	SDL_ACTIVEEVENTMASK	= SDL_EVENTMASK(SDL_ACTIVEEVENT),
	SDL_KEYDOWNMASK		= SDL_EVENTMASK(SDL_KEYDOWN),
	SDL_KEYUPMASK		= SDL_EVENTMASK(SDL_KEYUP),
	SDL_MOUSEMOTIONMASK	= SDL_EVENTMASK(SDL_MOUSEMOTION),
	SDL_MOUSEBUTTONDOWNMASK	= SDL_EVENTMASK(SDL_MOUSEBUTTONDOWN),
	SDL_MOUSEBUTTONUPMASK	= SDL_EVENTMASK(SDL_MOUSEBUTTONUP),
	SDL_MOUSEEVENTMASK	= SDL_EVENTMASK(SDL_MOUSEMOTION)|
	                          SDL_EVENTMASK(SDL_MOUSEBUTTONDOWN)|
	                          SDL_EVENTMASK(SDL_MOUSEBUTTONUP),
	SDL_JOYAXISMOTIONMASK	= SDL_EVENTMASK(SDL_JOYAXISMOTION),
	SDL_JOYBALLMOTIONMASK	= SDL_EVENTMASK(SDL_JOYBALLMOTION),
	SDL_JOYHATMOTIONMASK	= SDL_EVENTMASK(SDL_JOYHATMOTION),
	SDL_JOYBUTTONDOWNMASK	= SDL_EVENTMASK(SDL_JOYBUTTONDOWN),
	SDL_JOYBUTTONUPMASK	= SDL_EVENTMASK(SDL_JOYBUTTONUP),
	SDL_JOYEVENTMASK	= SDL_EVENTMASK(SDL_JOYAXISMOTION)|
	                          SDL_EVENTMASK(SDL_JOYBALLMOTION)|
	                          SDL_EVENTMASK(SDL_JOYHATMOTION)|
	                          SDL_EVENTMASK(SDL_JOYBUTTONDOWN)|
	                          SDL_EVENTMASK(SDL_JOYBUTTONUP),
	SDL_VIDEORESIZEMASK	= SDL_EVENTMASK(SDL_VIDEORESIZE),
	SDL_VIDEOEXPOSEMASK	= SDL_EVENTMASK(SDL_VIDEOEXPOSE),
	SDL_QUITMASK		= SDL_EVENTMASK(SDL_QUIT),
	SDL_SYSWMEVENTMASK	= SDL_EVENTMASK(SDL_SYSWMEVENT)
};
#define SDL_ALLEVENTS		0xFFFFFFFF

/* Application visibility event structure */
typedef struct {
	Uint8 type;	/* SDL_ACTIVEEVENT */
	Uint8 gain;	/* Whether given states were gained or lost (1/0) */
	Uint8 state;	/* A mask of the focus states */
} SDL_ActiveEvent;

/* Keyboard event structure */
typedef struct {
	Uint8 type;	/* SDL_KEYDOWN or SDL_KEYUP */
	Uint8 which;	/* The keyboard device index */
	Uint8 state;	/* SDL_PRESSED or SDL_RELEASED */
	SDL_keysym keysym;
} SDL_KeyboardEvent;

/* Mouse motion event structure */
typedef struct {
	Uint8 type;	/* SDL_MOUSEMOTION */
	Uint8 which;	/* The mouse device index */
	Uint8 state;	/* The current button state */
	Uint16 x, y;	/* The X/Y coordinates of the mouse */
	Sint16 xrel;	/* The relative motion in the X direction */
	Sint16 yrel;	/* The relative motion in the Y direction */
} SDL_MouseMotionEvent;

/* Mouse button event structure */
typedef struct {
	Uint8 type;	/* SDL_MOUSEBUTTONDOWN or SDL_MOUSEBUTTONUP */
	Uint8 which;	/* The mouse device index */
	Uint8 button;	/* The mouse button index */
	Uint8 state;	/* SDL_PRESSED or SDL_RELEASED */
	Uint16 x, y;	/* The X/Y coordinates of the mouse at press time */
} SDL_MouseButtonEvent;

/* Joystick axis motion event structure */
typedef struct {
	Uint8 type;	/* SDL_JOYAXISMOTION */
	Uint8 which;	/* The joystick device index */
	Uint8 axis;	/* The joystick axis index */
	Sint16 value;	/* The axis value (range: -32768 to 32767) */
} SDL_JoyAxisEvent;

/* Joystick trackball motion event structure */
typedef struct {
	Uint8 type;	/* SDL_JOYBALLMOTION */
	Uint8 which;	/* The joystick device index */
	Uint8 ball;	/* The joystick trackball index */
	Sint16 xrel;	/* The relative motion in the X direction */
	Sint16 yrel;	/* The relative motion in the Y direction */
} SDL_JoyBallEvent;

/* Joystick hat position change event structure */
typedef struct {
	Uint8 type;	/* SDL_JOYHATMOTION */
	Uint8 which;	/* The joystick device index */
	Uint8 hat;	/* The joystick hat index */
	Uint8 value;	/* The hat position value:
				8   1   2
				7   0   3
				6   5   4
			   Note that zero means the POV is centered.
			*/
} SDL_JoyHatEvent;

/* Joystick button event structure */
typedef struct {
	Uint8 type;	/* SDL_JOYBUTTONDOWN or SDL_JOYBUTTONUP */
	Uint8 which;	/* The joystick device index */
	Uint8 button;	/* The joystick button index */
	Uint8 state;	/* SDL_PRESSED or SDL_RELEASED */
} SDL_JoyButtonEvent;

/* The "window resized" event
   When you get this event, you are responsible for setting a new video
   mode with the new width and height.
 */
typedef struct {
	Uint8 type;	/* SDL_VIDEORESIZE */
	int w;		/* New width */
	int h;		/* New height */
} SDL_ResizeEvent;

/* The "screen redraw" event */
typedef struct {
	Uint8 type;	/* SDL_VIDEOEXPOSE */
} SDL_ExposeEvent;

/* The "quit requested" event */
typedef struct {
	Uint8 type;	/* SDL_QUIT */
} SDL_QuitEvent;

/* A user-defined event type */
typedef struct {
	Uint8 type;	/* SDL_USEREVENT through SDL_NUMEVENTS-1 */
	int code;	/* User defined event code */
	void *data1;	/* User defined data pointer */
	void *data2;	/* User defined data pointer */
} SDL_UserEvent;

/* If you want to use this event, you should include SDL_syswm.h */
struct SDL_SysWMmsg;
typedef struct SDL_SysWMmsg SDL_SysWMmsg;
typedef struct {
	Uint8 type;
	SDL_SysWMmsg *msg;
} SDL_SysWMEvent;

/* General event structure */
typedef union {
	Uint8 type;
	SDL_ActiveEvent active;
	SDL_KeyboardEvent key;
	SDL_MouseMotionEvent motion;
	SDL_MouseButtonEvent button;
	SDL_JoyAxisEvent jaxis;
	SDL_JoyBallEvent jball;
	SDL_JoyHatEvent jhat;
	SDL_JoyButtonEvent jbutton;
	SDL_ResizeEvent resize;
	SDL_ExposeEvent expose;
	SDL_QuitEvent quit;
	SDL_UserEvent user;
	SDL_SysWMEvent syswm;
} SDL_Event;


/* Function prototypes */

/* Pumps the event loop, gathering events from the input devices.
   This function updates the event queue and internal input device state.
   This should only be run in the thread that sets the video mode.
*/
extern DECLSPEC void SDLCALL SDL_PumpEvents(void);

/* Checks the event queue for messages and optionally returns them.
   If 'action' is SDL_ADDEVENT, up to 'numevents' events will be added to
   the back of the event queue.
   If 'action' is SDL_PEEKEVENT, up to 'numevents' events at the front
   of the event queue, matching 'mask', will be returned and will not
   be removed from the queue.
   If 'action' is SDL_GETEVENT, up to 'numevents' events at the front 
   of the event queue, matching 'mask', will be returned and will be
   removed from the queue.
   This function returns the number of events actually stored, or -1
   if there was an error.  This function is thread-safe.
*/
typedef enum {
	SDL_ADDEVENT,
	SDL_PEEKEVENT,
	SDL_GETEVENT
} SDL_eventaction;
/* */
extern DECLSPEC int SDLCALL SDL_PeepEvents(SDL_Event *events, int numevents,
				SDL_eventaction action, Uint32 mask);

/* Polls for currently pending events, and returns 1 if there are any pending
   events, or 0 if there are none available.  If 'event' is not NULL, the next
   event is removed from the queue and stored in that area.
 */
extern DECLSPEC int SDLCALL SDL_PollEvent(SDL_Event *event);

/* Waits indefinitely for the next available event, returning 1, or 0 if there
   was an error while waiting for events.  If 'event' is not NULL, the next
   event is removed from the queue and stored in that area.
 */
extern DECLSPEC int SDLCALL SDL_WaitEvent(SDL_Event *event);

/* Add an event to the event queue.
   This function returns 0 if the event queue was full, or -1
   if there was some other error.  Returns 1 on success.
 */
extern DECLSPEC int SDLCALL SDL_PushEvent(SDL_Event *event);

/*
  This function sets up a filter to process all events before they
  change internal state and are posted to the internal event queue.

  The filter is protypted as:
*/
typedef int (*SDL_EventFilter)(const SDL_Event *event);
/*
  If the filter returns 1, then the event will be added to the internal queue.
  If it returns 0, then the event will be dropped from the queue, but the 
  internal state will still be updated.  This allows selective filtering of
  dynamically arriving events.

  WARNING:  Be very careful of what you do in the event filter function, as 
            it may run in a different thread!

  There is one caveat when dealing with the SDL_QUITEVENT event type.  The
  event filter is only called when the window manager desires to close the
  application window.  If the event filter returns 1, then the window will
  be closed, otherwise the window will remain open if possible.
  If the quit event is generated by an interrupt signal, it will bypass the
  internal queue and be delivered to the application at the next event poll.
*/
extern DECLSPEC void SDLCALL SDL_SetEventFilter(SDL_EventFilter filter);

/*
  Return the current event filter - can be used to "chain" filters.
  If there is no event filter set, this function returns NULL.
*/
extern DECLSPEC SDL_EventFilter SDLCALL SDL_GetEventFilter(void);

/*
  This function allows you to set the state of processing certain events.
  If 'state' is set to SDL_IGNORE, that event will be automatically dropped
  from the event queue and will not event be filtered.
  If 'state' is set to SDL_ENABLE, that event will be processed normally.
  If 'state' is set to SDL_QUERY, SDL_EventState() will return the 
  current processing state of the specified event.
*/
#define SDL_QUERY	-1
#define SDL_IGNORE	 0
#define SDL_DISABLE	 0
#define SDL_ENABLE	 1
extern DECLSPEC Uint8 SDLCALL SDL_EventState(Uint8 type, int state);


/* Ends C function definitions when using C++ */
#ifdef __cplusplus
}
#endif
#include "close_code.h"

#endif /* _SDL_events_h */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产凹凸在线观看一区二区| 日本一区二区成人在线| a亚洲天堂av| 国模大尺度一区二区三区| 婷婷综合久久一区二区三区| 亚洲猫色日本管| 国产精品灌醉下药二区| 中文字幕精品一区二区三区精品| 欧美一级精品在线| 91精选在线观看| 欧美大胆一级视频| 日韩亚洲国产中文字幕欧美| 欧美理论片在线| 日韩欧美在线一区二区三区| 精品国产一区二区三区av性色 | 91丨九色丨黑人外教| 99视频一区二区| 欧美三级午夜理伦三级中视频| 在线观看国产日韩| 正在播放一区二区| 日韩免费视频一区二区| 久久久久久久久蜜桃| 国产精品狼人久久影院观看方式| 国产精品国产三级国产aⅴ入口| 1000部国产精品成人观看| 亚洲国产欧美另类丝袜| 视频在线观看一区| 国产成人鲁色资源国产91色综 | 国产精品视频一二三区| 亚洲免费看黄网站| 日本美女一区二区三区| 国产精品亚洲а∨天堂免在线| 成人高清在线视频| 欧美日本乱大交xxxxx| 久久美女艺术照精彩视频福利播放| 中日韩av电影| 日韩av不卡一区二区| 国产不卡视频在线播放| 91色乱码一区二区三区| 555夜色666亚洲国产免| 国产精品美女久久久久久2018| 婷婷夜色潮精品综合在线| 国产成人午夜高潮毛片| 欧美日韩一区二区三区高清| 欧美国产乱子伦| 蜜臀99久久精品久久久久久软件| 97se狠狠狠综合亚洲狠狠| 欧美一个色资源| 一区二区在线观看免费视频播放 | 精品福利一二区| 亚洲国产wwwccc36天堂| 成人短视频下载| 精品美女一区二区| 视频一区视频二区中文| aaa亚洲精品| 国产日韩欧美综合在线| 另类小说综合欧美亚洲| 在线观看国产一区二区| 日韩一区有码在线| 成人午夜视频网站| 久久久综合激的五月天| 久久综合综合久久综合| 日韩欧美国产综合| 视频一区中文字幕| 欧美一级专区免费大片| 亚洲成a人片在线观看中文| 99综合电影在线视频| 亚洲国产成人在线| 成人一区二区三区中文字幕| 26uuu久久天堂性欧美| 久久精品国产一区二区| 日韩午夜精品电影| 免费精品视频在线| 欧美一级午夜免费电影| 久久精品国产99| 精品欧美一区二区久久| 麻豆精品新av中文字幕| 日韩精品一区二区三区中文精品 | 国产欧美日韩激情| 国产毛片精品视频| 久久精品欧美一区二区三区不卡| 精品系列免费在线观看| 久久久91精品国产一区二区三区| 久久精品国产久精国产爱| ww亚洲ww在线观看国产| 国产激情偷乱视频一区二区三区 | av不卡一区二区三区| 国产精品乱码人人做人人爱| 色综合久久88色综合天天6 | 午夜精品福利一区二区三区av | 国产精品毛片大码女人| 北条麻妃一区二区三区| 国产亚洲女人久久久久毛片| 国产成人免费视频网站| 国产精品第四页| 欧美午夜理伦三级在线观看| 日本中文字幕一区二区视频| 欧美xxxx在线观看| 99久久精品免费精品国产| 亚洲小说欧美激情另类| 精品国产网站在线观看| www.激情成人| 午夜成人免费电影| 国产校园另类小说区| 在线亚洲+欧美+日本专区| 久久99久国产精品黄毛片色诱| 亚洲欧洲精品成人久久奇米网| 欧美亚洲一区二区在线观看| 国内不卡的二区三区中文字幕 | 一本色道久久综合狠狠躁的推荐| 亚洲国产成人精品视频| 国产日产欧产精品推荐色| 欧美色大人视频| 国产成人在线看| 婷婷国产在线综合| 中文字幕成人av| 91精品国产免费| 懂色av一区二区三区免费观看 | 日本一区二区三区dvd视频在线| 欧洲精品在线观看| 国产精品538一区二区在线| 亚洲国产精品久久一线不卡| 国产精品剧情在线亚洲| 2021中文字幕一区亚洲| 欧美精品亚洲一区二区在线播放| 国产精品99久久久久久久女警| 午夜视频在线观看一区二区| 国产精品的网站| 国产农村妇女毛片精品久久麻豆 | 狠狠色丁香婷婷综合| 亚洲成人免费视| 一区二区三区四区在线| 亚洲国产精品精华液ab| 欧美日韩色综合| 色婷婷综合久色| 国内成+人亚洲+欧美+综合在线| 污片在线观看一区二区| 亚洲成人av一区| 亚洲国产精品影院| 亚洲男人的天堂在线观看| 国产精品日韩精品欧美在线| 亚洲精品在线观看网站| 精品国产亚洲在线| 欧美一二三四在线| 欧美疯狂性受xxxxx喷水图片| 欧美午夜一区二区| 欧洲视频一区二区| 色素色在线综合| 欧美亚洲动漫精品| 欧美丝袜自拍制服另类| 一本色道综合亚洲| 国产另类ts人妖一区二区| 国产一区欧美二区| 韩国女主播成人在线| 国产精品一区三区| 国产成人精品在线看| 99在线精品免费| 在线观看欧美精品| 91精品国产一区二区三区| 欧美一区二区三区啪啪| 日韩视频免费观看高清在线视频| 91精品国产综合久久久久久漫画 | 国产人久久人人人人爽| 久久综合九色综合欧美就去吻 | 亚洲不卡一区二区三区| 丝袜美腿成人在线| 久久精品国产99久久6| 久草这里只有精品视频| 国产麻豆精品95视频| 成人精品在线视频观看| 日本精品视频一区二区| 欧美日韩一区二区三区高清| 欧美日韩国产小视频在线观看| 欧美日本国产视频| 精品国产sm最大网站免费看| 中文字幕欧美三区| 亚洲制服丝袜av| 美国十次了思思久久精品导航| 国产精品99久久久久| 丰满岳乱妇一区二区三区| 欧美亚洲动漫精品| 欧美白人最猛性xxxxx69交| 中文字幕亚洲不卡| 天堂久久一区二区三区| 黄一区二区三区| 成人黄色电影在线 | 欧美精品一区二区三区在线 | 免费在线观看一区二区三区| 国产精品亚洲午夜一区二区三区| www.欧美色图| 日韩欧美一区二区在线视频| 91精品久久久久久久久99蜜臂| 国产欧美日韩视频在线观看| 亚洲一区在线观看网站| 国产成人免费在线视频| 在线电影一区二区三区| 中文字幕在线不卡国产视频| 蜜臀久久久99精品久久久久久| av激情综合网| 久久综合网色—综合色88|