Searched refs:xHot (Results 1 - 20 of 20) sorted by relevance

/vbox/src/VBox/Additions/WINNT/Graphics/Video/disp/xpdm/
H A DVBoxDispMouse.cpp423 LONG xHot, LONG yHot, LONG x, LONG y, RECTL *prcl, FLONG fl)
448 pso, psoMask, psoColor, pxlo, xHot, yHot, x, y, fl));
486 pDev->pointer.pAttrs->Column = (SHORT) (x - xHot);
491 pDev->pointer.pAttrs->Enable |= (xHot & 0xFF) << 16;
528 pDev->pointer.orgHotSpot.x = xHot;
422 VBoxDispDrvSetPointerShape(SURFOBJ *pso, SURFOBJ *psoMask, SURFOBJ *psoColor, XLATEOBJ *pxlo, LONG xHot, LONG yHot, LONG x, LONG y, RECTL *prcl, FLONG fl) argument
H A DVBoxDisp.h179 LONG xHot, LONG yHot, LONG x, LONG y, RECTL *prcl, FLONG fl);
/vbox/src/VBox/Additions/common/VBoxGuestLib/
H A DVBoxGuestR3LibVideo.cpp93 * @param xHot X coordinate of hot spot.
100 VBGLR3DECL(int) VbglR3SetPointerShape(uint32_t fFlags, uint32_t xHot, uint32_t yHot, uint32_t cx, uint32_t cy, const void *pvImg, size_t cbImg) argument
112 pReq->xHot = xHot;
/vbox/src/VBox/Main/include/
H A DConsoleVRDPServer.h97 int MousePointer(BOOL alpha, ULONG xHot, ULONG yHot, ULONG width, ULONG height, const uint8_t *pu8Shape);
160 void onMousePointerShapeChange(BOOL visible, BOOL alpha, ULONG xHot, ULONG yHot,
H A DDisplayImpl.h346 uint32_t xHot, uint32_t yHot, uint32_t cx, uint32_t cy,
H A DConsoleImpl.h241 uint32_t xHot, uint32_t yHot,
/vbox/src/VBox/Main/src-client/
H A DConsoleVRDPServer.cpp79 ULONG xHot, yHot, width, height; local
84 mpscev->COMGETTER(Xhot)(&xHot);
90 m_server->onMousePointerShapeChange(visible, alpha, xHot, yHot, width, height, ComSafeArrayAsInParam(shape));
360 ULONG xHot,
367 visible, alpha, width, height, xHot, yHot));
384 if (MousePointer(alpha, xHot, yHot, width, height, shape) == VINF_SUCCESS)
432 xSkip = RT_MIN(xSkip, xHot);
510 pointer->u16HotX = (uint16_t)(xHot - xSkip);
2947 ULONG xHot,
2968 pPointer->u16HotX = (uint16_t)xHot;
358 onMousePointerShapeChange(BOOL visible, BOOL alpha, ULONG xHot, ULONG yHot, ULONG width, ULONG height, ComSafeArrayIn(BYTE,inShape)) argument
2946 MousePointer(BOOL alpha, ULONG xHot, ULONG yHot, ULONG width, ULONG height, const uint8_t *pu8Shape) argument
[all...]
H A DVMMDevInterface.cpp340 * @param xHot Horizontal coordinate of the pointer hot spot.
348 uint32_t xHot, uint32_t yHot,
362 pConsole->i_onMousePointerShapeChange(fVisible, fAlpha, xHot, yHot, width, height, (uint8_t *)pShape, cbShape);
347 vmmdevUpdatePointerShape(PPDMIVMMDEVCONNECTOR pInterface, bool fVisible, bool fAlpha, uint32_t xHot, uint32_t yHot, uint32_t width, uint32_t height, void *pShape) argument
H A DConsoleImpl.cpp6585 uint32_t xHot, uint32_t yHot,
6592 LogFlowThisFunc(("fVisible=%d, fAlpha=%d, xHot = %d, yHot = %d, width=%d, height=%d, shape=%p\n",
6593 fVisible, fAlpha, xHot, yHot, width, height, pShape));
6600 mMouse->updateMousePointerShape(fVisible, fAlpha, xHot, yHot, width, height,
6606 fireMousePointerShapeChangedEvent(mEventSource, fVisible, fAlpha, xHot, yHot, width, height, ComSafeArrayAsInParam(shape));
6584 i_onMousePointerShapeChange(bool fVisible, bool fAlpha, uint32_t xHot, uint32_t yHot, uint32_t width, uint32_t height, const uint8_t *pu8Shape, uint32_t cbShape) argument
H A DDisplayImpl.cpp4064 uint32_t xHot, uint32_t yHot,
4082 xHot, yHot, cx, cy, (uint8_t *)pvShape, cbShape);
/vbox/src/VBox/Frontends/VBoxSDL/
H A DVBoxSDL.cpp108 : visible(aVisible), alpha(aAlpha), xHot(aXHot), yHot(aYHot),
127 const ULONG xHot; member in struct:PointerShapeChangeData
397 ULONG xHot, yHot, width, height; local
402 pMPSCEv->COMGETTER(Xhot)(&xHot);
407 data = new PointerShapeChangeData(visible, alpha, xHot, yHot, width, height,
4537 printf("xhot = %d\n", data->xHot);
4654 ii.xHotspot = data->xHot;
4699 img->xhot = data->xHot;
/vbox/include/VBox/vmm/
H A Dpdmifs.h953 * @param xHot Pointer hot spot x coordinate.
964 uint32_t xHot, uint32_t yHot,
2704 * @param xHot Pointer hot spot x coordinate.
2715 uint32_t xHot, uint32_t yHot,
/vbox/include/VBox/
H A DVBoxGuestLib.h476 VBGLR3DECL(int) VbglR3SetPointerShape(uint32_t fFlags, uint32_t xHot, uint32_t yHot, uint32_t cx, uint32_t cy, const void *pvImg, size_t cbImg);
H A DVMMDev.h353 uint32_t xHot; member in struct:VMMDevReqMousePointer
/vbox/src/VBox/Main/cbinding/
H A DVBoxCAPI_v2_2.h2471 PRUint32 xHot,
H A DVBoxCAPI_v3_0.h3009 PRUint32 xHot,
H A DVBoxCAPI_v3_1.h3021 PRUint32 xHot,
H A DVBoxCAPI_v3_2.h3135 PRUint32 xHot,
/vbox/src/VBox/Devices/VMMDev/
H A DVMMDev.cpp1001 pReq->xHot, pReq->yHot,
3548 /*xHot=*/0, /*yHot=*/0,
/vbox/src/VBox/ValidationKit/testdriver/
H A Dvbox.py588 def onMousePointerShapeChange(self, fVisible, fAlpha, xHot, yHot, cx, cy, abShape):

Completed in 6605 milliseconds