Lines Matching refs:pWindow
119 ::Window* pWindow = NULL; in createWindow()
122 pWindow = new WorkWindow(pParentWindow, WB_SYSTEMCHILDWINDOW); in createWindow()
126 pWindow = new ::Window(pParentWindow); in createWindow()
128 Reference<awt::XWindow> xWindow (pWindow->GetComponentInterface(), UNO_QUERY); in createWindow()
138 if (pWindow != NULL) in createWindow()
140 pWindow->Show(bInitiallyVisible); in createWindow()
142 pWindow->SetMapMode(MAP_PIXEL); in createWindow()
143 pWindow->SetBackground(); in createWindow()
146 pWindow->SetParentClipMode(PARENTCLIPMODE_NOCLIP); in createWindow()
147 pWindow->SetPaintTransparent(sal_True); in createWindow()
151 pWindow->SetParentClipMode(PARENTCLIPMODE_CLIP); in createWindow()
152 pWindow->SetPaintTransparent(sal_False); in createWindow()
204 ::Window* pWindow = VCLUnoHelper::GetWindow(rxWindow); in createCanvas()
205 if (pWindow != NULL) in createCanvas()
210 aArg[0] = makeAny(reinterpret_cast<sal_Int64>(pWindow)); in createCanvas()
237 ::Window* pWindow = VCLUnoHelper::GetWindow(rxWindow); in toTop()
238 if (pWindow != NULL) in toTop()
240 pWindow->ToTop(); in toTop()
241 pWindow->SetZOrder(NULL, WINDOW_ZORDER_LAST); in toTop()
295 ::Window* pWindow = VCLUnoHelper::GetWindow(rxWindow); in captureMouse()
296 if (pWindow != NULL && ! pWindow->IsMouseCaptured()) in captureMouse()
298 pWindow->CaptureMouse(); in captureMouse()
311 ::Window* pWindow = VCLUnoHelper::GetWindow(rxWindow); in releaseMouse()
312 if (pWindow != NULL && pWindow->IsMouseCaptured()) in releaseMouse()
314 pWindow->ReleaseMouse(); in releaseMouse()