1999-10-22 11:55:27 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/listbox.h
|
|
|
|
// Purpose: wxListBox class interface
|
|
|
|
// Author: Vadim Zeitlin
|
|
|
|
// Modified by:
|
|
|
|
// Created: 22.10.99
|
|
|
|
// RCS-ID: $Id$
|
2004-05-23 10:56:36 -04:00
|
|
|
// Copyright: (c) wxWidgets team
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1999-10-22 11:55:27 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
1998-08-14 20:23:28 -04:00
|
|
|
#ifndef _WX_LISTBOX_H_BASE_
|
|
|
|
#define _WX_LISTBOX_H_BASE_
|
1998-05-20 10:01:55 -04:00
|
|
|
|
1999-10-22 11:55:27 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// headers
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
#if wxUSE_LISTBOX
|
|
|
|
|
1999-10-22 14:00:39 -04:00
|
|
|
#include "wx/ctrlsub.h" // base class
|
1999-10-22 11:55:27 -04:00
|
|
|
|
|
|
|
// forward declarations are enough here
|
2007-07-09 06:09:52 -04:00
|
|
|
class WXDLLIMPEXP_FWD_BASE wxArrayInt;
|
|
|
|
class WXDLLIMPEXP_FWD_BASE wxArrayString;
|
1999-10-22 11:55:27 -04:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// global data
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2008-03-26 11:06:00 -04:00
|
|
|
extern WXDLLIMPEXP_DATA_CORE(const char) wxListBoxNameStr[];
|
1999-10-22 11:55:27 -04:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxListBox interface is defined by the class wxListBoxBase
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2008-03-26 11:06:00 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxListBoxBase : public wxControlWithItems
|
1999-10-22 11:55:27 -04:00
|
|
|
{
|
|
|
|
public:
|
2004-01-15 08:49:22 -05:00
|
|
|
wxListBoxBase() { }
|
2002-01-07 16:52:28 -05:00
|
|
|
virtual ~wxListBoxBase();
|
1999-10-22 11:55:27 -04:00
|
|
|
|
2007-07-26 09:54:14 -04:00
|
|
|
void InsertItems(unsigned int nItems, const wxString *items, unsigned int pos)
|
|
|
|
{ Insert(nItems, items, pos); }
|
2006-03-23 17:05:23 -05:00
|
|
|
void InsertItems(const wxArrayString& items, unsigned int pos)
|
2007-07-26 09:54:14 -04:00
|
|
|
{ Insert(items, pos); }
|
1999-10-22 11:55:27 -04:00
|
|
|
|
1999-10-22 14:00:39 -04:00
|
|
|
// multiple selection logic
|
1999-10-22 11:55:27 -04:00
|
|
|
virtual bool IsSelected(int n) const = 0;
|
2010-10-27 19:21:55 -04:00
|
|
|
virtual void SetSelection(int n);
|
2005-02-13 12:08:27 -05:00
|
|
|
void SetSelection(int n, bool select) { DoSetSelection(n, select); }
|
|
|
|
void Deselect(int n) { DoSetSelection(n, false); }
|
2001-06-26 16:59:19 -04:00
|
|
|
void DeselectAll(int itemToLeaveSelected = -1);
|
1999-10-22 11:55:27 -04:00
|
|
|
|
2005-02-13 12:08:27 -05:00
|
|
|
virtual bool SetStringSelection(const wxString& s, bool select);
|
|
|
|
virtual bool SetStringSelection(const wxString& s)
|
|
|
|
{
|
|
|
|
return SetStringSelection(s, true);
|
|
|
|
}
|
1999-10-22 11:55:27 -04:00
|
|
|
|
1999-10-22 14:00:39 -04:00
|
|
|
// works for single as well as multiple selection listboxes (unlike
|
|
|
|
// GetSelection which only works for listboxes with single selection)
|
|
|
|
virtual int GetSelections(wxArrayInt& aSelections) const = 0;
|
1999-10-22 11:55:27 -04:00
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
// set the specified item at the first visible item or scroll to max
|
1999-10-22 11:55:27 -04:00
|
|
|
// range.
|
|
|
|
void SetFirstItem(int n) { DoSetFirstItem(n); }
|
|
|
|
void SetFirstItem(const wxString& s);
|
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
// ensures that the given item is visible scrolling the listbox if
|
|
|
|
// necessary
|
|
|
|
virtual void EnsureVisible(int n);
|
|
|
|
|
|
|
|
// a combination of Append() and EnsureVisible(): appends the item to the
|
|
|
|
// listbox and ensures that it is visible i.e. not scrolled out of view
|
|
|
|
void AppendAndEnsureVisible(const wxString& s);
|
|
|
|
|
2004-09-17 13:57:44 -04:00
|
|
|
// return true if the listbox allows multiple selection
|
2001-06-26 16:59:19 -04:00
|
|
|
bool HasMultipleSelection() const
|
|
|
|
{
|
|
|
|
return (m_windowStyle & wxLB_MULTIPLE) ||
|
|
|
|
(m_windowStyle & wxLB_EXTENDED);
|
|
|
|
}
|
|
|
|
|
2007-07-26 09:54:14 -04:00
|
|
|
// override wxItemContainer::IsSorted
|
|
|
|
virtual bool IsSorted() const { return HasFlag( wxLB_SORT ); }
|
2001-06-26 16:59:19 -04:00
|
|
|
|
1999-10-22 14:00:39 -04:00
|
|
|
// emulate selecting or deselecting the item event.GetInt() (depending on
|
|
|
|
// event.GetExtraLong())
|
|
|
|
void Command(wxCommandEvent& event);
|
1999-10-22 11:55:27 -04:00
|
|
|
|
2009-01-25 13:10:24 -05:00
|
|
|
// return the index of the item at this position or wxNOT_FOUND
|
2006-04-14 14:17:16 -04:00
|
|
|
int HitTest(const wxPoint& point) const { return DoListHitTest(point); }
|
2009-01-25 13:10:24 -05:00
|
|
|
int HitTest(int x, int y) const { return DoListHitTest(wxPoint(x, y)); }
|
|
|
|
|
2006-04-14 14:17:16 -04:00
|
|
|
|
1999-10-22 11:55:27 -04:00
|
|
|
protected:
|
|
|
|
virtual void DoSetFirstItem(int n) = 0;
|
2003-07-21 20:24:07 -04:00
|
|
|
|
2005-02-13 12:08:27 -05:00
|
|
|
virtual void DoSetSelection(int n, bool select) = 0;
|
|
|
|
|
2006-03-09 07:48:52 -05:00
|
|
|
// there is already wxWindow::DoHitTest() so call this one differently
|
|
|
|
virtual int DoListHitTest(const wxPoint& WXUNUSED(point)) const
|
|
|
|
{ return wxNOT_FOUND; }
|
|
|
|
|
2010-10-27 19:21:55 -04:00
|
|
|
// Helper for the code generating events in single selection mode: updates
|
|
|
|
// m_oldSelections and return true if the selection really changed.
|
|
|
|
// Otherwise just returns false.
|
|
|
|
bool DoChangeSingleSelection(int item);
|
|
|
|
|
|
|
|
// Helper for generating events in multiple and extended mode: compare the
|
|
|
|
// current selections with the previously recorded ones (in
|
|
|
|
// m_oldSelections) and send the appropriate event if they differ,
|
|
|
|
// otherwise just return false.
|
|
|
|
bool CalcAndSendEvent();
|
|
|
|
|
2010-06-05 18:57:53 -04:00
|
|
|
// Send a listbox (de)selection or double click event.
|
|
|
|
//
|
|
|
|
// Returns true if the event was processed.
|
|
|
|
bool SendEvent(wxEventType evtType, int item, bool selected);
|
|
|
|
|
2010-06-05 18:58:13 -04:00
|
|
|
// Array storing the indices of all selected items that we already notified
|
|
|
|
// the user code about for multi selection list boxes.
|
|
|
|
//
|
2010-10-27 19:21:55 -04:00
|
|
|
// For single selection list boxes, we reuse this array to store the single
|
|
|
|
// currently selected item, this is used by DoChangeSingleSelection().
|
|
|
|
//
|
2010-06-05 18:58:13 -04:00
|
|
|
// TODO-OPT: wxSelectionStore would be more efficient for big list boxes.
|
|
|
|
wxArrayInt m_oldSelections;
|
|
|
|
|
|
|
|
// Update m_oldSelections with currently selected items (does nothing in
|
2010-08-25 11:02:30 -04:00
|
|
|
// single selection mode on platforms other than MSW).
|
2010-06-05 18:58:13 -04:00
|
|
|
void UpdateOldSelections();
|
|
|
|
|
2007-07-26 09:54:14 -04:00
|
|
|
private:
|
2009-02-08 06:45:59 -05:00
|
|
|
wxDECLARE_NO_COPY_CLASS(wxListBoxBase);
|
1999-10-22 11:55:27 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// include the platform-specific class declaration
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
#if defined(__WXUNIVERSAL__)
|
|
|
|
#include "wx/univ/listbox.h"
|
|
|
|
#elif defined(__WXMSW__)
|
1999-10-22 11:55:27 -04:00
|
|
|
#include "wx/msw/listbox.h"
|
1998-07-10 10:15:17 -04:00
|
|
|
#elif defined(__WXMOTIF__)
|
1999-10-22 11:55:27 -04:00
|
|
|
#include "wx/motif/listbox.h"
|
2006-01-22 22:27:34 -05:00
|
|
|
#elif defined(__WXGTK20__)
|
1999-10-22 11:55:27 -04:00
|
|
|
#include "wx/gtk/listbox.h"
|
2006-01-22 22:27:34 -05:00
|
|
|
#elif defined(__WXGTK__)
|
|
|
|
#include "wx/gtk1/listbox.h"
|
1998-08-14 20:23:28 -04:00
|
|
|
#elif defined(__WXMAC__)
|
2008-06-11 15:17:41 -04:00
|
|
|
#include "wx/osx/listbox.h"
|
1999-07-27 23:38:12 -04:00
|
|
|
#elif defined(__WXPM__)
|
1999-10-22 11:55:27 -04:00
|
|
|
#include "wx/os2/listbox.h"
|
2003-03-22 01:18:36 -05:00
|
|
|
#elif defined(__WXCOCOA__)
|
|
|
|
#include "wx/cocoa/listbox.h"
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif
|
|
|
|
|
1999-10-22 11:55:27 -04:00
|
|
|
#endif // wxUSE_LISTBOX
|
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif
|
1998-08-14 20:23:28 -04:00
|
|
|
// _WX_LISTBOX_H_BASE_
|