Searched defs:uScreenId (Results 1 - 25 of 31) sorted by relevance

12

/vbox/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/
H A DUIKeyboardHandlerFullscreen.cpp52 ulong uScreenId = m_views.key(pWatchedView); local
53 NOREF(uScreenId);
H A DUIMachineWindowFullscreen.cpp49 UIMachineWindowFullscreen::UIMachineWindowFullscreen(UIMachineLogic *pMachineLogic, ulong uScreenId) argument
50 : UIMachineWindow(pMachineLogic, uScreenId)
H A DUIMachineLogicFullscreen.cpp92 Qt::WindowFlags UIMachineLogicFullscreen::windowFlags(ulong uScreenId) const
94 Q_UNUSED(uScreenId);
97 uScreenId == 0 || screensHaveSeparateSpaces() ? Qt::Window : Qt::FramelessWindowHint;
412 void UIMachineLogicFullscreen::sltGuestMonitorChange(KGuestMonitorChangedEventType changeType, ulong uScreenId, QRect screenGeo) argument
422 UIMachineLogic::sltGuestMonitorChange(changeType, uScreenId, screenGeo);
427 UIMachineLogic::sltGuestMonitorChange(changeType, uScreenId, screenGeo);
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/normal/
H A DUIKeyboardHandlerNormal.cpp62 ulong uScreenId = m_views.key(pWatchedView); local
63 NOREF(uScreenId);
77 QMenuBar *pMenuBar = qobject_cast<QMainWindow*>(m_windows[uScreenId])->menuBar();
H A DUIMachineWindowNormal.cpp59 UIMachineWindowNormal::UIMachineWindowNormal(UIMachineLogic *pMachineLogic, ulong uScreenId) argument
60 : UIMachineWindow(pMachineLogic, uScreenId)
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/scale/
H A DUIKeyboardHandlerScale.cpp59 ulong uScreenId = m_views.key(pWatchedView); local
60 NOREF(uScreenId);
H A DUIMachineWindowScale.cpp44 UIMachineWindowScale::UIMachineWindowScale(UIMachineLogic *pMachineLogic, ulong uScreenId) argument
45 : UIMachineWindow(pMachineLogic, uScreenId)
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/seamless/
H A DUIKeyboardHandlerSeamless.cpp59 ulong uScreenId = m_views.key(pWatchedView); local
60 NOREF(uScreenId);
H A DUIMachineWindowSeamless.cpp48 UIMachineWindowSeamless::UIMachineWindowSeamless(UIMachineLogic *pMachineLogic, ulong uScreenId) argument
49 : UIMachineWindow(pMachineLogic, uScreenId)
H A DUIMachineLogicSeamless.cpp184 void UIMachineLogicSeamless::sltGuestMonitorChange(KGuestMonitorChangedEventType changeType, ulong uScreenId, QRect screenGeo) argument
192 UIMachineLogic::sltGuestMonitorChange(changeType, uScreenId, screenGeo);
/vbox/src/VBox/Main/src-client/
H A DDisplaySourceBitmapImpl.cpp39 HRESULT DisplaySourceBitmap::init(ComObjPtr<Display> pDisplay, unsigned uScreenId, DISPLAYFBINFO *pFBInfo) argument
41 LogFlowThisFunc(("[%u]\n", uScreenId));
50 m.uScreenId = uScreenId;
62 int rc = initSourceBitmap(uScreenId, pFBInfo);
80 LogFlowThisFunc(("[%u]\n", m.uScreenId));
93 *aScreenId = m.uScreenId;
H A DGuestDnDSourceImpl.cpp161 HRESULT GuestDnDSource::dragIsPending(ULONG uScreenId, argument
180 paParms[i++].setUInt32(uScreenId);
H A DGuestDnDTargetImpl.cpp299 HRESULT GuestDnDTarget::leave(ULONG uScreenId) argument
H A DDisplayImplLegacy.cpp56 unsigned uScreenId; local
58 for (uScreenId = 0; uScreenId < cInfos; uScreenId++, pInfo++)
60 LogSunlover((" [%d] %d,%d %dx%d\n", uScreenId, pInfo->xOrigin, pInfo->yOrigin, pInfo->w, pInfo->h));
71 if (uScreenId == cInfos)
74 uScreenId = 0;
76 LogSunlover((" scr %d\n", uScreenId));
77 return uScreenId;
105 static void vbvaRgnDirtyRect(VBVADIRTYREGION *prgn, unsigned uScreenId, VBVACMDHD argument
171 vbvaRgnUpdateFramebuffer(VBVADIRTYREGION *prgn, unsigned uScreenId) argument
214 unsigned uScreenId; local
671 unsigned uScreenId; local
893 processDisplayData(void *pvVRAM, unsigned uScreenId) argument
[all...]
H A DGuestDnDPrivate.cpp465 int GuestDnD::adjustScreenCoordinates(ULONG uScreenId, ULONG *puX, ULONG *puY) const argument
481 hr = pDisplay->GetScreenResolution(uScreenId, &dummy, &dummy, &dummy,
492 LogFlowFunc(("uScreenId=%RU32, x=%RU32, y=%RU32\n",
493 uScreenId, puX ? *puX : 0, puY ? *puY : 0));
H A DMouseImpl.cpp948 ULONG uScreenId = 0; local
955 HRESULT rc = pDisplay->i_getScreenResolution(uScreenId, &cWidth, &cHeight, &cBPP, &xOrigin, &yOrigin);
975 __FUNCTION__, uScreenId, x1, y1, x2, y2));
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/
H A DUIMachineWindow.cpp63 UIMachineWindow* UIMachineWindow::create(UIMachineLogic *pMachineLogic, ulong uScreenId) argument
70 pMachineWindow = new UIMachineWindowNormal(pMachineLogic, uScreenId);
73 pMachineWindow = new UIMachineWindowFullscreen(pMachineLogic, uScreenId);
76 pMachineWindow = new UIMachineWindowSeamless(pMachineLogic, uScreenId);
79 pMachineWindow = new UIMachineWindowScale(pMachineLogic, uScreenId);
169 UIMachineWindow::UIMachineWindow(UIMachineLogic *pMachineLogic, ulong uScreenId) argument
170 : QIWithRetranslateUI2<QMainWindow>(0, pMachineLogic->windowFlags(uScreenId))
173 , m_uScreenId(uScreenId)
H A DUIMouseHandler.cpp168 void UIMouseHandler::captureMouse(ulong uScreenId) argument
175 if (m_viewports.contains(uScreenId))
181 m_iMouseCaptureViewIndex = uScreenId;
271 bool UIMouseHandler::x11EventFilter(XEvent *pEvent, ulong /* uScreenId */)
553 ulong uScreenId = m_viewports.key(pWatchedWidget); local
563 if (mouseEvent(pDeltaEvent->mouseEventType(), uScreenId,
564 m_viewports[uScreenId]->mapFromGlobal(p), p,
641 if (mouseEvent(pMouseEvent->type(), uScreenId,
652 return multiTouchEvent(static_cast<QTouchEvent*>(pEvent), uScreenId);
669 if (mouseEvent(pWheelEvent->type(), uScreenId,
792 mouseEvent(int iEventType, ulong uScreenId, const QPoint &relativePos, const QPoint &globalPos, Qt::MouseButtons mouseButtons, int wheelDelta, Qt::Orientation wheelDirection) argument
1032 multiTouchEvent(QTouchEvent *pTouchEvent, ulong uScreenId) argument
[all...]
/vbox/include/VBox/
H A DVBoxGuestLib.h718 uint32_t uScreenId; /** Screen ID this request belongs to */ member in struct:VBGLR3DNDHGCMEVENT
/vbox/src/VBox/Main/include/
H A DDisplayImpl.h151 int i_handleDisplayResize(unsigned uScreenId, uint32_t bpp, void *pvVRAM, uint32_t cbLine,
153 void i_handleDisplayUpdate(unsigned uScreenId, int x, int y, int w, int h);
309 void *pvVRAM, unsigned uScreenId);
335 static DECLCALLBACK(int) i_displayVBVAEnable(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId,
337 static DECLCALLBACK(void) i_displayVBVADisable(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId);
338 static DECLCALLBACK(void) i_displayVBVAUpdateBegin(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId);
339 static DECLCALLBACK(void) i_displayVBVAUpdateProcess(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId,
341 static DECLCALLBACK(void) i_displayVBVAUpdateEnd(PPDMIDISPLAYCONNECTOR pInterface, unsigned uScreenId, int32_t x, int32_t y,
435 void processDisplayData(void *pvVRAM, unsigned uScreenId);
522 HRESULT init(ComObjPtr<Display> pDisplay, unsigned uScreenId, DISPLAYFBINF
544 unsigned uScreenId; member in struct:DisplaySourceBitmap::Data
[all...]
/vbox/src/VBox/ExtPacks/VNC/
H A DVBoxVNC.cpp128 static DECLCALLBACK(void) VRDEUpdate(HVRDESERVER hServer, unsigned uScreenId, void *pvUpdate,uint32_t cbUpdate);
780 * @param uScreenId The screen index.
784 DECLCALLBACK(void) VNCServerImpl::VRDEUpdate(HVRDESERVER hServer, unsigned uScreenId, argument
/vbox/src/VBox/Frontends/VBoxSDL/
H A DFramebuffer.cpp103 HRESULT VBoxSDLFB::init(uint32_t uScreenId, argument
112 mScreenId = uScreenId;
/vbox/include/VBox/HostServices/
H A DDragAndDropSvc.h197 HGCMFunctionParameter uScreenId; /* OUT uint32_t */ member in struct:DragAndDropSvc::VBOXDNDHGACTIONMSG
239 HGCMFunctionParameter uScreenId; /* OUT uint32_t */ member in struct:DragAndDropSvc::VBOXDNDHGSENDDATAMSG
302 HGCMFunctionParameter uScreenId; /* OUT uint32_t */ member in struct:DragAndDropSvc::VBOXDNDGHREQPENDINGMSG
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA-SVGA.cpp511 * @param uScreenId The screen updates are for.
518 DECLCALLBACK(void) vmsvgaPortSetViewPort(PPDMIDISPLAYPORT pInterface, uint32_t uScreenId, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy) argument
522 Log(("vmsvgaPortSetViewPort: screen %d (%d,%d)(%d,%d)\n", uScreenId, x, y, cx, cy));
H A DDevVGA_VBVA.cpp337 static int vbvaFlushProcess (unsigned uScreenId, PVGASTATE pVGAState, VBVAPARTIALRECORD *pPartialRecord, VBVABUFFER *pVBVA) argument
339 LOGVBVABUFFER(("uScreenId %d, indexRecordFirst = %d, indexRecordFree = %d, off32Data = %d, off32Free = %d\n",
340 uScreenId, pVBVA->indexRecordFirst, pVBVA->indexRecordFree, pVBVA->off32Data, pVBVA->off32Free));
378 pVGAState->pDrv->pfnVBVAUpdateBegin (pVGAState->pDrv, uScreenId);
383 pVGAState->pDrv->pfnVBVAUpdateProcess (pVGAState->pDrv, uScreenId, phdr, cbCmd);
439 __PRETTY_FUNCTION__, uScreenId, dirtyRect.xLeft,
442 pVGAState->pDrv->pfnVBVAUpdateEnd (pVGAState->pDrv, uScreenId, dirtyRect.xLeft, dirtyRect.yTop,
447 pVGAState->pDrv->pfnVBVAUpdateEnd (pVGAState->pDrv, uScreenId, 0, 0, 0, 0);
456 unsigned uScreenId; local
458 for (uScreenId
490 vbvaEnable(unsigned uScreenId, PVGASTATE pVGAState, VBVACONTEXT *pCtx, VBVABUFFER *pVBVA, uint32_t u32Offset, bool fRestored) argument
536 vbvaDisable(unsigned uScreenId, PVGASTATE pVGAState, VBVACONTEXT *pCtx) argument
709 unsigned uScreenId; local
2333 unsigned uScreenId; local
2582 unsigned uScreenId; local
[all...]

Completed in 134 milliseconds

12