Lines Matching refs:OUString

54 using ::rtl::OUString;
61 …mxDialogModel( mxContext->getServiceManager()->createInstanceWithContext( OUString( RTL_CONSTASCII… in UnoDialog()
69 …mxDialog( mxContext->getServiceManager()->createInstanceWithContext( OUString( RTL_CONSTASCII_USTR… in UnoDialog()
95 void UnoDialog::setTitle( const rtl::OUString &rTitle ) in setTitle()
155 OUString( RTL_CONSTASCII_USTRINGPARAM( in createWindowPeer()
167 Reference< XInterface > UnoDialog::insertControlModel( const OUString& rServiceName, const OUString in insertControlModel()
168 const Sequence< OUString >& rPropertyNames, const Sequence< Any >& rPropertyValues ) in insertControlModel()
186 void UnoDialog::setVisible( const OUString& rName, sal_Bool bVisible ) in setVisible()
218 Reference< XButton > UnoDialog::insertButton( const OUString& rName, Reference< XActionListener > x… in insertButton()
219 const Sequence< OUString >& rPropertyNames, const Sequence< Any >& rPropertyValues ) in insertButton()
224 …Reference< XInterface > xButtonModel( insertControlModel( OUString( RTL_CONSTASCII_USTRINGPARAM( "… in insertButton()
227 xPropertySet->setPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "Name" ) ), Any( rName ) ); in insertButton()
245 Reference< XFixedText > UnoDialog::insertFixedText( const OUString& rName, const Sequence< OUString in insertFixedText()
250 …Reference< XPropertySet > xPropertySet( insertControlModel( OUString( RTL_CONSTASCII_USTRINGPARAM(… in insertFixedText()
252 … xPropertySet->setPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "Name" ) ), Any( rName ) ); in insertFixedText()
263 Reference< XCheckBox > UnoDialog::insertCheckBox( const OUString& rName, const Sequence< OUString >… in insertCheckBox()
268 …Reference< XPropertySet > xPropertySet( insertControlModel( OUString( RTL_CONSTASCII_USTRINGPARAM(… in insertCheckBox()
270 … xPropertySet->setPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "Name" ) ), Any( rName ) ); in insertCheckBox()
281 …ence< XControl > UnoDialog::insertFormattedField( const OUString& rName, const Sequence< OUString in insertFormattedField()
286 …Reference< XPropertySet > xPropertySet( insertControlModel( OUString( RTL_CONSTASCII_USTRINGPARAM(… in insertFormattedField()
288 … xPropertySet->setPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "Name" ) ), Any( rName ) ); in insertFormattedField()
299 Reference< XComboBox > UnoDialog::insertComboBox( const OUString& rName, const Sequence< OUString >… in insertComboBox()
304 …Reference< XPropertySet > xPropertySet( insertControlModel( OUString( RTL_CONSTASCII_USTRINGPARAM(… in insertComboBox()
306 … xPropertySet->setPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "Name" ) ), Any( rName ) ); in insertComboBox()
317 …nce< XRadioButton > UnoDialog::insertRadioButton( const OUString& rName, const Sequence< OUString in insertRadioButton()
322 …Reference< XPropertySet > xPropertySet( insertControlModel( OUString( RTL_CONSTASCII_USTRINGPARAM(… in insertRadioButton()
324 … xPropertySet->setPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "Name" ) ), Any( rName ) ); in insertRadioButton()
335 Reference< XListBox > UnoDialog::insertListBox( const OUString& rName, const Sequence< OUString > r… in insertListBox()
340 …Reference< XPropertySet > xPropertySet( insertControlModel( OUString( RTL_CONSTASCII_USTRINGPARAM(… in insertListBox()
342 … xPropertySet->setPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "Name" ) ), Any( rName ) ); in insertListBox()
353 Reference< XControl > UnoDialog::insertImage( const OUString& rName, const Sequence< OUString > rPr… in insertImage()
358 …Reference< XPropertySet > xPropertySet( insertControlModel( OUString( RTL_CONSTASCII_USTRINGPARAM(… in insertImage()
360 … xPropertySet->setPropertyValue( OUString( RTL_CONSTASCII_USTRINGPARAM( "Name" ) ), Any( rName ) ); in insertImage()
371 void UnoDialog::setControlProperty( const OUString& rControlName, const OUString& rPropertyName, co… in setControlProperty()
394 const OUString sWidth( RTL_CONSTASCII_USTRINGPARAM( "Width" ) ); in getMapsFromPixels()
411 Any UnoDialog::getControlProperty( const OUString& rControlName, const OUString& rPropertyName ) in getControlProperty()
430 void UnoDialog::enableControl( const OUString& rControlName ) in enableControl()
432 const OUString sEnabled( RTL_CONSTASCII_USTRINGPARAM( "Enabled" ) ); in enableControl()
438 void UnoDialog::disableControl( const OUString& rControlName ) in disableControl()
440 const OUString sEnabled( RTL_CONSTASCII_USTRINGPARAM( "Enabled" ) ); in disableControl()