HomeSort by relevance Sort by last modified time
    Searched defs:mousePos (Results 1 - 4 of 4) sorted by null

  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA2/
SDL_epocevents.cpp 267 const TPoint mousePos = EpocSdlEnv::WindowCoordinates(pointerEvent->iPosition);
273 mousePos.iY <<= 1; // Scale y coordinate to shrinked screen height
276 mousePos.iX <<= 1; // Scale x coordinate to shrinked screen width
280 posted += SDL_PrivateMouseMotion(0, 0, mousePos.iX, mousePos.iY); /* Absolute position on screen */
  /external/qemu/distrib/sdl-1.2.15/src/video/qtopia/
SDL_QWin.h 76 const QPoint& mousePos() const { return my_mouse_pos; }
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA1/
SDL_epocevents.cpp 81 TPoint mousePos = pointerEvent->iPosition;
87 mousePos.iY <<= 1; // Scale y coordinate to shrinked screen height
90 mousePos.iX <<= 1; // Scale x coordinate to shrinked screen width
94 posted += SDL_PrivateMouseMotion(0, 0, mousePos.iX, mousePos.iY); /* Absolute position on screen */
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GestureManager.java 246 * @param mousePos The most recent mouse coordinate applicable to the new
250 private void startGesture(ControlPoint mousePos, Gesture gesture, int mask) {
252 finishGesture(mousePos, true);
258 mCurrentGesture.begin(mousePos, mask);
265 * @param mousePos The most recent mouse coordinate applicable to the new
272 private void updateMouse(ControlPoint mousePos, TypedEvent event) {
274 mCurrentGesture.update(mousePos);
282 * @param mousePos The most recent mouse coordinate applicable to the new
286 private void finishGesture(ControlPoint mousePos, boolean canceled) {
288 mCurrentGesture.end(mousePos, canceled)
    [all...]

Completed in 259 milliseconds