Lines Matching refs:_nStyle

657 void OSQLMessageBox::impl_createStandardButtons( WinBits _nStyle )  in impl_createStandardButtons()  argument
659 if ( _nStyle & WB_YES_NO_CANCEL ) in impl_createStandardButtons()
661 lcl_addButton( *this, BUTTON_YES, ( _nStyle & WB_DEF_YES ) != 0 ); in impl_createStandardButtons()
662 lcl_addButton( *this, BUTTON_NO, ( _nStyle & WB_DEF_NO ) != 0 ); in impl_createStandardButtons()
663 lcl_addButton( *this, BUTTON_CANCEL, ( _nStyle & WB_DEF_CANCEL ) != 0 ); in impl_createStandardButtons()
665 else if ( _nStyle & WB_OK_CANCEL ) in impl_createStandardButtons()
667 lcl_addButton( *this, BUTTON_OK, ( _nStyle & WB_DEF_OK ) != 0 ); in impl_createStandardButtons()
668 lcl_addButton( *this, BUTTON_CANCEL, ( _nStyle & WB_DEF_CANCEL ) != 0 ); in impl_createStandardButtons()
670 else if ( _nStyle & WB_YES_NO ) in impl_createStandardButtons()
672 lcl_addButton( *this, BUTTON_YES, ( _nStyle & WB_DEF_YES ) != 0 ); in impl_createStandardButtons()
673 lcl_addButton( *this, BUTTON_NO, ( _nStyle & WB_DEF_NO ) != 0 ); in impl_createStandardButtons()
675 else if ( _nStyle & WB_RETRY_CANCEL ) in impl_createStandardButtons()
677 lcl_addButton( *this, BUTTON_RETRY, ( _nStyle & WB_DEF_RETRY ) != 0 ); in impl_createStandardButtons()
678 lcl_addButton( *this, BUTTON_CANCEL, ( _nStyle & WB_DEF_CANCEL ) != 0 ); in impl_createStandardButtons()
682 …OSL_ENSURE( WB_OK & _nStyle, "OSQLMessageBox::impl_createStandardButtons: unsupported dialog style… in impl_createStandardButtons()
735 void OSQLMessageBox::Construct( WinBits _nStyle, MessageType _eImage ) in Construct() argument
759 impl_createStandardButtons( _nStyle ); in Construct()
764 …essageBox(Window* _pParent, const SQLExceptionInfo& _rException, WinBits _nStyle, const ::rtl::OUS… in OSQLMessageBox() argument
772 Construct( _nStyle, AUTO ); in OSQLMessageBox()
776 … _pParent, const UniString& _rTitle, const UniString& _rMessage, WinBits _nStyle, MessageType _eTy… in OSQLMessageBox() argument
790 Construct( _nStyle, _eType ); in OSQLMessageBox()
809 OSQLWarningBox::OSQLWarningBox( Window* _pParent, const UniString& _rMessage, WinBits _nStyle, in OSQLWarningBox() argument
811 …:OSQLMessageBox( _pParent, String( ModuleRes( STR_STAT_WARNING ) ), _rMessage, _nStyle, OSQLMessag… in OSQLWarningBox()