Searched refs:pView (Results 1 - 17 of 17) sorted by relevance

/vbox/src/VBox/HostServices/SharedOpenGL/render/
H A Drenderspu_cocoa_helper.h49 void cocoaViewReparent(NativeNSViewRef pView, NativeNSViewRef pParentView);
50 void cocoaViewDestroy(NativeNSViewRef pView);
51 void cocoaViewDisplay(NativeNSViewRef pView);
52 void cocoaViewShow(NativeNSViewRef pView, GLboolean fShowIt);
53 void cocoaViewSetPosition(NativeNSViewRef pView, NativeNSViewRef pParentView, int x, int y);
54 void cocoaViewSetSize(NativeNSViewRef pView, int cx, int cy);
55 void cocoaViewGetGeometry(NativeNSViewRef pView, int *px, int *py, int *pcx, int *pcy);
56 void cocoaViewMakeCurrentContext(NativeNSViewRef pView, NativeNSOpenGLContextRef pCtx);
57 void cocoaViewSetVisibleRegion(NativeNSViewRef pView, GLint cRects, const GLint *paRects);
58 GLboolean cocoaViewNeedsEmptyPresent(NativeNSViewRef pView);
[all...]
H A Drenderspu_cocoa_helper.m265 NSView *pView = pCtx ? [pCtx view] : nil;
271 || pWinInfo->window != pView)
295 NSView *pView;
321 pCtxInfo->pView = pNewView;
335 NSView *pOldView = pCtxInfo->pView;
1479 - (void)setParentView:(NSView *)pView
1481 COCOA_LOG_FLOW(("%s: self=%p pView=%p (old=%p)\n", __PRETTY_FUNCTION__, (void *)self, (void *)pView, m_pParentView));
1483 m_pParentView = pView;
2718 NSView *pView
[all...]
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA-SVGA3d-cocoa.h41 VMSVGA3D_DECL(void) vmsvga3dCocoaDestroyView(NativeNSViewRef pView); variable
42 VMSVGA3D_DECL(void) vmsvga3dCocoaViewSetPosition(NativeNSViewRef pView, NativeNSViewRef pParentView, int x, int y);
43 VMSVGA3D_DECL(void) vmsvga3dCocoaViewSetSize(NativeNSViewRef pView, int w, int h);
44 VMSVGA3D_DECL(void) vmsvga3dCocoaViewMakeCurrentContext(NativeNSViewRef pView, NativeNSOpenGLContextRef pCtx);
45 VMSVGA3D_DECL(void) vmsvga3dCocoaSwapBuffers(NativeNSViewRef pView, NativeNSOpenGLContextRef pCtx);
H A DDevVGA_VBVA.cpp473 static int vbvaResize (PVGASTATE pVGAState, VBVAVIEW *pView, const VBVAINFOSCREEN *pNewScreen) argument
479 pView->screen = *pNewScreen;
481 uint8_t *pu8VRAM = pVGAState->vram_ptrR3 + pView->view.u32ViewOffset;
483 int rc = pVGAState->pDrv->pfnVBVAResize (pVGAState->pDrv, &pView->view, &pView->screen, pu8VRAM);
541 VBVAVIEW *pView = &pCtx->aViews[uScreenId]; local
543 if (pView->pVBVA)
545 pView->pVBVA->hostFlags.u32HostEvents = 0;
546 pView->pVBVA->hostFlags.u32SupportedOrders = 0;
548 pView
569 VBVAVIEW * pView = &pCtx->aViews[0]; local
713 VBVAINFOVIEW *pView = &pCtx->aViews[uScreenId].view; local
735 const VBVAVIEW *pView = &pCtx->aViews[iView]; local
1527 VBVAVIEW *pView = &pCtx->aViews[iView]; local
1713 VBVAVIEW *pView = &pCtx->aViews[iView]; local
1945 VBVAVIEW *pView = &pCtx->aViews[iView]; local
1993 VBVAInfoView(PVGASTATE pVGAState, VBVAINFOVIEW *pView) argument
2018 VBVAINFOVIEW *pView = &pCtx->aViews[pScreen->u32ViewIndex].view; local
2051 VBVAGetInfoViewAndScreen(PVGASTATE pVGAState, uint32_t u32ViewIndex, VBVAINFOVIEW *pView, VBVAINFOSCREEN *pScreen) argument
2250 VBVAINFOVIEW *pView = (VBVAINFOVIEW *)pvBuffer; local
[all...]
H A DDevVGA-SVGA3d-cocoa.m680 VMSVGA3DOverlayView* pView = [[VMSVGA3DOverlayView alloc] initWithFrame:NSZeroRect parentView:pParentView];
682 if (pView)
685 [[VMSVGA3DOverlayWindow alloc] initWithParentView:pParentView overlayView:pView];
687 *ppView = pView;
694 void vmsvga3dCocoaDestroyView(NativeNSViewRef pView)
700 [pView setHidden: YES];
703 [pView release];
709 void vmsvga3dCocoaViewSetPosition(NativeNSViewRef pView, NativeNSViewRef pParentView, int x, int y)
714 [(VMSVGA3DOverlayView*)pView setPos:NSMakePoint(x, y)];
719 void vmsvga3dCocoaViewSetSize(NativeNSViewRef pView, in
[all...]
H A DDevVGA.h651 int VBVAInfoView(PVGASTATE pVGAState, VBVAINFOVIEW *pView);
653 int VBVAGetInfoViewAndScreen(PVGASTATE pVGAState, uint32_t u32ViewIndex, VBVAINFOVIEW *pView, VBVAINFOSCREEN *pScreen);
/vbox/src/VBox/Frontends/VirtualBox/src/platform/darwin/
H A DUIAbstractDockIconPreview.cpp80 UIMachineView* pView = m_pSession->machineLogic()->dockPreviewView(); local
81 if (pView)
82 return (void*)pView->viewport()->winId();
H A DVBoxUtils-darwin.h46 NativeNSWindowRef darwinToNativeWindowImpl(NativeNSViewRef pView);
72 void darwinTest(NativeNSViewRef pView, NativeNSViewRef pView1, int h);
152 NativeNSWindowRef darwinToNativeWindow(NativeNSViewRef pView);
H A DVBoxUtils-darwin-cocoa.mm39 NativeNSWindowRef darwinToNativeWindowImpl(NativeNSViewRef pView)
42 if (pView)
43 window = [pView window];
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/
H A DUIFrameBuffer.cpp412 virtual HRESULT init(UIMachineView *pView) argument
414 mpView = pView;
500 void setView(UIMachineView * pView) argument
504 UIFrameBufferPrivate::setView(pView);
505 mpView = pView;
506 mOverlay.updateAttachment(pView ? pView->viewport() : NULL, pView);
H A DUIMachineLogic.cpp350 if(UIMachineView *pView = machineWindows().at(m_DockIconPreviewMonitor)->machineView())
351 if (CGImageRef image = pView->vmContentImage())
/vbox/src/VBox/Frontends/VirtualBox/src/selector/graphics/chooser/
H A DUIGChooserModel.cpp1082 QGraphicsView *pView = scene()->views()[0]; local
1083 QScrollBar *pVerticalScrollBar = pView->verticalScrollBar();
1086 QPoint mousePos = pView->mapFromGlobal(QCursor::pos());
1100 else if (mousePos.y() > pView->height() - m_iScrollingTokenSize)
1102 int iValue = pView->height() - mousePos.y();
1648 QGraphicsView *pView = scene()->views()[0];
1651 QPoint eventPoint = pView->mapFromGlobal(pEvent->screenPos());
1653 (eventPoint.y() > pView->height() - m_iScrollingTokenSize))
H A DUIGChooserItemGroup.cpp1884 QGraphicsView *pView = m_pParent->model()->scene()->views().first(); local
1887 m_pTemporaryMenu = new QMenu(pView);
1897 QPoint viewPos = pView->mapFromScene(scenePos);
1898 QPoint globalPos = pView->mapToGlobal(viewPos);
/vbox/src/VBox/Main/include/
H A DDisplayImpl.h179 int i_notifyCroglResize(const PVBVAINFOVIEW pView, const PVBVAINFOSCREEN pScreen, void *pvVRAM);
343 static DECLCALLBACK(int) i_displayVBVAResize(PPDMIDISPLAYCONNECTOR pInterface, const PVBVAINFOVIEW pView,
/vbox/src/VBox/Main/src-client/
H A DDisplayImpl.cpp818 int Display::i_notifyCroglResize(const PVBVAINFOVIEW pView, const PVBVAINFOSCREEN pScreen, void *pvVRAM) argument
3874 static void logVBVAResize(const PVBVAINFOVIEW pView, const PVBVAINFOSCREEN pScreen, const DISPLAYFBINFO *pFBInfo)
3877 " pView->u32ViewIndex %d\n"
3878 " pView->u32ViewOffset 0x%08X\n"
3879 " pView->u32ViewSize 0x%08X\n"
3880 " pView->u32MaxScreenSize 0x%08X\n"
3906 pView->u32ViewIndex,
3907 pView->u32ViewOffset,
3908 pView->u32ViewSize,
3909 pView
[all...]
/vbox/include/VBox/vmm/
H A Dpdmifs.h937 * @param pView The description of VRAM block for this screen.
943 DECLR3CALLBACKMEMBER(int, pfnVBVAResize,(PPDMIDISPLAYCONNECTOR pInterface, const PVBVAINFOVIEW pView, const PVBVAINFOSCREEN pScreen, void *pvVRAM));
/vbox/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/
H A DVBoxMPWddm.cpp258 VBVAINFOVIEW *pView = (VBVAINFOVIEW *)p;
260 pView->u32ViewIndex = pAllocData->SurfDesc.VidPnSourceId;
261 pView->u32ViewOffset = (uint32_t)offVram; /* we pretend the view is located at the start of each framebuffer */
262 pView->u32ViewSize = vboxWddmVramCpuVisibleSegmentSize(pDevExt)/VBoxCommonFromDeviceExt(pDevExt)->cDisplays;
264 pView->u32MaxScreenSize = pView->u32ViewSize;

Completed in 128 milliseconds