Lines Matching refs:aBasicBox

566 		aBasicBox( 		this, 	IDEResId( RID_TRLBOX ) ),  in ObjectPage()
579 aBasicBox.SetSelectHdl( LINK( this, ObjectPage, BasicBoxHighlightHdl ) ); in ObjectPage()
592 aBasicBox.SetDragDropMode( SV_DRAGDROP_CTRL_MOVE | SV_DRAGDROP_CTRL_COPY ); in ObjectPage()
593 aBasicBox.EnableInplaceEditing( sal_True ); in ObjectPage()
594 aBasicBox.SetMode( nMode ); in ObjectPage()
595 aBasicBox.SetStyle( WB_BORDER | WB_TABSTOP | in ObjectPage()
599 aBasicBox.ScanAllEntries(); in ObjectPage()
607 aBasicBox.SetCurrentEntry( rDesc ); in SetCurrentEntry()
612 aBasicBox.UpdateEntries(); in ActivatePage()
622 SvLBoxEntry* pCurEntry = aBasicBox.GetCurEntry(); in CheckButtons()
623 BasicEntryDescriptor aDesc( aBasicBox.GetEntryDescriptor( pCurEntry ) ); in CheckButtons()
628 sal_uInt16 nMode = aBasicBox.GetMode(); in CheckButtons()
630 sal_uInt16 nDepth = pCurEntry ? aBasicBox.GetModel()->GetDepth( pCurEntry ) : 0; in CheckButtons()
697 SvLBoxEntry* pCurEntry = aBasicBox.GetCurEntry(); in IMPL_LINK()
699 if ( aBasicBox.GetModel()->GetDepth( pCurEntry ) >= 2 ) in IMPL_LINK()
701 BasicEntryDescriptor aDesc( aBasicBox.GetEntryDescriptor( pCurEntry ) ); in IMPL_LINK()
712 aModName, aBasicBox.ConvertType( aDesc.GetType() ) ); in IMPL_LINK()
718 DBG_ASSERT( aBasicBox.GetModel()->GetDepth( pCurEntry ) == 1, "Kein LibEntry?!" ); in IMPL_LINK()
720 SvLBoxEntry* pParentEntry = aBasicBox.GetParent( pCurEntry ); in IMPL_LINK()
728 String aLibName( aBasicBox.GetEntryText( pCurEntry ) ); in IMPL_LINK()
753 SvLBoxEntry* pCurEntry = aBasicBox.GetCurEntry(); in GetSelection()
754 BasicEntryDescriptor aDesc( aBasicBox.GetEntryDescriptor( pCurEntry ) ); in GetSelection()
807 aBasicBox, aLibName, aModName, true ); in NewModule()
851 SvLBoxEntry* pRootEntry = aBasicBox.FindRootEntry( aDocument, eLocation ); in NewDialog()
854 if ( !aBasicBox.IsExpanded( pRootEntry ) ) in NewDialog()
855 aBasicBox.Expand( pRootEntry ); in NewDialog()
856 … SvLBoxEntry* pLibEntry = aBasicBox.FindEntry( pRootEntry, aLibName, OBJ_TYPE_LIBRARY ); in NewDialog()
860 if ( !aBasicBox.IsExpanded( pLibEntry ) ) in NewDialog()
861 aBasicBox.Expand( pLibEntry ); in NewDialog()
862 … SvLBoxEntry* pEntry = aBasicBox.FindEntry( pLibEntry, aDlgName, OBJ_TYPE_DIALOG ); in NewDialog()
865 pEntry = aBasicBox.AddEntry( in NewDialog()
873 aBasicBox.SetCurEntry( pEntry ); in NewDialog()
874 aBasicBox.Select( aBasicBox.GetCurEntry() ); // OV-Bug?! in NewDialog()
884 SvLBoxEntry* pCurEntry = aBasicBox.GetCurEntry(); in DeleteCurrent()
886 BasicEntryDescriptor aDesc( aBasicBox.GetEntryDescriptor( pCurEntry ) ); in DeleteCurrent()
898 aBasicBox.GetModel()->Remove( pCurEntry ); in DeleteCurrent()
899 if ( aBasicBox.GetCurEntry() ) // OV-Bug ? in DeleteCurrent()
900 aBasicBox.Select( aBasicBox.GetCurEntry() ); in DeleteCurrent()
906 …SbxItem aSbxItem( SID_BASICIDE_ARG_SBX, aDocument, aLibName, aName, aBasicBox.ConvertType( eType )… in DeleteCurrent()