Searched refs:xMsgBox (Results 1 – 7 of 7) sorted by relevance
69 Reference< XMessageBox > xMsgBox( xPeer, UNO_QUERY ); in ShowMessageBox() local70 if ( xMsgBox.is() ) in ShowMessageBox()72 xMsgBox->setCaptionText( aTitle ); in ShowMessageBox()73 xMsgBox->setMessageText( aMsgText ); in ShowMessageBox()74 xMsgBox->execute(); in ShowMessageBox()
216 XMessageBox xMsgBox = (XMessageBox)UnoRuntime.queryInterface( in showMessageBox() local218 if ( null != xMsgBox ) in showMessageBox()220 xMsgBox.setCaptionText( sTitle ); in showMessageBox()221 xMsgBox.setMessageText( sMessage ); in showMessageBox()222 xMsgBox.execute(); in showMessageBox()
263 XMessageBox xMsgBox = (XMessageBox)UnoRuntime.queryInterface( in showMessageBox() local265 if ( null != xMsgBox ) in showMessageBox()267 xMsgBox.setCaptionText( sTitle ); in showMessageBox()268 xMsgBox.setMessageText( sMessage ); in showMessageBox()269 xMsgBox.execute(); in showMessageBox()
961 …uno::Reference< awt::XMessageBox > xMsgBox( xToolkit->createWindow( aDescriptor ), uno::UNO_QUERY … in showWarning() local962 if ( xMsgBox.is() ) in showWarning()967 xMsgBox->setMessageText( rWarningText ); in showWarning()968 nRet = xMsgBox->execute(); in showWarning()974 uno::Reference< lang::XComponent > xComponent( xMsgBox, uno::UNO_QUERY ); in showWarning()1010 …uno::Reference< awt::XMessageBox > xMsgBox( xToolkit->createWindow( aDescriptor ), uno::UNO_QUERY … in showWarning() local1011 if ( xMsgBox.is() ) in showWarning()1013 uno::Reference< awt::XVclContainer > xMsgBoxCtrls( xMsgBox, uno::UNO_QUERY ); in showWarning()1037 xMsgBox->setMessageText( rWarningText ); in showWarning()1038 nRet = xMsgBox->execute(); in showWarning()[all …]
60 Reference< XMessageBox > xMsgBox = xMsgBoxFactory->createMessageBox( in ShowMessageBox() local67 if ( xMsgBox.is() ) in ShowMessageBox()68 xMsgBox->execute(); in ShowMessageBox()
1321 ::com::sun::star::uno::Reference< ::com::sun::star::awt::XMessageBox > xMsgBox( in createMessageBox()1323 css::uno::Reference< css::awt::XWindow > xWindow( xMsgBox, css::uno::UNO_QUERY ); in createMessageBox()1324 if ( xMsgBox.is() && xWindow.is() ) in createMessageBox()1330 xMsgBox->setCaptionText( aTitle ); in createMessageBox()1331 xMsgBox->setMessageText( aMessage ); in createMessageBox()1335 return xMsgBox; in createMessageBox()
Completed in 49 milliseconds