use wxArrayString instead of wxStringList
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57890 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -99,19 +99,18 @@ public:
|
|||||||
|
|
||||||
// implementation, for wxChoiceCallback
|
// implementation, for wxChoiceCallback
|
||||||
const wxWidgetArray& GetWidgets() const { return m_widgetArray; }
|
const wxWidgetArray& GetWidgets() const { return m_widgetArray; }
|
||||||
const wxStringList& GetStrings() const { return m_stringList; }
|
const wxArrayString& GetStrings() const { return m_stringArray; }
|
||||||
protected:
|
protected:
|
||||||
// minimum size for the text ctrl
|
// minimum size for the text ctrl
|
||||||
wxSize GetItemsSize() const;
|
wxSize GetItemsSize() const;
|
||||||
// common part of all contructors
|
// common part of all contructors
|
||||||
void Init();
|
void Init();
|
||||||
|
|
||||||
unsigned int m_noStrings;
|
|
||||||
WXWidget m_menuWidget;
|
WXWidget m_menuWidget;
|
||||||
WXWidget m_buttonWidget;
|
WXWidget m_buttonWidget;
|
||||||
wxWidgetArray m_widgetArray;
|
wxWidgetArray m_widgetArray;
|
||||||
WXWidget m_formWidget;
|
WXWidget m_formWidget;
|
||||||
wxStringList m_stringList;
|
wxArrayString m_stringArray;
|
||||||
|
|
||||||
virtual void DoSetSize(int x, int y,
|
virtual void DoSetSize(int x, int y,
|
||||||
int width, int height,
|
int width, int height,
|
||||||
|
@@ -50,7 +50,6 @@ wxChoice::wxChoice()
|
|||||||
|
|
||||||
void wxChoice::Init()
|
void wxChoice::Init()
|
||||||
{
|
{
|
||||||
m_noStrings = 0;
|
|
||||||
m_buttonWidget = (WXWidget) 0;
|
m_buttonWidget = (WXWidget) 0;
|
||||||
m_menuWidget = (WXWidget) 0;
|
m_menuWidget = (WXWidget) 0;
|
||||||
m_formWidget = (WXWidget) 0;
|
m_formWidget = (WXWidget) 0;
|
||||||
@@ -221,7 +220,7 @@ int wxChoice::DoInsertItems(const wxArrayStringsAdapter& items,
|
|||||||
(XtCallbackProc) wxChoiceCallback,
|
(XtCallbackProc) wxChoiceCallback,
|
||||||
(XtPointer) this);
|
(XtPointer) this);
|
||||||
|
|
||||||
if (m_noStrings == 0 && m_buttonWidget)
|
if (m_stringArray.GetCount() == 0 && m_buttonWidget)
|
||||||
{
|
{
|
||||||
XtVaSetValues ((Widget) m_buttonWidget, XmNmenuHistory, w, NULL);
|
XtVaSetValues ((Widget) m_buttonWidget, XmNmenuHistory, w, NULL);
|
||||||
Widget label = XmOptionButtonGadget ((Widget) m_buttonWidget);
|
Widget label = XmOptionButtonGadget ((Widget) m_buttonWidget);
|
||||||
@@ -230,9 +229,8 @@ int wxChoice::DoInsertItems(const wxArrayStringsAdapter& items,
|
|||||||
XmNlabelString, text(),
|
XmNlabelString, text(),
|
||||||
NULL);
|
NULL);
|
||||||
}
|
}
|
||||||
// need to ditch wxStringList for wxArrayString
|
|
||||||
m_stringList.Insert(pos, MYcopystring(items[i]));
|
m_stringArray.Insert(items[i], pos);
|
||||||
m_noStrings ++;
|
|
||||||
|
|
||||||
InsertNewItemClientData(pos, clientData, i, type);
|
InsertNewItemClientData(pos, clientData, i, type);
|
||||||
}
|
}
|
||||||
@@ -245,19 +243,20 @@ void wxChoice::DoDeleteOneItem(unsigned int n)
|
|||||||
Widget w = (Widget)m_widgetArray[n];
|
Widget w = (Widget)m_widgetArray[n];
|
||||||
XtRemoveCallback(w, XmNactivateCallback, (XtCallbackProc)wxChoiceCallback,
|
XtRemoveCallback(w, XmNactivateCallback, (XtCallbackProc)wxChoiceCallback,
|
||||||
(XtPointer)this);
|
(XtPointer)this);
|
||||||
m_stringList.Erase(m_stringList.Item(n));
|
|
||||||
|
m_stringArray.RemoveAt(size_t(n));
|
||||||
m_widgetArray.RemoveAt(size_t(n));
|
m_widgetArray.RemoveAt(size_t(n));
|
||||||
wxChoiceBase::DoDeleteOneItem(n);
|
wxChoiceBase::DoDeleteOneItem(n);
|
||||||
|
|
||||||
XtDestroyWidget(w);
|
XtDestroyWidget(w);
|
||||||
m_noStrings--;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxChoice::DoClear()
|
void wxChoice::DoClear()
|
||||||
{
|
{
|
||||||
m_stringList.Clear ();
|
m_stringArray.Clear();
|
||||||
|
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
for (i = 0; i < m_noStrings; i++)
|
for (i = 0; i < m_stringArray.GetCount(); i++)
|
||||||
{
|
{
|
||||||
XtRemoveCallback((Widget) m_widgetArray[i],
|
XtRemoveCallback((Widget) m_widgetArray[i],
|
||||||
XmNactivateCallback, (XtCallbackProc)wxChoiceCallback,
|
XmNactivateCallback, (XtCallbackProc)wxChoiceCallback,
|
||||||
@@ -265,6 +264,7 @@ void wxChoice::DoClear()
|
|||||||
XtUnmanageChild ((Widget) m_widgetArray[i]);
|
XtUnmanageChild ((Widget) m_widgetArray[i]);
|
||||||
XtDestroyWidget ((Widget) m_widgetArray[i]);
|
XtDestroyWidget ((Widget) m_widgetArray[i]);
|
||||||
}
|
}
|
||||||
|
|
||||||
m_widgetArray.Clear();
|
m_widgetArray.Clear();
|
||||||
if (m_buttonWidget)
|
if (m_buttonWidget)
|
||||||
XtVaSetValues ((Widget) m_buttonWidget,
|
XtVaSetValues ((Widget) m_buttonWidget,
|
||||||
@@ -272,8 +272,6 @@ void wxChoice::DoClear()
|
|||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
wxChoiceBase::DoClear();
|
wxChoiceBase::DoClear();
|
||||||
|
|
||||||
m_noStrings = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxChoice::GetSelection() const
|
int wxChoice::GetSelection() const
|
||||||
@@ -288,34 +286,24 @@ int wxChoice::GetSelection() const
|
|||||||
|
|
||||||
if (!s.empty())
|
if (!s.empty())
|
||||||
{
|
{
|
||||||
int i = 0;
|
for (size_t i=0; i<m_stringArray.GetCount(); i++)
|
||||||
for (wxStringList::compatibility_iterator node = m_stringList.GetFirst ();
|
if (m_stringArray[i] == s)
|
||||||
node; node = node->GetNext ())
|
|
||||||
{
|
|
||||||
if (wxStrcmp(node->GetData(), s.c_str()) == 0)
|
|
||||||
{
|
|
||||||
return i;
|
return i;
|
||||||
}
|
|
||||||
else
|
|
||||||
i++;
|
|
||||||
} // for()
|
|
||||||
|
|
||||||
return -1;
|
return wxNOT_FOUND;
|
||||||
}
|
}
|
||||||
return -1;
|
|
||||||
|
return wxNOT_FOUND;
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxChoice::SetSelection(int n)
|
void wxChoice::SetSelection(int n)
|
||||||
{
|
{
|
||||||
m_inSetValue = true;
|
m_inSetValue = true;
|
||||||
|
|
||||||
wxStringList::compatibility_iterator node = m_stringList.Item(n);
|
|
||||||
if (node)
|
|
||||||
{
|
|
||||||
#if 0
|
#if 0
|
||||||
Dimension selectionWidth, selectionHeight;
|
Dimension selectionWidth, selectionHeight;
|
||||||
#endif
|
#endif
|
||||||
wxXmString text( node->GetData() );
|
wxXmString text( m_stringArray[n] );
|
||||||
// MBN: this seems silly, at best, and causes wxChoices to be clipped:
|
// MBN: this seems silly, at best, and causes wxChoices to be clipped:
|
||||||
// will remove "soon"
|
// will remove "soon"
|
||||||
#if 0
|
#if 0
|
||||||
@@ -333,17 +321,13 @@ void wxChoice::SetSelection(int n)
|
|||||||
XmNwidth, selectionWidth, XmNheight, selectionHeight,
|
XmNwidth, selectionWidth, XmNheight, selectionHeight,
|
||||||
XmNmenuHistory, (Widget) m_widgetArray[n], NULL);
|
XmNmenuHistory, (Widget) m_widgetArray[n], NULL);
|
||||||
#endif
|
#endif
|
||||||
}
|
|
||||||
m_inSetValue = false;
|
m_inSetValue = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
wxString wxChoice::GetString(unsigned int n) const
|
wxString wxChoice::GetString(unsigned int n) const
|
||||||
{
|
{
|
||||||
wxStringList::compatibility_iterator node = m_stringList.Item(n);
|
return m_stringArray[n];
|
||||||
if (node)
|
|
||||||
return node->GetData();
|
|
||||||
else
|
|
||||||
return wxEmptyString;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxChoice::SetColumns(int n)
|
void wxChoice::SetColumns(int n)
|
||||||
@@ -385,7 +369,7 @@ void wxChoice::DoSetSize(int x, int y, int width, int height, int sizeFlags)
|
|||||||
if (width > -1)
|
if (width > -1)
|
||||||
{
|
{
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
for (i = 0; i < m_noStrings; i++)
|
for (i = 0; i < m_stringArray.GetCount(); i++)
|
||||||
XtVaSetValues ((Widget) m_widgetArray[i],
|
XtVaSetValues ((Widget) m_widgetArray[i],
|
||||||
XmNwidth, actualWidth,
|
XmNwidth, actualWidth,
|
||||||
NULL);
|
NULL);
|
||||||
@@ -396,7 +380,7 @@ void wxChoice::DoSetSize(int x, int y, int width, int height, int sizeFlags)
|
|||||||
{
|
{
|
||||||
#if 0
|
#if 0
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
for (i = 0; i < m_noStrings; i++)
|
for (i = 0; i < m_stringArray.GetCount(); i++)
|
||||||
XtVaSetValues ((Widget) m_widgetArray[i],
|
XtVaSetValues ((Widget) m_widgetArray[i],
|
||||||
XmNheight, actualHeight,
|
XmNheight, actualHeight,
|
||||||
NULL);
|
NULL);
|
||||||
@@ -432,7 +416,7 @@ void wxChoiceCallback (Widget w, XtPointer clientData, XtPointer WXUNUSED(ptr))
|
|||||||
wxCommandEvent event(wxEVT_COMMAND_CHOICE_SELECTED, item->GetId());
|
wxCommandEvent event(wxEVT_COMMAND_CHOICE_SELECTED, item->GetId());
|
||||||
event.SetEventObject(item);
|
event.SetEventObject(item);
|
||||||
event.SetInt(n);
|
event.SetInt(n);
|
||||||
event.SetString( item->GetStrings().Item(n)->GetData() );
|
event.SetString( item->GetStrings().Item(n) );
|
||||||
if ( item->HasClientObjectData() )
|
if ( item->HasClientObjectData() )
|
||||||
event.SetClientObject( item->GetClientObject(n) );
|
event.SetClientObject( item->GetClientObject(n) );
|
||||||
else if ( item->HasClientUntypedData() )
|
else if ( item->HasClientUntypedData() )
|
||||||
@@ -462,7 +446,7 @@ void wxChoice::ChangeFont(bool keepOriginalSize)
|
|||||||
fontTag, m_font.GetFontTypeC(dpy),
|
fontTag, m_font.GetFontTypeC(dpy),
|
||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
for( unsigned int i = 0; i < m_noStrings; ++i )
|
for( unsigned int i = 0; i < m_stringArray.GetCount(); ++i )
|
||||||
XtVaSetValues( (Widget)m_widgetArray[i],
|
XtVaSetValues( (Widget)m_widgetArray[i],
|
||||||
fontTag, m_font.GetFontTypeC(dpy),
|
fontTag, m_font.GetFontTypeC(dpy),
|
||||||
NULL );
|
NULL );
|
||||||
@@ -481,7 +465,7 @@ void wxChoice::ChangeBackgroundColour()
|
|||||||
wxDoChangeBackgroundColour(m_buttonWidget, m_backgroundColour);
|
wxDoChangeBackgroundColour(m_buttonWidget, m_backgroundColour);
|
||||||
wxDoChangeBackgroundColour(m_menuWidget, m_backgroundColour);
|
wxDoChangeBackgroundColour(m_menuWidget, m_backgroundColour);
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
for (i = 0; i < m_noStrings; i++)
|
for (i = 0; i < m_stringArray.GetCount(); i++)
|
||||||
wxDoChangeBackgroundColour(m_widgetArray[i], m_backgroundColour);
|
wxDoChangeBackgroundColour(m_widgetArray[i], m_backgroundColour);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -491,13 +475,13 @@ void wxChoice::ChangeForegroundColour()
|
|||||||
wxDoChangeForegroundColour(m_buttonWidget, m_foregroundColour);
|
wxDoChangeForegroundColour(m_buttonWidget, m_foregroundColour);
|
||||||
wxDoChangeForegroundColour(m_menuWidget, m_foregroundColour);
|
wxDoChangeForegroundColour(m_menuWidget, m_foregroundColour);
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
for (i = 0; i < m_noStrings; i++)
|
for (i = 0; i < m_stringArray.GetCount(); i++)
|
||||||
wxDoChangeForegroundColour(m_widgetArray[i], m_foregroundColour);
|
wxDoChangeForegroundColour(m_widgetArray[i], m_foregroundColour);
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int wxChoice::GetCount() const
|
unsigned int wxChoice::GetCount() const
|
||||||
{
|
{
|
||||||
return m_noStrings;
|
return m_stringArray.GetCount();
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxChoice::SetString(unsigned int WXUNUSED(n), const wxString& WXUNUSED(s))
|
void wxChoice::SetString(unsigned int WXUNUSED(n), const wxString& WXUNUSED(s))
|
||||||
@@ -512,13 +496,11 @@ wxSize wxChoice::GetItemsSize() const
|
|||||||
// get my
|
// get my
|
||||||
GetTextExtent( "|", &x, &my );
|
GetTextExtent( "|", &x, &my );
|
||||||
|
|
||||||
wxStringList::compatibility_iterator curr = m_stringList.GetFirst();
|
for (size_t i=0; i<m_stringArray.GetCount(); i++)
|
||||||
while( curr )
|
|
||||||
{
|
{
|
||||||
GetTextExtent( curr->GetData(), &x, &y );
|
GetTextExtent( m_stringArray[i], &x, &y );
|
||||||
mx = wxMax( mx, x );
|
mx = wxMax( mx, x );
|
||||||
my = wxMax( my, y );
|
my = wxMax( my, y );
|
||||||
curr = curr->GetNext();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return wxSize( mx, my );
|
return wxSize( mx, my );
|
||||||
|
@@ -177,12 +177,7 @@ int wxComboBox::DoInsertItems(const wxArrayStringsAdapter& items,
|
|||||||
void wxComboBox::DoDeleteOneItem(unsigned int n)
|
void wxComboBox::DoDeleteOneItem(unsigned int n)
|
||||||
{
|
{
|
||||||
XmComboBoxDeletePos((Widget) m_mainWidget, n+1);
|
XmComboBoxDeletePos((Widget) m_mainWidget, n+1);
|
||||||
wxStringList::Node *node = m_stringList.Item(n);
|
m_stringArray.RemoveAt(n);
|
||||||
if (node)
|
|
||||||
{
|
|
||||||
delete[] node->GetData();
|
|
||||||
delete node;
|
|
||||||
}
|
|
||||||
wxControlWithItems::DoDeleteOneItem(n);
|
wxControlWithItems::DoDeleteOneItem(n);
|
||||||
m_noStrings--;
|
m_noStrings--;
|
||||||
}
|
}
|
||||||
@@ -212,11 +207,7 @@ int wxComboBox::GetSelection (void) const
|
|||||||
|
|
||||||
wxString wxComboBox::GetString(unsigned int n) const
|
wxString wxComboBox::GetString(unsigned int n) const
|
||||||
{
|
{
|
||||||
wxStringList::Node *node = m_stringList.Item(n);
|
return m_stringArray[n];
|
||||||
if (node)
|
|
||||||
return wxString(node->GetData ());
|
|
||||||
else
|
|
||||||
return wxEmptyString;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxComboBox::FindString(const wxString& s, bool WXUNUSED(bCase)) const
|
int wxComboBox::FindString(const wxString& s, bool WXUNUSED(bCase)) const
|
||||||
|
@@ -203,7 +203,7 @@ int wxComboBox::DoInsertItems(const wxArrayStringsAdapter & items,
|
|||||||
wxXmString str( items[i].c_str() );
|
wxXmString str( items[i].c_str() );
|
||||||
XmComboBoxAddItem((Widget) m_mainWidget, str(),
|
XmComboBoxAddItem((Widget) m_mainWidget, str(),
|
||||||
GetMotifPosition(pos), False);
|
GetMotifPosition(pos), False);
|
||||||
m_noStrings ++;
|
|
||||||
InsertNewItemClientData(pos, clientData, i, type);
|
InsertNewItemClientData(pos, clientData, i, type);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -221,7 +221,7 @@ void wxComboBox::DoDeleteOneItem(unsigned int n)
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
wxControlWithItems::DoDeleteOneItem(n);
|
wxControlWithItems::DoDeleteOneItem(n);
|
||||||
m_noStrings--;
|
m_stringArray.RemoveAt(size_t(n));
|
||||||
|
|
||||||
AdjustDropDownListSize();
|
AdjustDropDownListSize();
|
||||||
}
|
}
|
||||||
@@ -231,13 +231,14 @@ void wxComboBox::Clear()
|
|||||||
#ifdef LESSTIF_VERSION
|
#ifdef LESSTIF_VERSION
|
||||||
XmListDeleteAllItems (GetXmList(this));
|
XmListDeleteAllItems (GetXmList(this));
|
||||||
#else
|
#else
|
||||||
while(m_noStrings > 0)
|
size_t n = m_stringArray.GetCount();
|
||||||
|
while(n > 0)
|
||||||
{
|
{
|
||||||
XmComboBoxDeletePos((Widget) m_mainWidget, m_noStrings--);
|
XmComboBoxDeletePos((Widget) m_mainWidget, n--);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
m_noStrings = 0;
|
m_stringArray.Clear();
|
||||||
AdjustDropDownListSize();
|
AdjustDropDownListSize();
|
||||||
|
|
||||||
wxTextEntry::Clear();
|
wxTextEntry::Clear();
|
||||||
|
Reference in New Issue
Block a user