Refactored wxListBox code so that it correctly implements
wxControlWithItems, and removed some duplicated code. Implemented wxCheckListBox using the same technique as wxGTK. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16335 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
73c7ae5aff
commit
ef41d80cdf
@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
#include "wx/listbox.h"
|
#include "wx/listbox.h"
|
||||||
|
|
||||||
class wxCheckListBox : public wxListBox
|
class wxCheckListBox : public wxCheckListBoxBase
|
||||||
{
|
{
|
||||||
DECLARE_DYNAMIC_CLASS(wxCheckListBox)
|
DECLARE_DYNAMIC_CLASS(wxCheckListBox)
|
||||||
|
|
||||||
@ -35,10 +35,28 @@ public:
|
|||||||
const wxValidator& validator = wxDefaultValidator,
|
const wxValidator& validator = wxDefaultValidator,
|
||||||
const wxString& name = wxListBoxNameStr);
|
const wxString& name = wxListBoxNameStr);
|
||||||
|
|
||||||
|
bool Create(wxWindow *parent, wxWindowID id,
|
||||||
|
const wxPoint& pos = wxDefaultPosition,
|
||||||
|
const wxSize& size = wxDefaultSize,
|
||||||
|
int n = 0, const wxString choices[] = NULL,
|
||||||
|
long style = 0,
|
||||||
|
const wxValidator& validator = wxDefaultValidator,
|
||||||
|
const wxString& name = wxListBoxNameStr);
|
||||||
|
|
||||||
// items may be checked
|
// items may be checked
|
||||||
bool IsChecked(size_t uiIndex) const;
|
bool IsChecked(size_t uiIndex) const;
|
||||||
void Check(size_t uiIndex, bool bCheck = TRUE);
|
void Check(size_t uiIndex, bool bCheck = TRUE);
|
||||||
|
|
||||||
|
// override base class functions
|
||||||
|
virtual int DoAppend(const wxString& item);
|
||||||
|
virtual int FindString(const wxString& s) const;
|
||||||
|
virtual void SetString(int n, const wxString& s);
|
||||||
|
virtual wxString GetString(int n) const;
|
||||||
|
|
||||||
|
virtual void DoInsertItems(const wxArrayString& items, int pos);
|
||||||
|
virtual void DoSetItems(const wxArrayString& items, void **clientData);
|
||||||
|
private:
|
||||||
|
void DoToggleItem( int item, int x );
|
||||||
private:
|
private:
|
||||||
DECLARE_EVENT_TABLE()
|
DECLARE_EVENT_TABLE()
|
||||||
};
|
};
|
||||||
|
@ -39,7 +39,7 @@ public:
|
|||||||
long style = 0,
|
long style = 0,
|
||||||
const wxValidator& validator = wxDefaultValidator,
|
const wxValidator& validator = wxDefaultValidator,
|
||||||
const wxString& name = wxListBoxNameStr):
|
const wxString& name = wxListBoxNameStr):
|
||||||
m_clientDataList(wxKEY_INTEGER)
|
m_clientDataList(wxKEY_INTEGER)
|
||||||
{
|
{
|
||||||
Create(parent, id, pos, size, n, choices, style, validator, name);
|
Create(parent, id, pos, size, n, choices, style, validator, name);
|
||||||
}
|
}
|
||||||
@ -54,57 +54,29 @@ public:
|
|||||||
|
|
||||||
~wxListBox();
|
~wxListBox();
|
||||||
|
|
||||||
// Virtual functions required by wxControlWithItems.
|
// implementation of wxControlWithItems
|
||||||
// They are not all implemented yet :-(
|
|
||||||
virtual int GetCount() const;
|
virtual int GetCount() const;
|
||||||
virtual int DoAppend(const wxString& item);
|
virtual int DoAppend(const wxString& item);
|
||||||
|
virtual void DoSetItemClientData(int n, void* clientData); //
|
||||||
|
virtual void* DoGetItemClientData(int n) const; //
|
||||||
|
virtual void DoSetItemClientObject(int n, wxClientData* clientData); //
|
||||||
|
virtual wxClientData* DoGetItemClientObject(int n) const; //
|
||||||
|
virtual int GetSelection() const;
|
||||||
|
virtual void Delete(int n);
|
||||||
|
virtual int FindString(const wxString& s) const;
|
||||||
|
virtual void Clear();
|
||||||
|
virtual void SetString(int n, const wxString& s);
|
||||||
|
virtual wxString GetString(int n) const;
|
||||||
|
|
||||||
|
// implementation of wxListBoxbase
|
||||||
|
virtual void SetSelection(int n, bool select = TRUE);
|
||||||
virtual void DoInsertItems(const wxArrayString& items, int pos);
|
virtual void DoInsertItems(const wxArrayString& items, int pos);
|
||||||
virtual void DoSetItems(const wxArrayString& items, void **clientData);
|
virtual void DoSetItems(const wxArrayString& items, void **clientData);
|
||||||
virtual void DoSetFirstItem(int n);
|
virtual void DoSetFirstItem(int n);
|
||||||
virtual void DoSetItemClientData(int n, void* clientData);
|
virtual int GetSelections(wxArrayInt& aSelections) const;
|
||||||
virtual void* DoGetItemClientData(int n) const;
|
virtual bool IsSelected(int n) const;
|
||||||
virtual void DoSetItemClientObject(int n, wxClientData* clientData);
|
|
||||||
virtual wxClientData* DoGetItemClientObject(int n) const;
|
|
||||||
virtual void Select(int n);
|
|
||||||
|
|
||||||
virtual void Append(const wxString& item);
|
|
||||||
virtual void Append(const wxString& item, void *clientData);
|
|
||||||
virtual void Set(int n, const wxString* choices, void **clientData = NULL);
|
|
||||||
void Set(const wxArrayString& items, void **clientData = NULL)
|
|
||||||
{ DoSetItems(items, clientData); }
|
|
||||||
virtual int FindString(const wxString& s) const ;
|
|
||||||
virtual void Clear();
|
|
||||||
virtual void SetSelection(int n, bool select = TRUE);
|
|
||||||
|
|
||||||
virtual void Deselect(int n);
|
|
||||||
|
|
||||||
// For single choice list item only
|
|
||||||
virtual int GetSelection() const ;
|
|
||||||
virtual void Delete(int n);
|
|
||||||
virtual void *GetClientData(int n) const ;
|
|
||||||
virtual void *GetClientData() { return wxWindow::GetClientData(); }
|
|
||||||
virtual void SetClientData(int n, void *clientData);
|
|
||||||
virtual void SetClientData( void *data ) { wxWindow::SetClientData(data); }
|
|
||||||
virtual void SetString(int n, const wxString& s);
|
|
||||||
|
|
||||||
// For single or multiple choice list item
|
// For single or multiple choice list item
|
||||||
virtual int GetSelections(wxArrayInt& aSelections) const;
|
|
||||||
virtual bool IsSelected(int n) const ;
|
|
||||||
virtual wxString GetString(int n) const ;
|
|
||||||
|
|
||||||
// Set the specified item at the first visible item
|
|
||||||
// or scroll to max range.
|
|
||||||
virtual void SetFirstItem(int n) ;
|
|
||||||
virtual void SetFirstItem(const wxString& s) ;
|
|
||||||
|
|
||||||
virtual void InsertItems(int nItems, const wxString items[], int pos);
|
|
||||||
void InsertItems(const wxArrayString& items, int pos)
|
|
||||||
{ DoInsertItems(items, pos); }
|
|
||||||
|
|
||||||
virtual wxString GetStringSelection() const ;
|
|
||||||
virtual bool SetStringSelection(const wxString& s, bool flag = TRUE);
|
|
||||||
virtual int Number() const ;
|
|
||||||
|
|
||||||
void Command(wxCommandEvent& event);
|
void Command(wxCommandEvent& event);
|
||||||
|
|
||||||
// Implementation
|
// Implementation
|
||||||
@ -113,9 +85,11 @@ public:
|
|||||||
virtual void ChangeForegroundColour();
|
virtual void ChangeForegroundColour();
|
||||||
WXWidget GetTopWidget() const;
|
WXWidget GetTopWidget() const;
|
||||||
|
|
||||||
|
#if wxUSE_CHECKLISTBOX
|
||||||
|
virtual void DoToggleItem(int item, int x) {};
|
||||||
|
#endif
|
||||||
protected:
|
protected:
|
||||||
int m_noItems;
|
int m_noItems;
|
||||||
int m_selected;
|
|
||||||
|
|
||||||
// List mapping positions->client data
|
// List mapping positions->client data
|
||||||
wxList m_clientDataList;
|
wxList m_clientDataList;
|
||||||
|
@ -39,8 +39,36 @@ END_EVENT_TABLE()
|
|||||||
// control creation
|
// control creation
|
||||||
// ----------------
|
// ----------------
|
||||||
|
|
||||||
|
static const wxString prefixChecked = "[x] ";
|
||||||
|
static const wxString prefixUnchecked = "[ ] ";
|
||||||
|
static const char checkChar = 'x', uncheckChar = ' ';
|
||||||
|
|
||||||
|
static inline const wxString& Prefix(bool checked)
|
||||||
|
{ return checked ? prefixChecked : prefixUnchecked; }
|
||||||
|
static inline bool IsChecked(const wxString& s)
|
||||||
|
{ wxASSERT(s.length() >=4); return s[1] == checkChar; }
|
||||||
|
|
||||||
|
static void CopyStringsAddingPrefix(const wxArrayString& orig,
|
||||||
|
wxArrayString& copy)
|
||||||
|
{
|
||||||
|
copy.Clear();
|
||||||
|
|
||||||
|
for(size_t i = 0; i < orig.GetCount(); ++i )
|
||||||
|
copy[i] = Prefix(FALSE) + orig[i];
|
||||||
|
}
|
||||||
|
|
||||||
|
static wxString* CopyStringsAddingPrefix(size_t n, const wxString choices[])
|
||||||
|
{
|
||||||
|
wxString* copy = new wxString[n];
|
||||||
|
|
||||||
|
for(size_t i = 0; i < n; ++i )
|
||||||
|
copy[i].Add( Prefix(FALSE) + choices[i] );
|
||||||
|
|
||||||
|
return copy;
|
||||||
|
}
|
||||||
|
|
||||||
// def ctor: use Create() to really create the control
|
// def ctor: use Create() to really create the control
|
||||||
wxCheckListBox::wxCheckListBox() : wxListBox()
|
wxCheckListBox::wxCheckListBox() : wxCheckListBoxBase()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -50,25 +78,104 @@ wxCheckListBox::wxCheckListBox(wxWindow *parent, wxWindowID id,
|
|||||||
int nStrings, const wxString choices[],
|
int nStrings, const wxString choices[],
|
||||||
long style, const wxValidator& val,
|
long style, const wxValidator& val,
|
||||||
const wxString& name)
|
const wxString& name)
|
||||||
: wxListBox()
|
: wxCheckListBoxBase()
|
||||||
{
|
{
|
||||||
// TODO: you'll probably need a separate Create instead of using
|
Create(parent, id, pos, size, nStrings, choices,
|
||||||
// the wxListBox one as here.
|
style, val, name);
|
||||||
Create(parent, id, pos, size, nStrings, choices, style|wxLB_OWNERDRAW, val, name);
|
}
|
||||||
|
|
||||||
|
bool wxCheckListBox::Create(wxWindow *parent, wxWindowID id,
|
||||||
|
const wxPoint& pos = wxDefaultPosition,
|
||||||
|
const wxSize& size = wxDefaultSize,
|
||||||
|
int n = 0, const wxString choices[] = NULL,
|
||||||
|
long style = 0,
|
||||||
|
const wxValidator& validator = wxDefaultValidator,
|
||||||
|
const wxString& name)
|
||||||
|
{
|
||||||
|
wxString* chs = CopyStringsAddingPrefix(n, choices);
|
||||||
|
bool retVal = wxListBox::Create(parent, id, pos, size, n, chs,
|
||||||
|
style, validator, name);
|
||||||
|
delete[] chs;
|
||||||
|
return retVal;
|
||||||
}
|
}
|
||||||
|
|
||||||
// check items
|
// check items
|
||||||
// -----------
|
// -----------
|
||||||
|
|
||||||
bool wxCheckListBox::IsChecked(size_t WXUNUSED(uiIndex)) const
|
bool wxCheckListBox::IsChecked(size_t uiIndex) const
|
||||||
{
|
{
|
||||||
// TODO
|
return ::IsChecked(wxListBox::GetString(uiIndex));
|
||||||
return FALSE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxCheckListBox::Check(size_t WXUNUSED(uiIndex), bool WXUNUSED(bCheck))
|
void wxCheckListBox::Check(size_t uiIndex, bool bCheck)
|
||||||
{
|
{
|
||||||
// TODO
|
wxString label = wxListBox::GetString(uiIndex);
|
||||||
|
if(::IsChecked(label) == bCheck) return;
|
||||||
|
label[1u] = bCheck ? checkChar : uncheckChar;
|
||||||
|
wxListBox::SetString(uiIndex, label);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void wxCheckListBox::DoToggleItem( int n, int x )
|
||||||
|
{
|
||||||
|
if( x < 23 )
|
||||||
|
{
|
||||||
|
wxString label = wxListBox::GetString(n);
|
||||||
|
label[1u] = (!::IsChecked(label)) ? checkChar : uncheckChar;
|
||||||
|
wxListBox::SetString(n, label);
|
||||||
|
|
||||||
|
wxCommandEvent event(wxEVT_COMMAND_CHECKLISTBOX_TOGGLED, GetId());
|
||||||
|
if( HasClientObjectData() )
|
||||||
|
event.SetClientObject( GetClientObject(n) );
|
||||||
|
else if( HasClientUntypedData() )
|
||||||
|
event.SetClientData( GetClientData(n) );
|
||||||
|
event.m_commandInt = n;
|
||||||
|
event.m_extraLong = TRUE;
|
||||||
|
event.SetEventObject(this);
|
||||||
|
event.SetString( GetString( n ) );
|
||||||
|
|
||||||
|
GetEventHandler()->ProcessEvent(event);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int wxCheckListBox::DoAppend(const wxString& item)
|
||||||
|
{
|
||||||
|
return wxListBox::DoAppend( Prefix(FALSE) + item );
|
||||||
|
}
|
||||||
|
|
||||||
|
int wxCheckListBox::FindString(const wxString& s) const
|
||||||
|
{
|
||||||
|
int n1 = wxListBox::FindString(Prefix(FALSE) + s);
|
||||||
|
int n2 = wxListBox::FindString(Prefix(TRUE) + s);
|
||||||
|
int min = wxMin(n1, n2), max = wxMax(n1, n2);
|
||||||
|
|
||||||
|
// why this works:
|
||||||
|
// n1 == -1, n2 == -1 => return -1 OK
|
||||||
|
// n1 != -1 || n2 != -1 => min == -1 => return the other one
|
||||||
|
// both != -1 => return the first one.
|
||||||
|
if( min == -1 ) return max;
|
||||||
|
return min;
|
||||||
|
}
|
||||||
|
|
||||||
|
void wxCheckListBox::SetString(int n, const wxString& s)
|
||||||
|
{
|
||||||
|
wxListBox::SetString( n, Prefix(IsChecked(n)) + s );
|
||||||
|
}
|
||||||
|
|
||||||
|
wxString wxCheckListBox::GetString(int n) const
|
||||||
|
{
|
||||||
|
return wxListBox::GetString(n).substr(4);
|
||||||
|
}
|
||||||
|
|
||||||
|
void wxCheckListBox::DoInsertItems(const wxArrayString& items, int pos)
|
||||||
|
{
|
||||||
|
wxArrayString copy;
|
||||||
|
CopyStringsAddingPrefix(items, copy);
|
||||||
|
wxListBox::DoInsertItems(copy, pos);
|
||||||
|
}
|
||||||
|
|
||||||
|
void wxCheckListBox::DoSetItems(const wxArrayString& items, void **clientData)
|
||||||
|
{
|
||||||
|
wxArrayString copy;
|
||||||
|
CopyStringsAddingPrefix(items, copy);
|
||||||
|
wxListBox::DoSetItems(copy, clientData);
|
||||||
|
}
|
||||||
|
@ -39,10 +39,6 @@ static void wxListBoxCallback(Widget w,
|
|||||||
XtPointer clientData,
|
XtPointer clientData,
|
||||||
XmListCallbackStruct * cbs);
|
XmListCallbackStruct * cbs);
|
||||||
|
|
||||||
static void wxListBoxDefaultActionProc(Widget list_w,
|
|
||||||
XtPointer client_data,
|
|
||||||
XmListCallbackStruct * cbs);
|
|
||||||
|
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
// list box control implementation
|
// list box control implementation
|
||||||
// ============================================================================
|
// ============================================================================
|
||||||
@ -51,7 +47,6 @@ static void wxListBoxDefaultActionProc(Widget list_w,
|
|||||||
wxListBox::wxListBox() : m_clientDataList(wxKEY_INTEGER)
|
wxListBox::wxListBox() : m_clientDataList(wxKEY_INTEGER)
|
||||||
{
|
{
|
||||||
m_noItems = 0;
|
m_noItems = 0;
|
||||||
m_selected = 0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
bool wxListBox::Create(wxWindow *parent, wxWindowID id,
|
bool wxListBox::Create(wxWindow *parent, wxWindowID id,
|
||||||
@ -64,7 +59,6 @@ bool wxListBox::Create(wxWindow *parent, wxWindowID id,
|
|||||||
{
|
{
|
||||||
m_windowStyle = style;
|
m_windowStyle = style;
|
||||||
m_noItems = n;
|
m_noItems = n;
|
||||||
m_selected = 0;
|
|
||||||
// m_backgroundColour = parent->GetBackgroundColour();
|
// m_backgroundColour = parent->GetBackgroundColour();
|
||||||
m_backgroundColour = * wxWHITE;
|
m_backgroundColour = * wxWHITE;
|
||||||
m_foregroundColour = parent->GetForegroundColour();
|
m_foregroundColour = parent->GetForegroundColour();
|
||||||
@ -95,7 +89,8 @@ bool wxListBox::Create(wxWindow *parent, wxWindowID id,
|
|||||||
else
|
else
|
||||||
count = 2;
|
count = 2;
|
||||||
|
|
||||||
Widget listWidget = XmCreateScrolledList (parentWidget, (char*) (const char*) name, args, count);
|
Widget listWidget = XmCreateScrolledList(parentWidget,
|
||||||
|
(char*)name.c_str(), args, count);
|
||||||
|
|
||||||
m_mainWidget = (WXWidget) listWidget;
|
m_mainWidget = (WXWidget) listWidget;
|
||||||
|
|
||||||
@ -110,21 +105,29 @@ bool wxListBox::Create(wxWindow *parent, wxWindowID id,
|
|||||||
if (height == -1)
|
if (height == -1)
|
||||||
height = 80;
|
height = 80;
|
||||||
|
|
||||||
XtAddCallback (listWidget, XmNbrowseSelectionCallback, (XtCallbackProc) wxListBoxCallback,
|
XtAddCallback (listWidget,
|
||||||
(XtPointer) this);
|
XmNbrowseSelectionCallback,
|
||||||
XtAddCallback (listWidget, XmNextendedSelectionCallback, (XtCallbackProc) wxListBoxCallback,
|
(XtCallbackProc) wxListBoxCallback,
|
||||||
(XtPointer) this);
|
(XtPointer) this);
|
||||||
XtAddCallback (listWidget, XmNmultipleSelectionCallback, (XtCallbackProc) wxListBoxCallback,
|
XtAddCallback (listWidget,
|
||||||
(XtPointer) this);
|
XmNextendedSelectionCallback,
|
||||||
|
(XtCallbackProc) wxListBoxCallback,
|
||||||
XtAddCallback (listWidget, XmNdefaultActionCallback, (XtCallbackProc) wxListBoxDefaultActionProc,
|
(XtPointer) this);
|
||||||
(XtPointer) this);
|
XtAddCallback (listWidget,
|
||||||
|
XmNmultipleSelectionCallback,
|
||||||
|
(XtCallbackProc) wxListBoxCallback,
|
||||||
|
(XtPointer) this);
|
||||||
|
XtAddCallback (listWidget,
|
||||||
|
XmNdefaultActionCallback,
|
||||||
|
(XtCallbackProc) wxListBoxCallback,
|
||||||
|
(XtPointer) this);
|
||||||
|
|
||||||
m_font = parent->GetFont();
|
m_font = parent->GetFont();
|
||||||
ChangeFont(FALSE);
|
ChangeFont(FALSE);
|
||||||
|
|
||||||
SetCanAddEventHandler(TRUE);
|
SetCanAddEventHandler(TRUE);
|
||||||
AttachWidget (parent, m_mainWidget, (WXWidget) NULL, pos.x, pos.y, width, height);
|
AttachWidget (parent, m_mainWidget, (WXWidget) NULL,
|
||||||
|
pos.x, pos.y, width, height);
|
||||||
|
|
||||||
ChangeBackgroundColour();
|
ChangeBackgroundColour();
|
||||||
|
|
||||||
@ -135,7 +138,7 @@ wxListBox::~wxListBox()
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxListBox::SetFirstItem(int N)
|
void wxListBox::DoSetFirstItem( int N )
|
||||||
{
|
{
|
||||||
int count, length;
|
int count, length;
|
||||||
|
|
||||||
@ -150,14 +153,6 @@ void wxListBox::SetFirstItem(int N)
|
|||||||
XmListSetPos ((Widget) m_mainWidget, N + 1);
|
XmListSetPos ((Widget) m_mainWidget, N + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxListBox::SetFirstItem(const wxString& s)
|
|
||||||
{
|
|
||||||
int N = FindString (s);
|
|
||||||
|
|
||||||
if (N >= 0)
|
|
||||||
SetFirstItem (N);
|
|
||||||
}
|
|
||||||
|
|
||||||
void wxListBox::Delete(int N)
|
void wxListBox::Delete(int N)
|
||||||
{
|
{
|
||||||
int width1, height1;
|
int width1, height1;
|
||||||
@ -181,10 +176,13 @@ void wxListBox::Delete(int N)
|
|||||||
SetSize (-1, -1, width1, height1);
|
SetSize (-1, -1, width1, height1);
|
||||||
|
|
||||||
// (JDH) need to add code here to take care of clientDataList
|
// (JDH) need to add code here to take care of clientDataList
|
||||||
wxNode *node = m_clientDataList.Find((long)N); // get item from list
|
// get item from list
|
||||||
if (node) m_clientDataList.DeleteNode(node); // if existed then delete from list
|
wxNode *node = m_clientDataList.Find((long)N);
|
||||||
node = m_clientDataList.First(); // we now have to adjust all keys that
|
// if existed then delete from list
|
||||||
while (node) // are >=N+1
|
if (node) m_clientDataList.DeleteNode(node);
|
||||||
|
// we now have to adjust all keys that are >=N+1
|
||||||
|
node = m_clientDataList.First();
|
||||||
|
while (node)
|
||||||
{
|
{
|
||||||
if (node->GetKeyInteger() >= (long)(N+1))
|
if (node->GetKeyInteger() >= (long)(N+1))
|
||||||
node->SetKeyInteger(node->GetKeyInteger() - 1);
|
node->SetKeyInteger(node->GetKeyInteger() - 1);
|
||||||
@ -194,7 +192,7 @@ void wxListBox::Delete(int N)
|
|||||||
m_noItems --;
|
m_noItems --;
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxListBox::Append(const wxString& item)
|
int wxListBox::DoAppend(const wxString& item)
|
||||||
{
|
{
|
||||||
int width1, height1;
|
int width1, height1;
|
||||||
int width2, height2;
|
int width2, height2;
|
||||||
@ -233,55 +231,11 @@ void wxListBox::Append(const wxString& item)
|
|||||||
if (width1 != width2 || height1 != height2)
|
if (width1 != width2 || height1 != height2)
|
||||||
SetSize (-1, -1, width1, height1);
|
SetSize (-1, -1, width1, height1);
|
||||||
m_noItems ++;
|
m_noItems ++;
|
||||||
|
|
||||||
|
return GetCount() - 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxListBox::Append(const wxString& item, void *clientData)
|
void wxListBox::DoSetItems(const wxArrayString& items, void** clientData)
|
||||||
{
|
|
||||||
int width1, height1;
|
|
||||||
int width2, height2;
|
|
||||||
|
|
||||||
Widget listBox = (Widget) m_mainWidget;
|
|
||||||
|
|
||||||
GetSize (&width1, &height1);
|
|
||||||
Bool managed = XtIsManaged(listBox);
|
|
||||||
|
|
||||||
if (managed)
|
|
||||||
XtUnmanageChild (listBox);
|
|
||||||
|
|
||||||
int n;
|
|
||||||
XtVaGetValues (listBox, XmNitemCount, &n, NULL);
|
|
||||||
XmString text = XmStringCreateSimple ((char*) (const char*) item);
|
|
||||||
// XmListAddItem(listBox, text, n + 1);
|
|
||||||
XmListAddItemUnselected (listBox, text, 0);
|
|
||||||
XmStringFree (text);
|
|
||||||
|
|
||||||
// It seems that if the list is cleared, we must re-ask for
|
|
||||||
// selection policy!!
|
|
||||||
Arg args[3];
|
|
||||||
XtSetArg (args[0], XmNlistSizePolicy, XmCONSTANT);
|
|
||||||
if (m_windowStyle & wxLB_MULTIPLE)
|
|
||||||
XtSetArg (args[1], XmNselectionPolicy, XmMULTIPLE_SELECT);
|
|
||||||
else if (m_windowStyle & wxLB_EXTENDED)
|
|
||||||
XtSetArg (args[1], XmNselectionPolicy, XmEXTENDED_SELECT);
|
|
||||||
else
|
|
||||||
XtSetArg (args[1], XmNselectionPolicy, XmBROWSE_SELECT);
|
|
||||||
XtSetValues (listBox, args, 2);
|
|
||||||
|
|
||||||
m_clientDataList.Append ((long) n, (wxObject *) clientData);
|
|
||||||
|
|
||||||
if (managed)
|
|
||||||
XtManageChild (listBox);
|
|
||||||
|
|
||||||
GetSize (&width2, &height2);
|
|
||||||
|
|
||||||
// Correct for randomly resized listbox - bad boy, Motif!
|
|
||||||
if (width1 != width2 || height1 != height2)
|
|
||||||
SetSize (-1, -1, width1, height1);
|
|
||||||
|
|
||||||
m_noItems ++;
|
|
||||||
}
|
|
||||||
|
|
||||||
void wxListBox::Set(int n, const wxString *choices, void** clientData)
|
|
||||||
{
|
{
|
||||||
m_clientDataList.Clear();
|
m_clientDataList.Clear();
|
||||||
int width1, height1;
|
int width1, height1;
|
||||||
@ -294,49 +248,41 @@ void wxListBox::Set(int n, const wxString *choices, void** clientData)
|
|||||||
|
|
||||||
if (managed)
|
if (managed)
|
||||||
XtUnmanageChild (listBox);
|
XtUnmanageChild (listBox);
|
||||||
/***
|
XmString *text = new XmString[items.GetCount()];
|
||||||
for (int i=0; i<n; i++)
|
size_t i;
|
||||||
{
|
for (i = 0; i < items.GetCount(); ++i)
|
||||||
XmString text = XmStringCreateSimple(choices[i]);
|
text[i] = XmStringCreateSimple ((char*)items[i].c_str());
|
||||||
XmListAddItemUnselected(listBox, text, 0);
|
|
||||||
XmStringFree(text);
|
|
||||||
}
|
|
||||||
***/
|
|
||||||
XmString *text = new XmString[n];
|
|
||||||
int i;
|
|
||||||
for (i = 0; i < n; i++)
|
|
||||||
text[i] = XmStringCreateSimple ((char*) (const char*) choices[i]);
|
|
||||||
|
|
||||||
if ( clientData )
|
if ( clientData )
|
||||||
for (i = 0; i < n; i++)
|
for (i = 0; i < items.GetCount(); ++i)
|
||||||
m_clientDataList.Append ((long) i, (wxObject *) clientData[i]);
|
m_clientDataList.Append ((long) i, (wxObject *) clientData[i]);
|
||||||
|
|
||||||
XmListAddItems (listBox, text, n, 0);
|
XmListAddItems (listBox, text, items.GetCount(), 0);
|
||||||
for (i = 0; i < n; i++)
|
for (i = 0; i < items.GetCount(); i++)
|
||||||
XmStringFree (text[i]);
|
XmStringFree (text[i]);
|
||||||
delete[]text;
|
delete[] text;
|
||||||
|
|
||||||
// It seems that if the list is cleared, we must re-ask for
|
// It seems that if the list is cleared, we must re-ask for
|
||||||
// selection policy!!
|
// selection policy!!
|
||||||
Arg args[3];
|
Arg args[3];
|
||||||
XtSetArg (args[0], XmNlistSizePolicy, XmCONSTANT);
|
XtSetArg (args[0], XmNlistSizePolicy, XmCONSTANT);
|
||||||
if (m_windowStyle & wxLB_MULTIPLE)
|
if (m_windowStyle & wxLB_MULTIPLE)
|
||||||
XtSetArg (args[1], XmNselectionPolicy, XmMULTIPLE_SELECT);
|
XtSetArg (args[1], XmNselectionPolicy, XmMULTIPLE_SELECT);
|
||||||
else if (m_windowStyle & wxLB_EXTENDED)
|
else if (m_windowStyle & wxLB_EXTENDED)
|
||||||
XtSetArg (args[1], XmNselectionPolicy, XmEXTENDED_SELECT);
|
XtSetArg (args[1], XmNselectionPolicy, XmEXTENDED_SELECT);
|
||||||
else
|
else
|
||||||
XtSetArg (args[1], XmNselectionPolicy, XmBROWSE_SELECT);
|
XtSetArg (args[1], XmNselectionPolicy, XmBROWSE_SELECT);
|
||||||
XtSetValues (listBox, args, 2);
|
XtSetValues (listBox, args, 2);
|
||||||
|
|
||||||
if (managed)
|
if (managed)
|
||||||
XtManageChild (listBox);
|
XtManageChild (listBox);
|
||||||
|
|
||||||
GetSize (&width2, &height2);
|
GetSize (&width2, &height2);
|
||||||
// Correct for randomly resized listbox - bad boy, Motif!
|
// Correct for randomly resized listbox - bad boy, Motif!
|
||||||
if (width1 != width2 || height1 != height2)
|
if (width1 != width2 || height1 != height2)
|
||||||
SetSize (-1, -1, width1, height1);
|
SetSize (-1, -1, width1, height1);
|
||||||
|
|
||||||
m_noItems = n;
|
m_noItems = items.GetCount();
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxListBox::FindString(const wxString& s) const
|
int wxListBox::FindString(const wxString& s) const
|
||||||
@ -344,7 +290,8 @@ int wxListBox::FindString(const wxString& s) const
|
|||||||
XmString str = XmStringCreateSimple ((char*) (const char*) s);
|
XmString str = XmStringCreateSimple ((char*) (const char*) s);
|
||||||
int *positions = NULL;
|
int *positions = NULL;
|
||||||
int no_positions = 0;
|
int no_positions = 0;
|
||||||
bool success = XmListGetMatchPos ((Widget) m_mainWidget, str, &positions, &no_positions);
|
bool success = XmListGetMatchPos ((Widget) m_mainWidget, str,
|
||||||
|
&positions, &no_positions);
|
||||||
XmStringFree (str);
|
XmStringFree (str);
|
||||||
if (success)
|
if (success)
|
||||||
{
|
{
|
||||||
@ -390,18 +337,23 @@ void wxListBox::SetSelection(int N, bool select)
|
|||||||
int *selections = NULL;
|
int *selections = NULL;
|
||||||
int n = GetSelections (&selections);
|
int n = GetSelections (&selections);
|
||||||
|
|
||||||
// This hack is supposed to work, to make it possible to select more
|
// This hack is supposed to work, to make it possible
|
||||||
// than one item, but it DOESN'T under Motif 1.1.
|
// to select more than one item, but it DOESN'T under Motif 1.1.
|
||||||
|
|
||||||
XtVaSetValues ((Widget) m_mainWidget, XmNselectionPolicy, XmMULTIPLE_SELECT, NULL);
|
XtVaSetValues ((Widget) m_mainWidget,
|
||||||
|
XmNselectionPolicy, XmMULTIPLE_SELECT,
|
||||||
|
NULL);
|
||||||
|
|
||||||
int i;
|
int i;
|
||||||
for (i = 0; i < n; i++)
|
for (i = 0; i < n; i++)
|
||||||
XmListSelectPos ((Widget) m_mainWidget, selections[i] + 1, FALSE);
|
XmListSelectPos ((Widget) m_mainWidget,
|
||||||
|
selections[i] + 1, FALSE);
|
||||||
|
|
||||||
XmListSelectPos ((Widget) m_mainWidget, N + 1, FALSE);
|
XmListSelectPos ((Widget) m_mainWidget, N + 1, FALSE);
|
||||||
|
|
||||||
XtVaSetValues ((Widget) m_mainWidget, XmNselectionPolicy, XmEXTENDED_SELECT, NULL);
|
XtVaSetValues ((Widget) m_mainWidget,
|
||||||
|
XmNselectionPolicy, XmEXTENDED_SELECT,
|
||||||
|
NULL);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
#endif // 0
|
#endif // 0
|
||||||
@ -431,12 +383,17 @@ bool wxListBox::IsSelected(int N) const
|
|||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxListBox::Deselect(int N)
|
void wxListBox::DoSetItemClientObject(int n, wxClientData* clientData)
|
||||||
{
|
{
|
||||||
XmListDeselectPos ((Widget) m_mainWidget, N + 1);
|
DoSetItemClientData(n, (void*) clientData);
|
||||||
}
|
}
|
||||||
|
|
||||||
void *wxListBox::GetClientData(int N) const
|
wxClientData* wxListBox::DoGetItemClientObject(int n) const
|
||||||
|
{
|
||||||
|
return (wxClientData*) DoGetItemClientData(n);
|
||||||
|
}
|
||||||
|
|
||||||
|
void *wxListBox::DoGetItemClientData(int N) const
|
||||||
{
|
{
|
||||||
wxNode *node = m_clientDataList.Find ((long) N);
|
wxNode *node = m_clientDataList.Find ((long) N);
|
||||||
if (node)
|
if (node)
|
||||||
@ -445,7 +402,7 @@ void *wxListBox::GetClientData(int N) const
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxListBox::SetClientData(int N, void *Client_data)
|
void wxListBox::DoSetItemClientData(int N, void *Client_data)
|
||||||
{
|
{
|
||||||
wxNode *node = m_clientDataList.Find ((long) N);
|
wxNode *node = m_clientDataList.Find ((long) N);
|
||||||
if (node)
|
if (node)
|
||||||
@ -541,7 +498,7 @@ void wxListBox::DoSetSize(int x, int y, int width, int height, int sizeFlags)
|
|||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxListBox::InsertItems(int nItems, const wxString items[], int pos)
|
void wxListBox::DoInsertItems(const wxArrayString& items, int pos)
|
||||||
{
|
{
|
||||||
int width1, height1;
|
int width1, height1;
|
||||||
int width2, height2;
|
int width2, height2;
|
||||||
@ -555,26 +512,25 @@ void wxListBox::InsertItems(int nItems, const wxString items[], int pos)
|
|||||||
if (managed)
|
if (managed)
|
||||||
XtUnmanageChild(listBox);
|
XtUnmanageChild(listBox);
|
||||||
|
|
||||||
XmString *text = new XmString[nItems];
|
XmString *text = new XmString[items.GetCount()];
|
||||||
int i;
|
size_t i;
|
||||||
// Steve Hammes: Motif 1.1 compatibility
|
// Steve Hammes: Motif 1.1 compatibility
|
||||||
// #if XmVersion > 1100
|
// #if XmVersion > 1100
|
||||||
// Corrected by Sergey Krasnov from Steve Hammes' code
|
// Corrected by Sergey Krasnov from Steve Hammes' code
|
||||||
#if XmVersion > 1001
|
#if XmVersion > 1001
|
||||||
for (i = 0; i < nItems; i++)
|
for (i = 0; i < items.GetCount(); i++)
|
||||||
text[i] = XmStringCreateSimple((char*) (const char*) items[i]);
|
text[i] = XmStringCreateSimple((char*)items[i].c_str());
|
||||||
XmListAddItemsUnselected(listBox, text, nItems, pos+1);
|
XmListAddItemsUnselected(listBox, text, items.GetCount(), pos+1);
|
||||||
#else
|
#else
|
||||||
for (i = 0; i < nItems; i++)
|
for (i = 0; i < items.GetCount(); i++)
|
||||||
{
|
{
|
||||||
text[i] = XmStringCreateSimple((char*) (const char*) items[i]);
|
text[i] = XmStringCreateSimple((char*)items[i].c_str());
|
||||||
// XmListAddItemUnselected(listBox, text[i], i);
|
// Another Sergey correction
|
||||||
XmListAddItemUnselected(listBox, text[i], pos+i+1); // Another Sergey correction
|
XmListAddItemUnselected(listBox, text[i], pos+i+1);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
for (i = 0; i < nItems; i++)
|
for (i = 0; i < items.GetCount(); i++)
|
||||||
XmStringFree(text[i]);
|
XmStringFree(text[i]);
|
||||||
|
|
||||||
delete[] text;
|
delete[] text;
|
||||||
|
|
||||||
// It seems that if the list is cleared, we must re-ask for
|
// It seems that if the list is cleared, we must re-ask for
|
||||||
@ -596,7 +552,7 @@ void wxListBox::InsertItems(int nItems, const wxString items[], int pos)
|
|||||||
if (width1 != width2 /*|| height1 != height2*/)
|
if (width1 != width2 /*|| height1 != height2*/)
|
||||||
SetSize(-1, -1, width1, height1);
|
SetSize(-1, -1, width1, height1);
|
||||||
|
|
||||||
m_noItems += nItems;
|
m_noItems += items.GetCount();
|
||||||
}
|
}
|
||||||
|
|
||||||
void wxListBox::SetString(int N, const wxString& s)
|
void wxListBox::SetString(int N, const wxString& s)
|
||||||
@ -622,34 +578,6 @@ void wxListBox::SetString(int N, const wxString& s)
|
|||||||
SetSize (-1, -1, width1, height1);
|
SetSize (-1, -1, width1, height1);
|
||||||
}
|
}
|
||||||
|
|
||||||
int wxListBox::Number () const
|
|
||||||
{
|
|
||||||
return m_noItems;
|
|
||||||
}
|
|
||||||
|
|
||||||
// For single selection items only
|
|
||||||
wxString wxListBox::GetStringSelection () const
|
|
||||||
{
|
|
||||||
wxString res;
|
|
||||||
int sel = GetSelection();
|
|
||||||
if (sel > -1)
|
|
||||||
res = GetString(sel);
|
|
||||||
|
|
||||||
return res;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool wxListBox::SetStringSelection (const wxString& s, bool flag)
|
|
||||||
{
|
|
||||||
int sel = FindString (s);
|
|
||||||
if (sel > -1)
|
|
||||||
{
|
|
||||||
SetSelection (sel, flag);
|
|
||||||
return TRUE;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
return FALSE;
|
|
||||||
}
|
|
||||||
|
|
||||||
void wxListBox::Command (wxCommandEvent & event)
|
void wxListBox::Command (wxCommandEvent & event)
|
||||||
{
|
{
|
||||||
if (event.m_extraLong)
|
if (event.m_extraLong)
|
||||||
@ -665,76 +593,61 @@ void wxListBox::Command (wxCommandEvent & event)
|
|||||||
void wxListBoxCallback (Widget WXUNUSED(w), XtPointer clientData,
|
void wxListBoxCallback (Widget WXUNUSED(w), XtPointer clientData,
|
||||||
XmListCallbackStruct * cbs)
|
XmListCallbackStruct * cbs)
|
||||||
{
|
{
|
||||||
/*
|
|
||||||
if (cbs->reason == XmCR_EXTENDED_SELECT)
|
|
||||||
cout << "*** Extend select\n";
|
|
||||||
else if (cbs->reason == XmCR_SINGLE_SELECT)
|
|
||||||
cout << "*** Single select\n";
|
|
||||||
else if (cbs->reason == XmCR_MULTIPLE_SELECT)
|
|
||||||
cout << "*** Multiple select\n";
|
|
||||||
else if (cbs->reason == XmCR_BROWSE_SELECT)
|
|
||||||
cout << "*** Browse select\n";
|
|
||||||
|
|
||||||
if (cbs->selection_type == XmMODIFICATION)
|
|
||||||
cout << "*** Modification\n";
|
|
||||||
else if (cbs->selection_type == XmINITIAL)
|
|
||||||
cout << "*** Initial\n";
|
|
||||||
else if (cbs->selection_type == XmADDITION)
|
|
||||||
cout << "*** Addition\n";
|
|
||||||
*/
|
|
||||||
|
|
||||||
wxListBox *item = (wxListBox *) clientData;
|
wxListBox *item = (wxListBox *) clientData;
|
||||||
|
|
||||||
if (item->InSetValue())
|
if (item->InSetValue())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
wxCommandEvent event (wxEVT_COMMAND_LISTBOX_SELECTED, item->GetId());
|
wxEventType evtType;
|
||||||
|
|
||||||
|
if( cbs->reason == XmCR_DEFAULT_ACTION )
|
||||||
|
evtType = wxEVT_COMMAND_LISTBOX_DOUBLECLICKED;
|
||||||
|
else
|
||||||
|
evtType = wxEVT_COMMAND_LISTBOX_SELECTED;
|
||||||
|
|
||||||
|
int n = cbs->item_position - 1;
|
||||||
|
wxCommandEvent event (evtType, item->GetId());
|
||||||
|
if ( item->HasClientObjectData() )
|
||||||
|
event.SetClientObject( item->GetClientObject(n) );
|
||||||
|
else if ( item->HasClientUntypedData() )
|
||||||
|
event.SetClientData( item->GetClientData(n) );
|
||||||
|
event.m_commandInt = n;
|
||||||
|
event.m_extraLong = TRUE;
|
||||||
|
event.SetEventObject(item);
|
||||||
|
event.SetString( item->GetString( n ) );
|
||||||
|
|
||||||
|
int x = -1;
|
||||||
|
if( cbs->event->type == ButtonRelease )
|
||||||
|
{
|
||||||
|
XButtonEvent* evt = (XButtonEvent*)cbs->event;
|
||||||
|
|
||||||
|
x = evt->x;
|
||||||
|
}
|
||||||
|
|
||||||
switch (cbs->reason)
|
switch (cbs->reason)
|
||||||
{
|
{
|
||||||
case XmCR_MULTIPLE_SELECT:
|
case XmCR_MULTIPLE_SELECT:
|
||||||
case XmCR_BROWSE_SELECT:
|
case XmCR_BROWSE_SELECT:
|
||||||
{
|
#if wxUSE_CHECKLISTBOX
|
||||||
event.m_clientData = item->GetClientData (cbs->item_position - 1);
|
item->DoToggleItem( n, x );
|
||||||
event.m_commandInt = cbs->item_position - 1;
|
#endif
|
||||||
event.m_extraLong = TRUE;
|
case XmCR_DEFAULT_ACTION:
|
||||||
event.SetEventObject(item);
|
item->GetEventHandler()->ProcessEvent(event);
|
||||||
item->ProcessCommand (event);
|
break;
|
||||||
break;
|
|
||||||
}
|
|
||||||
case XmCR_EXTENDED_SELECT:
|
case XmCR_EXTENDED_SELECT:
|
||||||
|
switch (cbs->selection_type)
|
||||||
{
|
{
|
||||||
switch (cbs->selection_type)
|
case XmINITIAL:
|
||||||
{
|
case XmADDITION:
|
||||||
case XmINITIAL:
|
case XmMODIFICATION:
|
||||||
case XmADDITION:
|
item->DoToggleItem( n, x );
|
||||||
case XmMODIFICATION:
|
item->GetEventHandler()->ProcessEvent(event);
|
||||||
{
|
|
||||||
event.m_clientData = item->GetClientData (cbs->item_position - 1);
|
|
||||||
event.m_commandInt = cbs->item_position - 1;
|
|
||||||
event.m_extraLong = TRUE;
|
|
||||||
event.SetEventObject(item);
|
|
||||||
item->ProcessCommand (event);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Respond by getting the
|
|
||||||
* designated "default button" in the action area and activate it
|
|
||||||
* as if the user had selected it.
|
|
||||||
*/
|
|
||||||
void wxListBoxDefaultActionProc (Widget WXUNUSED(list_w), XtPointer client_data, XmListCallbackStruct * WXUNUSED(cbs))
|
|
||||||
{
|
|
||||||
wxListBox *lbox = (wxListBox *) client_data;
|
|
||||||
|
|
||||||
wxCommandEvent event(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED, lbox->GetId());
|
|
||||||
event.SetEventObject( lbox );
|
|
||||||
lbox->GetEventHandler()->ProcessEvent(event) ;
|
|
||||||
}
|
|
||||||
|
|
||||||
WXWidget wxListBox::GetTopWidget() const
|
WXWidget wxListBox::GetTopWidget() const
|
||||||
{
|
{
|
||||||
return (WXWidget) XtParent( (Widget) m_mainWidget );
|
return (WXWidget) XtParent( (Widget) m_mainWidget );
|
||||||
@ -795,71 +708,7 @@ void wxListBox::ChangeForegroundColour()
|
|||||||
*/
|
*/
|
||||||
}
|
}
|
||||||
|
|
||||||
// These implement functions needed by wxControlWithItems.
|
|
||||||
// Unfortunately, they're not all implemented yet.
|
|
||||||
|
|
||||||
int wxListBox::GetCount() const
|
int wxListBox::GetCount() const
|
||||||
{
|
{
|
||||||
return Number();
|
return m_noItems;
|
||||||
}
|
|
||||||
|
|
||||||
int wxListBox::DoAppend(const wxString& item)
|
|
||||||
{
|
|
||||||
Append(item, (void*) NULL);
|
|
||||||
return GetCount() - 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Just appends, doesn't yet insert
|
|
||||||
void wxListBox::DoInsertItems(const wxArrayString& items, int WXUNUSED(pos))
|
|
||||||
{
|
|
||||||
size_t nItems = items.GetCount();
|
|
||||||
|
|
||||||
for ( size_t n = 0; n < nItems; n++ )
|
|
||||||
{
|
|
||||||
Append( items[n], (void*) NULL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
void wxListBox::DoSetItems(const wxArrayString& items, void **clientData)
|
|
||||||
{
|
|
||||||
size_t nItems = items.GetCount();
|
|
||||||
wxString* strings = new wxString[nItems];
|
|
||||||
|
|
||||||
for ( size_t n = 0; n < nItems; n++ )
|
|
||||||
{
|
|
||||||
strings[n] = items[n];
|
|
||||||
}
|
|
||||||
Set(nItems, strings, clientData);
|
|
||||||
|
|
||||||
delete[] strings;
|
|
||||||
}
|
|
||||||
|
|
||||||
void wxListBox::DoSetFirstItem(int WXUNUSED(n))
|
|
||||||
{
|
|
||||||
wxFAIL_MSG( wxT("wxListBox::DoSetFirstItem not implemented") );
|
|
||||||
}
|
|
||||||
|
|
||||||
void wxListBox::DoSetItemClientData(int n, void* clientData)
|
|
||||||
{
|
|
||||||
SetClientData(n, clientData);
|
|
||||||
}
|
|
||||||
|
|
||||||
void* wxListBox::DoGetItemClientData(int n) const
|
|
||||||
{
|
|
||||||
return GetClientData(n);
|
|
||||||
}
|
|
||||||
|
|
||||||
void wxListBox::DoSetItemClientObject(int n, wxClientData* clientData)
|
|
||||||
{
|
|
||||||
DoSetItemClientData(n, (void*) clientData);
|
|
||||||
}
|
|
||||||
|
|
||||||
wxClientData* wxListBox::DoGetItemClientObject(int n) const
|
|
||||||
{
|
|
||||||
return (wxClientData*) DoGetItemClientData(n);
|
|
||||||
}
|
|
||||||
|
|
||||||
void wxListBox::Select(int n)
|
|
||||||
{
|
|
||||||
SetSelection(n, TRUE);
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user