上一頁 | 首頁

SDL_GetMouseState

章節:SDL API 參考 (3)
更新2001年9月11日 星期二 22:59
索引
 

名稱

SDL_GetMouseState - 獲取鼠標的當前狀態  

摘要

#include "SDL.h"

Uint8 SDL_GetMouseState(int *x, int *y);  

描述

當前按鈕狀態以按鈕位掩碼的形式返回,可用SDL_BUTTON(X)宏來檢測它,而將xy設置為當前鼠標的光標位置。  

例子

SDL_PumpEvents();
if(SDL_GetMouseState(NULL, NULL)&SDL_BUTTON(1))
  printf("鼠標按鈕1(即左邊的)被按下。");

 

另見

SDL_GetRelativeMouseStateSDL_PumpEvents  

譯者

石仔<guoshimin57@gmail.com>  

中文版主頁

http://guoshimin.users.sf.net  

中文版最後更新時間

2010年7月1日


 

索引

名稱
摘要
描述
例子
另見
譯者
中文版主頁
中文版最後更新時間