Searched refs:clicks (Results 1 – 9 of 9) sorted by relevance
/AliOS-Things-master/components/SDL2/test/ |
A D | relative_mode.markdown | 10 clicks should not go to whatever app was under the cursor previously. 11 - When alt/cmd-tabbing between a relative mode app and another app, clicks when
|
/AliOS-Things-master/components/SDL2/src/events/ |
A D | SDL_mouse.c | 483 …ateSendMouseButton(SDL_Window * window, SDL_MouseID mouseID, Uint8 state, Uint8 button, int clicks) argument 539 if (clicks < 0) { 557 clicks = clickstate->click_count; 559 clicks = 1; 572 event.button.clicks = (Uint8) SDL_min(clicks, 255); 587 …dMouseButtonClicks(SDL_Window * window, SDL_MouseID mouseID, Uint8 state, Uint8 button, int clicks) argument 589 clicks = SDL_max(clicks, 0); 590 return SDL_PrivateSendMouseButton(window, mouseID, state, button, clicks);
|
A D | SDL_mouse_c.h | 132 …MouseButtonClicks(SDL_Window * window, SDL_MouseID mouseID, Uint8 state, Uint8 button, int clicks);
|
A D | SDL_events.c | 223 (uint) event->button.clicks, (int) event->button.x, (int) event->button.y) in SDL_LogEvent()
|
/AliOS-Things-master/components/SDL2/src/video/uikit/ |
A D | SDL_uikitview.m | 275 /* FIXME, need to send: int clicks = (int) touch.tapCount; ? */ 328 /* FIXME, need to send: int clicks = (int) touch.tapCount; ? */
|
/AliOS-Things-master/components/SDL2/include/ |
A D | SDL_events.h | 279 Uint8 clicks; /**< 1 for single-click, 2 for double-click, etc. */ member
|
/AliOS-Things-master/components/SDL2/src/video/cocoa/ |
A D | SDL_cocoawindow.m | 972 int clicks; 1009 clicks = (int) [theEvent clickCount]; 1011 SDL_SendMouseButtonClicks(_data->window, mouseID, SDL_PRESSED, button, clicks); 1033 int clicks; 1060 clicks = (int) [theEvent clickCount]; 1062 SDL_SendMouseButtonClicks(_data->window, mouseID, SDL_RELEASED, button, clicks);
|
/AliOS-Things-master/components/SDL2/src/test/ |
A D | SDL_test_common.c | 1348 event->button.button, event->button.x, event->button.y, event->button.clicks, in SDLTest_PrintEvent() 1353 event->button.button, event->button.x, event->button.y, event->button.clicks, in SDLTest_PrintEvent()
|
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/gregbook/ |
A D | COPYING | 324 mouse-clicks or menu items--whatever suits your program.
|
Completed in 37 milliseconds