Lines Matching refs:m_aFontBox
133 m_aFontBox( this, PaResId( RID_FNTNM_LB_FONTS ) ), in FontNameDlg()
142 m_aFontBox.EnableMultiSelection( sal_True ); in FontNameDlg()
148 m_aFontBox.setDelPressedLink( LINK( this, FontNameDlg, DelPressedHdl ) ); in FontNameDlg()
149 m_aFontBox.SetSelectHdl( LINK( this, FontNameDlg, SelectHdl ) ); in FontNameDlg()
254 m_aFontBox.Clear(); in init()
299 sal_uInt16 nEntry = m_aFontBox.InsertEntry( aEntry ); in init()
300 m_aFontBox.SetEntryData( nEntry, (void*)(*font_it) ); in init()
307 if( pBox == &m_aFontBox ) in IMPL_LINK()
309 sal_Bool bEnable = m_aFontBox.GetSelectEntryCount() ? sal_True : sal_False; in IMPL_LINK()
318 if( pBox == &m_aFontBox && m_aRemoveButton.IsEnabled() ) in IMPL_LINK()
334 …m_aRemoveButton && AreYouSure( this, RID_QUERY_REMOVEFONTFROMLIST ) && m_aFontBox.GetSelectEntryCo… in IMPL_LINK()
337 for( i = 0; i < m_aFontBox.GetSelectEntryCount(); i++ ) in IMPL_LINK()
339 int nSelect = m_aFontBox.GetSelectEntryPos( i ); in IMPL_LINK()
340 aRemoveIDs.push_back( (fontID)(sal_IntPtr)m_aFontBox.GetEntryData( nSelect ) ); in IMPL_LINK()
351 else if( pButton == &m_aRenameButton && m_aFontBox.GetSelectEntryCount() ) in IMPL_LINK()
353 for( i = 0; i < m_aFontBox.GetSelectEntryCount(); i++ ) in IMPL_LINK()
355 … fontID aFont = (fontID)(sal_IntPtr)m_aFontBox.GetEntryData( m_aFontBox.GetSelectEntryPos( i ) ); in IMPL_LINK()
359 …rText.SearchAndReplace( String( RTL_CONSTASCII_USTRINGPARAM( "%s" ) ), m_aFontBox.GetSelectEntry( … in IMPL_LINK()