Clean up confusing name clashes of non-virtual SvListView member functions

...Expand/Collapse/Select with virtual functions of the same names in derived
classes.

Change-Id: Id2c7e434cc972ac8a789c60ceaf54dc76246be12
This commit is contained in:
Stephan Bergmann
2014-02-25 15:48:53 +01:00
parent a59e5ecd61
commit 199705b37b
6 changed files with 14 additions and 22 deletions

View File

@@ -161,7 +161,6 @@ class SfxConfigGroupListBox : public SvTreeListBox
protected:
virtual void RequestingChildren( SvTreeListEntry *pEntry);
using SvListView::Expand;
virtual sal_Bool Expand( SvTreeListEntry* pParent );
public:

View File

@@ -158,7 +158,6 @@ private:
protected:
virtual void RequestingChildren( SvTreeListEntry *pEntry);
virtual sal_Bool Expand( SvTreeListEntry* pParent );
using SvListView::Expand;
public:
SvxConfigGroupListBox(Window* pParent, WinBits nStyle);

View File

@@ -254,6 +254,15 @@ class SVT_DLLPUBLIC SvListView
protected:
SvTreeList* pModel;
void ExpandListEntry( SvTreeListEntry* pParent )
{ pModel->Expand((SvListView*)this,pParent); }
void CollapseListEntry( SvTreeListEntry* pParent )
{ pModel->Collapse((SvListView*)this,pParent); }
sal_Bool SelectListEntry( SvTreeListEntry* pEntry, sal_Bool bSelect )
{ return pModel->Select((SvListView*)this,pEntry,bSelect); }
public:
SvListView(); // Sets the Model to 0
virtual ~SvListView();
@@ -319,15 +328,6 @@ public:
sal_uLong GetChildSelectionCount( SvTreeListEntry* pParent ) const
{ return pModel->GetChildSelectionCount((SvListView*)this,pParent); }
void Expand( SvTreeListEntry* pParent )
{ pModel->Expand((SvListView*)this,pParent); }
void Collapse( SvTreeListEntry* pParent )
{ pModel->Collapse((SvListView*)this,pParent); }
sal_Bool Select( SvTreeListEntry* pEntry, sal_Bool bSelect=sal_True )
{ return pModel->Select((SvListView*)this,pEntry,bSelect); }
// Does not call the Select Handler
virtual void SelectAll( sal_Bool bSelect, sal_Bool )
{ pModel->SelectAll((SvListView*)this, bSelect); }

View File

@@ -524,9 +524,6 @@ public:
virtual bool set_property(const OString &rKey, const OString &rValue);
protected:
using SvListView::Expand;
using SvListView::Collapse;
using SvListView::Select;
using SvListView::SelectAll;
SVT_DLLPRIVATE short GetHeightOffset( const Image& rBmp, Size& rLogicSize);

View File

@@ -2499,7 +2499,7 @@ sal_Bool SvTreeListBox::Expand( SvTreeListEntry* pParent )
if( ExpandingHdl() )
{
bExpanded = sal_True;
SvListView::Expand( pParent );
ExpandListEntry( pParent );
pImp->EntryExpanded( pParent );
pHdlEntry = pParent;
ExpandedHdl();
@@ -2537,7 +2537,7 @@ sal_Bool SvTreeListBox::Collapse( SvTreeListEntry* pParent )
{
bCollapsed = sal_True;
pImp->CollapsingEntry( pParent );
SvListView::Collapse( pParent );
CollapseListEntry( pParent );
pImp->EntryCollapsed( pParent );
pHdlEntry = pParent;
ExpandedHdl();
@@ -2556,7 +2556,7 @@ sal_Bool SvTreeListBox::Select( SvTreeListEntry* pEntry, sal_Bool bSelect )
{
DBG_CHKTHIS(SvTreeListBox,0);
DBG_ASSERT(pEntry,"Select: Null-Ptr");
sal_Bool bRetVal = SvListView::Select( pEntry, bSelect );
sal_Bool bRetVal = SelectListEntry( pEntry, bSelect );
DBG_ASSERT(IsSelected(pEntry)==bSelect,"Select failed");
if( bRetVal )
{
@@ -2819,9 +2819,9 @@ void SvTreeListBox::EditItemText( SvTreeListEntry* pEntry, SvLBoxString* pItem,
if( IsSelected( pEntry ))
{
pImp->ShowCursor( false );
SvListView::Select( pEntry, sal_False );
SelectListEntry( pEntry, sal_False );
PaintEntry( pEntry );
SvListView::Select( pEntry, sal_True );
SelectListEntry( pEntry, sal_True );
pImp->ShowCursor( true );
}
pEdEntry = pEntry;

View File

@@ -98,9 +98,6 @@ class SwContentTree : public SvTreeListBox
using SvTreeListBox::ExecuteDrop;
using SvTreeListBox::EditEntry;
using SvListView::Expand;
using SvListView::Collapse;
using SvListView::Select;
protected:
virtual void RequestHelp( const HelpEvent& rHEvt );