Lines Matching refs:pWindow
190 Window* pWindow = NULL; in GetWindow() local
195 pWindow = VCLUnoHelper::GetWindow( xControl->getPeer() ); in GetWindow()
198 return pWindow; in GetWindow()
524 Window* pWindow = GetWindow(); in getForeground() local
525 if ( pWindow ) in getForeground()
527 if ( pWindow->IsControlForeground() ) in getForeground()
528 nColor = pWindow->GetControlForeground().GetColor(); in getForeground()
532 if ( pWindow->IsControlFont() ) in getForeground()
533 aFont = pWindow->GetControlFont(); in getForeground()
535 aFont = pWindow->GetFont(); in getForeground()
550 Window* pWindow = GetWindow(); in getBackground() local
551 if ( pWindow ) in getBackground()
553 if ( pWindow->IsControlBackground() ) in getBackground()
554 nColor = pWindow->GetControlBackground().GetColor(); in getBackground()
556 nColor = pWindow->GetBackground().GetColor().GetColor(); in getBackground()
571 Window* pWindow = GetWindow(); in getFont() local
572 if ( pWindow ) in getFont()
574 Reference< awt::XDevice > xDev( pWindow->GetComponentInterface(), UNO_QUERY ); in getFont()
578 if ( pWindow->IsControlFont() ) in getFont()
579 aFont = pWindow->GetControlFont(); in getFont()
581 aFont = pWindow->GetFont(); in getFont()
607 Window* pWindow = GetWindow(); in getToolTipText() local
608 if ( pWindow ) in getToolTipText()
609 sText = pWindow->GetQuickHelpText(); in getToolTipText()