1999-10-22 18:00:39 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/ctrlsub.h (read: "wxConTRoL with SUBitems")
|
|
|
|
// Purpose: wxControlWithItems interface
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 22.10.99
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) wxWindows team
|
2003-03-17 10:34:04 +00:00
|
|
|
// Licence: wxWindows licence
|
1999-10-22 18:00:39 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_CTRLSUB_H_BASE_
|
|
|
|
#define _WX_CTRLSUB_H_BASE_
|
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
1999-10-22 18:00:39 +00:00
|
|
|
#pragma interface "controlwithitems.h"
|
|
|
|
#endif
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
#if wxUSE_CONTROLS
|
|
|
|
|
1999-10-22 18:00:39 +00:00
|
|
|
#include "wx/control.h" // base class
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2001-06-26 20:59:19 +00:00
|
|
|
// wxItemContainer defines an interface which is implemented by all controls
|
1999-10-22 18:00:39 +00:00
|
|
|
// which have string subitems each of which may be selected.
|
|
|
|
//
|
2001-06-26 20:59:19 +00:00
|
|
|
// Examples: wxListBox, wxCheckListBox, wxChoice and wxComboBox (which
|
|
|
|
// implements an extended interface deriving from this one)
|
1999-10-22 18:00:39 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
class WXDLLEXPORT wxItemContainer
|
1999-10-22 18:00:39 +00:00
|
|
|
{
|
|
|
|
public:
|
2004-01-15 13:49:22 +00:00
|
|
|
wxItemContainer() { m_clientDataItemsType = wxClientData_None; }
|
2002-01-07 21:52:28 +00:00
|
|
|
virtual ~wxItemContainer();
|
1999-10-22 18:00:39 +00:00
|
|
|
|
|
|
|
// adding items
|
|
|
|
// ------------
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
int Append(const wxString& item)
|
|
|
|
{ return DoAppend(item); }
|
|
|
|
int Append(const wxString& item, void *clientData)
|
|
|
|
{ int n = DoAppend(item); SetClientData(n, clientData); return n; }
|
|
|
|
int Append(const wxString& item, wxClientData *clientData)
|
|
|
|
{ int n = DoAppend(item); SetClientObject(n, clientData); return n; }
|
1999-10-22 18:00:39 +00:00
|
|
|
|
2003-08-18 09:57:02 +00:00
|
|
|
// only for rtti needs (separate name)
|
|
|
|
void AppendString( const wxString& item)
|
|
|
|
{ Append( item ) ; }
|
|
|
|
|
2002-01-20 15:20:57 +00:00
|
|
|
// append several items at once to the control
|
|
|
|
void Append(const wxArrayString& strings);
|
|
|
|
|
2003-05-09 12:58:28 +00:00
|
|
|
int Insert(const wxString& item, int pos)
|
|
|
|
{ return DoInsert(item, pos); }
|
|
|
|
int Insert(const wxString& item, int pos, void *clientData);
|
|
|
|
int Insert(const wxString& item, int pos, wxClientData *clientData);
|
|
|
|
|
1999-10-22 18:00:39 +00:00
|
|
|
// deleting items
|
|
|
|
// --------------
|
|
|
|
|
|
|
|
virtual void Clear() = 0;
|
|
|
|
virtual void Delete(int n) = 0;
|
|
|
|
|
|
|
|
// accessing strings
|
|
|
|
// -----------------
|
|
|
|
|
|
|
|
virtual int GetCount() const = 0;
|
2003-01-01 22:09:41 +00:00
|
|
|
bool IsEmpty() const { return GetCount() == 0; }
|
|
|
|
|
1999-10-22 18:00:39 +00:00
|
|
|
virtual wxString GetString(int n) const = 0;
|
2003-08-18 09:57:02 +00:00
|
|
|
wxArrayString GetStrings() const;
|
1999-10-22 18:00:39 +00:00
|
|
|
virtual void SetString(int n, const wxString& s) = 0;
|
|
|
|
virtual int FindString(const wxString& s) const = 0;
|
|
|
|
|
|
|
|
// selection
|
|
|
|
// ---------
|
|
|
|
|
|
|
|
virtual void Select(int n) = 0;
|
|
|
|
virtual int GetSelection() const = 0;
|
|
|
|
|
|
|
|
wxString GetStringSelection() const;
|
|
|
|
|
|
|
|
// misc
|
|
|
|
// ----
|
|
|
|
|
|
|
|
// client data stuff
|
|
|
|
void SetClientData(int n, void* clientData);
|
|
|
|
void* GetClientData(int n) const;
|
|
|
|
|
|
|
|
void SetClientObject(int n, wxClientData* clientData);
|
|
|
|
wxClientData* GetClientObject(int n) const;
|
|
|
|
|
|
|
|
bool HasClientObjectData() const
|
2001-06-26 20:59:19 +00:00
|
|
|
{ return m_clientDataItemsType == wxClientData_Object; }
|
1999-10-22 18:00:39 +00:00
|
|
|
bool HasClientUntypedData() const
|
2001-06-26 20:59:19 +00:00
|
|
|
{ return m_clientDataItemsType == wxClientData_Void; }
|
1999-10-22 18:00:39 +00:00
|
|
|
|
2001-07-02 09:38:35 +00:00
|
|
|
#if WXWIN_COMPATIBILITY_2_2
|
1999-10-22 18:00:39 +00:00
|
|
|
// compatibility - these functions are deprecated, use the new ones
|
|
|
|
// instead
|
|
|
|
int Number() const { return GetCount(); }
|
2001-07-02 09:38:35 +00:00
|
|
|
#endif // WXWIN_COMPATIBILITY_2_2
|
2001-06-26 20:59:19 +00:00
|
|
|
|
1999-10-22 18:00:39 +00:00
|
|
|
protected:
|
|
|
|
virtual int DoAppend(const wxString& item) = 0;
|
2003-05-09 12:58:28 +00:00
|
|
|
virtual int DoInsert(const wxString& item, int pos) = 0;
|
1999-10-22 18:00:39 +00:00
|
|
|
|
|
|
|
virtual void DoSetItemClientData(int n, void* clientData) = 0;
|
|
|
|
virtual void* DoGetItemClientData(int n) const = 0;
|
|
|
|
virtual void DoSetItemClientObject(int n, wxClientData* clientData) = 0;
|
|
|
|
virtual wxClientData* DoGetItemClientObject(int n) const = 0;
|
|
|
|
|
|
|
|
// the type of the client data for the items
|
|
|
|
wxClientDataType m_clientDataItemsType;
|
|
|
|
};
|
|
|
|
|
2003-09-20 18:34:57 +00:00
|
|
|
// this macro must (unfortunately) be used in any class deriving from both
|
|
|
|
// wxItemContainer and wxControl because otherwise there is ambiguity when
|
|
|
|
// calling GetClientXXX() functions -- the compiler can't choose between the
|
|
|
|
// two versions
|
|
|
|
#define wxCONTROL_ITEMCONTAINER_CLIENTDATAOBJECT_RECAST \
|
|
|
|
void SetClientData(void *data) \
|
|
|
|
{ wxControl::SetClientData(data); } \
|
|
|
|
void *GetClientData() const \
|
|
|
|
{ return wxControl::GetClientData(); } \
|
|
|
|
void SetClientObject(wxClientData *data) \
|
|
|
|
{ wxControl::SetClientObject(data); } \
|
|
|
|
wxClientData *GetClientObject() const \
|
|
|
|
{ return wxControl::GetClientObject(); } \
|
|
|
|
void SetClientData(int n, void* clientData) \
|
|
|
|
{ wxItemContainer::SetClientData(n, clientData); } \
|
|
|
|
void* GetClientData(int n) const \
|
|
|
|
{ return wxItemContainer::GetClientData(n); } \
|
|
|
|
void SetClientObject(int n, wxClientData* clientData) \
|
|
|
|
{ wxItemContainer::SetClientObject(n, clientData); } \
|
|
|
|
wxClientData* GetClientObject(int n) const \
|
|
|
|
{ return wxItemContainer::GetClientObject(n); }
|
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
class WXDLLEXPORT wxControlWithItems : public wxControl, public wxItemContainer
|
|
|
|
{
|
|
|
|
public:
|
2004-01-15 13:49:22 +00:00
|
|
|
wxControlWithItems() { }
|
2002-05-11 17:14:46 +00:00
|
|
|
virtual ~wxControlWithItems();
|
2003-09-20 18:34:57 +00:00
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
// we have to redefine these functions here to avoid ambiguities in classes
|
|
|
|
// deriving from us which would arise otherwise because both base classses
|
|
|
|
// have the methods with the same names - hopefully, a smart compiler can
|
|
|
|
// optimize away these simple inline wrappers so we don't suffer much from
|
|
|
|
// this
|
2003-09-20 18:34:57 +00:00
|
|
|
wxCONTROL_ITEMCONTAINER_CLIENTDATAOBJECT_RECAST
|
2003-07-22 00:24:07 +00:00
|
|
|
|
2003-10-16 10:00:12 +00:00
|
|
|
// usually the controls like list/combo boxes have their own background
|
|
|
|
// colour
|
|
|
|
virtual bool ShouldInheritColours() const { return false; }
|
|
|
|
|
2004-05-03 12:40:29 +00:00
|
|
|
protected:
|
|
|
|
// we can't compute our best size before the items are added to the control
|
|
|
|
// which is done after calling SetInitialBestSize() (it is called from the
|
|
|
|
// base class ctor and the items are added in the derived class ctor), so
|
|
|
|
// don't do anything at all here as our size will be changed later anyhow
|
|
|
|
//
|
|
|
|
// of course, all derived classes *must* call SetBestSize() from their
|
|
|
|
// ctors for this to work!
|
|
|
|
virtual void SetInitialBestSize(const wxSize& WXUNUSED(size)) { }
|
|
|
|
|
2003-07-22 00:24:07 +00:00
|
|
|
private:
|
2003-07-22 09:01:02 +00:00
|
|
|
DECLARE_NO_COPY_CLASS(wxControlWithItems)
|
2001-06-26 20:59:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // wxUSE_CONTROLS
|
1999-10-22 18:00:39 +00:00
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
#endif // _WX_CTRLSUB_H_BASE_
|
1999-10-22 18:00:39 +00:00
|
|
|
|