Lines Matching refs:_rPropertyData

736 	sal_uInt16 OBrowserListBox::InsertEntry(const OLineDescriptor& _rPropertyData, sal_uInt16 _nPos)  in InsertEntry()  argument
739 BrowserLinePointer pBrowserLine( new OBrowserLine( _rPropertyData.sName, &m_aLinesPlayground ) ); in InsertEntry()
741 ListBoxLine aNewLine( pBrowserLine, _rPropertyData.xPropertyHandler ); in InsertEntry()
743 m_aLines.insert( ListBoxLines::value_type( _rPropertyData.sName, aNewLine ) ); in InsertEntry()
765 ChangeEntry(_rPropertyData, nInsertPos); in InsertEntry()
1106 void OBrowserListBox::ChangeEntry( const OLineDescriptor& _rPropertyData, sal_uInt16 nPos ) in ChangeEntry() argument
1108 … OSL_PRECOND( _rPropertyData.Control.is(), "OBrowserListBox::ChangeEntry: invalid control!" ); in ChangeEntry()
1109 if ( !_rPropertyData.Control.is() ) in ChangeEntry()
1113 nPos = GetPropertyPos( _rPropertyData.sName ); in ChangeEntry()
1135 rLine.pLine->setControl( _rPropertyData.Control ); in ChangeEntry()
1142 if ( _rPropertyData.bUnknownValue ) in ChangeEntry()
1145 impl_setControlAsPropertyValue( rLine, _rPropertyData.aValue ); in ChangeEntry()
1147 rLine.pLine->SetTitle(_rPropertyData.DisplayName); in ChangeEntry()
1148 rLine.xHandler = _rPropertyData.xPropertyHandler; in ChangeEntry()
1150 sal_uInt16 nTextWidth = (sal_uInt16)m_aLinesPlayground.GetTextWidth(_rPropertyData.DisplayName); in ChangeEntry()
1154 if ( _rPropertyData.HasPrimaryButton ) in ChangeEntry()
1156 if ( _rPropertyData.PrimaryButtonImageURL.getLength() ) in ChangeEntry()
1157 rLine.pLine->ShowBrowseButton( _rPropertyData.PrimaryButtonImageURL, true ); in ChangeEntry()
1158 else if ( _rPropertyData.PrimaryButtonImage.is() ) in ChangeEntry()
1159 rLine.pLine->ShowBrowseButton( Image( _rPropertyData.PrimaryButtonImage ), true ); in ChangeEntry()
1163 if ( _rPropertyData.HasSecondaryButton ) in ChangeEntry()
1165 if ( _rPropertyData.SecondaryButtonImageURL.getLength() ) in ChangeEntry()
1166 rLine.pLine->ShowBrowseButton( _rPropertyData.SecondaryButtonImageURL, false ); in ChangeEntry()
1167 else if ( _rPropertyData.SecondaryButtonImage.is() ) in ChangeEntry()
1168 rLine.pLine->ShowBrowseButton( Image( _rPropertyData.SecondaryButtonImage ), false ); in ChangeEntry()
1183 DBG_ASSERT( ( _rPropertyData.IndentLevel == 0 ) || ( _rPropertyData.IndentLevel == 1 ), in ChangeEntry()
1185 rLine.pLine->IndentTitle( _rPropertyData.IndentLevel > 0 ); in ChangeEntry()
1194 HelpIdUrl::getHelpId( _rPropertyData.HelpURL ), in ChangeEntry()
1195 rtl::OUStringToOString( _rPropertyData.PrimaryButtonId, RTL_TEXTENCODING_UTF8 ), in ChangeEntry()
1196 rtl::OUStringToOString( _rPropertyData.SecondaryButtonId, RTL_TEXTENCODING_UTF8 ) in ChangeEntry()
1199 if ( _rPropertyData.bReadOnly ) in ChangeEntry()