Lines Matching refs:bEnable

6755 void Window::Enable( bool bEnable, bool bChild )  in Enable()  argument
6759 if ( !bEnable ) in Enable()
6777 mpWindowImpl->mpBorderWindow->Enable( bEnable, sal_False ); in Enable()
6780 … ((ImplBorderWindow*)mpWindowImpl->mpBorderWindow)->mpMenuBarWindow->Enable( bEnable, sal_True ); in Enable()
6786 if( bEnable && in Enable()
6792 if ( mpWindowImpl->mbDisabled != !bEnable ) in Enable()
6794 mpWindowImpl->mbDisabled = !bEnable; in Enable()
6796 mpWindowImpl->mpSysObj->Enable( bEnable && !mpWindowImpl->mbInputDisabled ); in Enable()
6801 ImplCallEventListeners( bEnable ? VCLEVENT_WINDOW_ENABLED : VCLEVENT_WINDOW_DISABLED ); in Enable()
6809 pChild->Enable( bEnable, bChild ); in Enable()
6841 void Window::EnableInput( sal_Bool bEnable, sal_Bool bChild ) in EnableInput() argument
6845 sal_Bool bNotify = (bEnable != mpWindowImpl->mbInputDisabled); in EnableInput()
6848 mpWindowImpl->mpBorderWindow->EnableInput( bEnable, sal_False ); in EnableInput()
6851 …ImplBorderWindow*)mpWindowImpl->mpBorderWindow)->mpMenuBarWindow->EnableInput( bEnable, sal_True ); in EnableInput()
6854 if ( (! bEnable && mpWindowImpl->meAlwaysInputMode != AlwaysInputEnabled) || in EnableInput()
6855 ( bEnable && mpWindowImpl->meAlwaysInputMode != AlwaysInputDisabled) ) in EnableInput()
6859 if ( !bEnable ) in EnableInput()
6867 if ( mpWindowImpl->mbInputDisabled != !bEnable ) in EnableInput()
6869 mpWindowImpl->mbInputDisabled = !bEnable; in EnableInput()
6871 mpWindowImpl->mpSysObj->Enable( !mpWindowImpl->mbDisabled && bEnable ); in EnableInput()
6880 if( bEnable && in EnableInput()
6891 pChild->EnableInput( bEnable, bChild ); in EnableInput()
6902 NotifyEvent aNEvt( bEnable ? EVENT_INPUTENABLE : EVENT_INPUTDISABLE, this ); in EnableInput()
6909 void Window::EnableInput( sal_Bool bEnable, sal_Bool bChild, sal_Bool bSysWin, in EnableInput() argument
6914 EnableInput( bEnable, bChild ); in EnableInput()
6930 pSysWin->EnableInput( bEnable, bChild ); in EnableInput()
6947 pFrameWin->EnableInput( bEnable, bChild ); in EnableInput()
6966 (*p)->EnableInput( bEnable, bChild ); in EnableInput()
7261 void Window::EnableAlwaysOnTop( sal_Bool bEnable ) in EnableAlwaysOnTop() argument
7265 mpWindowImpl->mbAlwaysOnTop = bEnable; in EnableAlwaysOnTop()
7268 mpWindowImpl->mpBorderWindow->EnableAlwaysOnTop( bEnable ); in EnableAlwaysOnTop()
7269 else if ( bEnable && IsReallyVisible() ) in EnableAlwaysOnTop()
7273 mpWindowImpl->mpFrame->SetAlwaysOnTop( bEnable ); in EnableAlwaysOnTop()
9752 void Window::EnableNativeWidget( sal_Bool bEnable ) in EnableNativeWidget() argument
9756 bEnable = sal_False; in EnableNativeWidget()
9758 if( bEnable != ImplGetWinData()->mbEnableNativeWidget ) in EnableNativeWidget()
9760 ImplGetWinData()->mbEnableNativeWidget = bEnable; in EnableNativeWidget()
9769 mpWindowImpl->mpBorderWindow->ImplGetWinData()->mbEnableNativeWidget = bEnable; in EnableNativeWidget()
9776 pChild->EnableNativeWidget( bEnable ); in EnableNativeWidget()