1998-05-20 14:12:05 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: listbox.h
|
|
|
|
// Purpose: wxListBox class
|
|
|
|
// Author: Julian Smart
|
|
|
|
// Modified by:
|
|
|
|
// Created: 01/02/97
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Julian Smart and Markus Holzem
|
|
|
|
// Licence: wxWindows license
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __LISTBOXH__
|
|
|
|
#define __LISTBOXH__
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface "listbox.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/control.h"
|
|
|
|
|
|
|
|
WXDLLEXPORT_DATA(extern const char*) wxListBoxNameStr;
|
|
|
|
WXDLLEXPORT_DATA(extern const char*) wxListBoxNameStr;
|
|
|
|
|
|
|
|
#if USE_OWNER_DRAWN
|
|
|
|
class WXDLLEXPORT wxOwnerDrawn;
|
|
|
|
|
|
|
|
// define the array of list box items
|
|
|
|
#include <wx/dynarray.h>
|
|
|
|
WX_DEFINE_ARRAY(wxOwnerDrawn *, wxListBoxItemsArray);
|
|
|
|
#endif
|
|
|
|
|
1998-06-22 21:54:19 +00:00
|
|
|
// forward decl for GetSelections()
|
|
|
|
class wxArrayInt;
|
|
|
|
|
1998-05-20 14:12:05 +00:00
|
|
|
WXDLLEXPORT_DATA(extern const char*) wxEmptyString;
|
|
|
|
|
|
|
|
// List box item
|
|
|
|
class WXDLLEXPORT wxListBox: public wxControl
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxListBox)
|
|
|
|
public:
|
|
|
|
|
|
|
|
wxListBox(void);
|
1998-07-04 15:17:59 +00:00
|
|
|
inline wxListBox(wxWindow *parent, wxWindowID id,
|
1998-05-20 14:12:05 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
1998-07-04 15:17:59 +00:00
|
|
|
int n = 0, const wxString choices[] = NULL,
|
|
|
|
long style = 0,
|
1998-05-20 14:12:05 +00:00
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxListBoxNameStr)
|
|
|
|
{
|
|
|
|
Create(parent, id, pos, size, n, choices, style, validator, name);
|
|
|
|
}
|
|
|
|
|
1998-07-04 15:17:59 +00:00
|
|
|
bool Create(wxWindow *parent, wxWindowID id,
|
1998-05-20 14:12:05 +00:00
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
1998-07-04 15:17:59 +00:00
|
|
|
int n = 0, const wxString choices[] = NULL,
|
|
|
|
long style = 0,
|
1998-05-20 14:12:05 +00:00
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxListBoxNameStr);
|
|
|
|
|
|
|
|
~wxListBox();
|
|
|
|
|
1998-07-04 15:17:59 +00:00
|
|
|
bool MSWCommand(WXUINT param, WXWORD id);
|
1998-05-20 14:12:05 +00:00
|
|
|
|
|
|
|
#if USE_OWNER_DRAWN
|
|
|
|
bool MSWOnMeasure(WXMEASUREITEMSTRUCT *item);
|
|
|
|
bool MSWOnDraw(WXDRAWITEMSTRUCT *item);
|
|
|
|
|
|
|
|
// plug-in for derived classes
|
|
|
|
virtual wxOwnerDrawn *CreateItem(uint n);
|
|
|
|
|
|
|
|
// allows to get the item and use SetXXX functions to set it's appearance
|
|
|
|
wxOwnerDrawn *GetItem(uint n) const { return m_aItems[n]; }
|
|
|
|
#endif
|
|
|
|
|
|
|
|
virtual void Append(const wxString& item);
|
|
|
|
virtual void Append(const wxString& item, char *clientData);
|
1998-07-04 15:17:59 +00:00
|
|
|
virtual void Set(int n, const wxString* choices, char **clientData = NULL);
|
1998-05-20 14:12:05 +00:00
|
|
|
virtual int FindString(const wxString& s) const ;
|
|
|
|
virtual void Clear(void);
|
1998-07-04 15:17:59 +00:00
|
|
|
virtual void SetSelection(int n, bool select = TRUE);
|
1998-05-20 14:12:05 +00:00
|
|
|
|
1998-07-04 15:17:59 +00:00
|
|
|
virtual void Deselect(int n);
|
1998-05-20 14:12:05 +00:00
|
|
|
|
|
|
|
// For single choice list item only
|
1998-06-22 21:54:19 +00:00
|
|
|
virtual int GetSelection() const ;
|
1998-07-04 15:17:59 +00:00
|
|
|
virtual void Delete(int n);
|
|
|
|
virtual char *GetClientData(int n) const ;
|
|
|
|
virtual void SetClientData(int n, char *clientData);
|
|
|
|
virtual void SetString(int n, const wxString& s);
|
1998-05-20 14:12:05 +00:00
|
|
|
|
|
|
|
// For single or multiple choice list item
|
1998-06-22 21:54:19 +00:00
|
|
|
virtual int GetSelections(wxArrayInt& aSelections) const;
|
1998-07-04 15:17:59 +00:00
|
|
|
virtual bool Selected(int n) const ;
|
|
|
|
virtual wxString GetString(int n) const ;
|
|
|
|
virtual void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
|
1998-05-20 14:12:05 +00:00
|
|
|
|
|
|
|
// Set the specified item at the first visible item
|
|
|
|
// or scroll to max range.
|
1998-07-04 15:17:59 +00:00
|
|
|
virtual void SetFirstItem(int n) ;
|
1998-05-20 14:12:05 +00:00
|
|
|
virtual void SetFirstItem(const wxString& s) ;
|
|
|
|
|
1998-07-04 15:17:59 +00:00
|
|
|
virtual void InsertItems(int nItems, const wxString items[], int pos);
|
1998-05-20 14:12:05 +00:00
|
|
|
|
|
|
|
virtual wxString GetStringSelection(void) const ;
|
1998-07-04 15:17:59 +00:00
|
|
|
virtual bool SetStringSelection(const wxString& s, bool flag = TRUE);
|
1998-05-20 14:12:05 +00:00
|
|
|
virtual int Number(void) const ;
|
|
|
|
|
|
|
|
void Command(wxCommandEvent& event);
|
|
|
|
|
|
|
|
// Windows-specific code to set the horizontal extent of
|
|
|
|
// the listbox, if necessary. If s is non-NULL, it's
|
|
|
|
// used to calculate the horizontal extent.
|
|
|
|
// Otherwise, all strings are used.
|
|
|
|
virtual void SetHorizontalExtent(const wxString& s = wxEmptyString);
|
|
|
|
|
1998-07-04 15:17:59 +00:00
|
|
|
virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
|
1998-05-20 14:12:05 +00:00
|
|
|
WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
|
|
|
|
|
|
|
|
virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
|
|
|
|
virtual void SetupColours(void);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
int m_noItems;
|
|
|
|
int m_selected;
|
|
|
|
|
|
|
|
#if USE_OWNER_DRAWN
|
|
|
|
// control items
|
|
|
|
wxListBoxItemsArray m_aItems;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// __LISTBOXH__
|