Home
last modified time | relevance | path

Searched refs:xMsgBox (Results 1 – 7 of 7) sorted by relevance

/trunk/main/odk/examples/DevelopersGuide/Components/Addons/ProtocolHandlerAddon_cpp/
H A Daddon.cxx69 Reference< XMessageBox > xMsgBox( xPeer, UNO_QUERY ); in ShowMessageBox() local
70 if ( xMsgBox.is() ) in ShowMessageBox()
72 xMsgBox->setCaptionText( aTitle ); in ShowMessageBox()
73 xMsgBox->setMessageText( aMsgText ); in ShowMessageBox()
74 xMsgBox->execute(); in ShowMessageBox()
/trunk/main/odk/examples/java/Inspector/
H A DProtocolHandlerAddon.java216 XMessageBox xMsgBox = (XMessageBox)UnoRuntime.queryInterface( in showMessageBox() local
218 if ( null != xMsgBox ) in showMessageBox()
220 xMsgBox.setCaptionText( sTitle ); in showMessageBox()
221 xMsgBox.setMessageText( sMessage ); in showMessageBox()
222 xMsgBox.execute(); in showMessageBox()
/trunk/main/odk/examples/DevelopersGuide/Components/Addons/ProtocolHandlerAddon_java/
H A DProtocolHandlerAddon.java216 XMessageBox xMsgBox = (XMessageBox)UnoRuntime.queryInterface( in showMessageBox() local
218 if ( null != xMsgBox ) in showMessageBox()
220 xMsgBox.setCaptionText( sTitle ); in showMessageBox()
221 xMsgBox.setMessageText( sMessage ); in showMessageBox()
222 xMsgBox.execute(); in showMessageBox()
/trunk/main/odk/examples/DevelopersGuide/Components/dialogcomponent/
H A DDialogComponent.java263 XMessageBox xMsgBox = (XMessageBox)UnoRuntime.queryInterface( in showMessageBox() local
265 if ( null != xMsgBox ) in showMessageBox()
267 xMsgBox.setCaptionText( sTitle ); in showMessageBox()
268 xMsgBox.setMessageText( sMessage ); in showMessageBox()
269 xMsgBox.execute(); in showMessageBox()
/trunk/main/extensions/source/update/check/
H A Dupdatehdl.cxx961 …uno::Reference< awt::XMessageBox > xMsgBox( xToolkit->createWindow( aDescriptor ), uno::UNO_QUERY … in showWarning() local
962 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() local
1011 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 …]
/trunk/main/odk/examples/cpp/complextoolbarcontrols/
H A DMyProtocolHandler.cxx60 Reference< XMessageBox > xMsgBox = xMsgBoxFactory->createMessageBox( in ShowMessageBox() local
67 if ( xMsgBox.is() ) in ShowMessageBox()
68 xMsgBox->execute(); in ShowMessageBox()
/trunk/main/toolkit/source/awt/
H A Dvclxtoolkit.cxx1321 ::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 62 milliseconds