wxUniversal STL-ification.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23562 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Mattia Barbon
2003-09-13 12:14:20 +00:00
parent 7218d34b0a
commit 18dbdd3c27
2 changed files with 59 additions and 20 deletions

View File

@@ -18,6 +18,7 @@
#include "wx/scrolwin.h" // for wxScrollHelper #include "wx/scrolwin.h" // for wxScrollHelper
#include "wx/dynarray.h" #include "wx/dynarray.h"
#include "wx/arrstr.h"
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
// the actions supported by this control // the actions supported by this control
@@ -85,11 +86,11 @@ public:
virtual void Clear(); virtual void Clear();
virtual void Delete(int n); virtual void Delete(int n);
virtual int GetCount() const { return (int)m_strings.GetCount(); } virtual int GetCount() const { return (int)m_strings->GetCount(); }
virtual wxString GetString(int n) const { return m_strings[n]; } virtual wxString GetString(int n) const { return (*m_strings)[n]; }
virtual void SetString(int n, const wxString& s); virtual void SetString(int n, const wxString& s);
virtual int FindString(const wxString& s) const virtual int FindString(const wxString& s) const
{ return m_strings.Index(s); } { return IsSorted() ? m_stringsSorted->Index(s) : m_strings->Index(s); }
virtual bool IsSelected(int n) const virtual bool IsSelected(int n) const
{ return m_selections.Index(n) != wxNOT_FOUND; } { return m_selections.Index(n) != wxNOT_FOUND; }
@@ -223,8 +224,14 @@ protected:
void UpdateItems(); void UpdateItems();
// the array containing all items (it is sorted if the listbox has // the array containing all items (it is sorted if the listbox has
// wxLB_SORT style) // wxLB_SORT style). Note the evil trick: the pointers share the
wxArrayString m_strings; // same location, hence we use m_strings when we don't care if the
// array is sorted or not, m_stringsSorted when we do
union
{
wxArrayString* m_strings;
wxSortedArrayString* m_stringsSorted;
};
// this array contains the indices of the selected items (for the single // this array contains the indices of the selected items (for the single
// selection listboxes only the first element of it is used and contains // selection listboxes only the first element of it is used and contains

View File

@@ -63,6 +63,7 @@ void wxListBox::Init()
m_maxWidth = 0; m_maxWidth = 0;
m_scrollRangeY = 0; m_scrollRangeY = 0;
m_maxWidthItem = -1; m_maxWidthItem = -1;
m_strings = NULL;
// no items hence no current item // no items hence no current item
m_current = -1; m_current = -1;
@@ -112,7 +113,9 @@ bool wxListBox::Create(wxWindow *parent,
SetWindow(this); SetWindow(this);
if ( style & wxLB_SORT ) if ( style & wxLB_SORT )
m_strings = wxArrayString(TRUE /* auto sort */); m_stringsSorted = new wxSortedArrayString;
else
m_strings = new wxArrayString;
Set(n, choices); Set(n, choices);
@@ -127,6 +130,13 @@ wxListBox::~wxListBox()
{ {
// call this just to free the client data -- and avoid leaking memory // call this just to free the client data -- and avoid leaking memory
DoClear(); DoClear();
if ( IsSorted() )
delete m_stringsSorted;
else
delete m_strings;
m_strings = NULL;
} }
// ---------------------------------------------------------------------------- // ----------------------------------------------------------------------------
@@ -135,7 +145,18 @@ wxListBox::~wxListBox()
int wxListBox::DoAppend(const wxString& item) int wxListBox::DoAppend(const wxString& item)
{ {
size_t index = m_strings.Add(item); size_t index;
if ( IsSorted() )
{
index = m_stringsSorted->Add(item);
}
else
{
index = m_strings->GetCount();
m_strings->Add(item);
}
m_itemsClientData.Insert(NULL, index); m_itemsClientData.Insert(NULL, index);
m_updateScrollbarY = TRUE; m_updateScrollbarY = TRUE;
@@ -167,7 +188,7 @@ void wxListBox::DoInsertItems(const wxArrayString& items, int pos)
size_t count = items.GetCount(); size_t count = items.GetCount();
for ( size_t n = 0; n < count; n++ ) for ( size_t n = 0; n < count; n++ )
{ {
m_strings.Insert(items[n], pos + n); m_strings->Insert(items[n], pos + n);
m_itemsClientData.Insert(NULL, pos + n); m_itemsClientData.Insert(NULL, pos + n);
} }
@@ -192,11 +213,22 @@ void wxListBox::DoSetItems(const wxArrayString& items, void **clientData)
if ( !count ) if ( !count )
return; return;
m_strings.Alloc(count); m_strings->Alloc(count);
m_itemsClientData.Alloc(count); m_itemsClientData.Alloc(count);
for ( size_t n = 0; n < count; n++ ) for ( size_t n = 0; n < count; n++ )
{ {
size_t index = m_strings.Add(items[n]); size_t index;
if ( IsSorted() )
{
index = m_stringsSorted->Add(items[n]);
}
else
{
index = m_strings->GetCount();
m_strings->Add(items[n]);
}
m_itemsClientData.Insert(clientData ? clientData[n] : NULL, index); m_itemsClientData.Insert(clientData ? clientData[n] : NULL, index);
} }
@@ -212,7 +244,7 @@ void wxListBox::SetString(int n, const wxString& s)
// we need to update m_maxWidth as changing the string may cause the // we need to update m_maxWidth as changing the string may cause the
// horz scrollbar [dis]appear // horz scrollbar [dis]appear
wxCoord width; wxCoord width;
m_strings[n] = s; (*m_strings)[n] = s;
GetTextExtent(s, &width, NULL); GetTextExtent(s, &width, NULL);
// it might have increased if the new string is long // it might have increased if the new string is long
@@ -230,7 +262,7 @@ void wxListBox::SetString(int n, const wxString& s)
} }
else // no horz scrollbar else // no horz scrollbar
{ {
m_strings[n] = s; (*m_strings)[n] = s;
} }
RefreshItem(n); RefreshItem(n);
@@ -242,7 +274,7 @@ void wxListBox::SetString(int n, const wxString& s)
void wxListBox::DoClear() void wxListBox::DoClear()
{ {
m_strings.Clear(); m_strings->Clear();
if ( HasClientObjectData() ) if ( HasClientObjectData() )
{ {
@@ -279,7 +311,7 @@ void wxListBox::Delete(int n)
// refreshed (as GetCount() will be decremented) // refreshed (as GetCount() will be decremented)
RefreshFromItemToEnd(n); RefreshFromItemToEnd(n);
m_strings.RemoveAt(n); m_strings->RemoveAt(n);
if ( HasClientObjectData() ) if ( HasClientObjectData() )
{ {
@@ -652,7 +684,7 @@ void wxListBox::DoDraw(wxControlRenderer *renderer)
wxCoord lineHeight = GetLineHeight(); wxCoord lineHeight = GetLineHeight();
size_t itemFirst = yTop / lineHeight, size_t itemFirst = yTop / lineHeight,
itemLast = (yBottom + lineHeight - 1) / lineHeight, itemLast = (yBottom + lineHeight - 1) / lineHeight,
itemMax = m_strings.GetCount(); itemMax = m_strings->GetCount();
if ( itemFirst >= itemMax ) if ( itemFirst >= itemMax )
return; return;
@@ -721,10 +753,10 @@ wxCoord wxListBox::GetMaxWidth() const
{ {
wxListBox *self = wxConstCast(this, wxListBox); wxListBox *self = wxConstCast(this, wxListBox);
wxCoord width; wxCoord width;
size_t count = m_strings.GetCount(); size_t count = m_strings->GetCount();
for ( size_t n = 0; n < count; n++ ) for ( size_t n = 0; n < count; n++ )
{ {
GetTextExtent(m_strings[n], &width, NULL); GetTextExtent((*m_strings)[n], &width, NULL);
if ( width > m_maxWidth ) if ( width > m_maxWidth )
{ {
self->m_maxWidth = width; self->m_maxWidth = width;
@@ -778,11 +810,11 @@ wxSize wxListBox::DoGetBestClientSize() const
wxCoord width = 0, wxCoord width = 0,
height = 0; height = 0;
size_t count = m_strings.GetCount(); size_t count = m_strings->GetCount();
for ( size_t n = 0; n < count; n++ ) for ( size_t n = 0; n < count; n++ )
{ {
wxCoord w,h; wxCoord w,h;
GetTextExtent(m_strings[n], &w, &h); GetTextExtent((*m_strings)[n], &w, &h);
if ( w > width ) if ( w > width )
width = w; width = w;
@@ -890,7 +922,7 @@ bool wxListBox::FindItem(const wxString& prefix, bool strictlyAfter)
// loop over all items in the listbox // loop over all items in the listbox
for ( int item = first; item != last; item < count - 1 ? item++ : item = 0 ) for ( int item = first; item != last; item < count - 1 ? item++ : item = 0 )
{ {
if ( wxStrnicmp(m_strings[item], prefix, len) == 0 ) if ( wxStrnicmp((*m_strings)[item], prefix, len) == 0 )
{ {
SetCurrentItem(item); SetCurrentItem(item);