1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2005-09-27 12:54:43 -04:00
|
|
|
// Name: wx/gtk/listbox.h
|
1999-02-01 09:40:53 -05:00
|
|
|
// Purpose: wxListBox class declaration
|
1998-05-20 10:01:55 -04:00
|
|
|
// Author: Robert Roebling
|
1998-10-29 13:03:18 -05:00
|
|
|
// Id: $Id$
|
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef __GTKLISTBOXH__
|
|
|
|
#define __GTKLISTBOXH__
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxListBox
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2005-08-02 18:58:06 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxListBox : public wxListBoxBase
|
1998-05-20 10:01:55 -04:00
|
|
|
{
|
1998-11-06 03:50:52 -05:00
|
|
|
public:
|
1999-10-22 11:55:27 -04:00
|
|
|
// ctors and such
|
2006-03-11 08:24:07 -05:00
|
|
|
wxListBox()
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
}
|
1999-02-01 09:40:53 -05:00
|
|
|
wxListBox( wxWindow *parent, wxWindowID id,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
int n = 0, const wxString choices[] = (const wxString *) NULL,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxListBoxNameStr )
|
|
|
|
{
|
2006-03-11 08:24:07 -05:00
|
|
|
Init();
|
1999-02-01 09:40:53 -05:00
|
|
|
Create(parent, id, pos, size, n, choices, style, validator, name);
|
|
|
|
}
|
2004-01-31 13:21:45 -05:00
|
|
|
wxListBox( wxWindow *parent, wxWindowID id,
|
|
|
|
const wxPoint& pos,
|
|
|
|
const wxSize& size,
|
|
|
|
const wxArrayString& choices,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxListBoxNameStr )
|
|
|
|
{
|
2006-03-11 08:24:07 -05:00
|
|
|
Init();
|
2004-01-31 13:21:45 -05:00
|
|
|
Create(parent, id, pos, size, choices, style, validator, name);
|
|
|
|
}
|
1999-02-01 09:40:53 -05:00
|
|
|
virtual ~wxListBox();
|
|
|
|
|
|
|
|
bool Create(wxWindow *parent, wxWindowID id,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
int n = 0, const wxString choices[] = (const wxString *) NULL,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxListBoxNameStr);
|
2004-01-31 13:21:45 -05:00
|
|
|
bool Create(wxWindow *parent, wxWindowID id,
|
|
|
|
const wxPoint& pos,
|
|
|
|
const wxSize& size,
|
|
|
|
const wxArrayString& choices,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxListBoxNameStr);
|
1999-02-01 09:40:53 -05:00
|
|
|
|
1999-10-22 11:55:27 -04:00
|
|
|
// implement base class pure virtuals
|
|
|
|
virtual void Clear();
|
2006-03-23 17:05:23 -05:00
|
|
|
virtual void Delete(unsigned int n);
|
1999-10-22 11:55:27 -04:00
|
|
|
|
2006-03-23 17:05:23 -05:00
|
|
|
virtual unsigned int GetCount() const;
|
|
|
|
virtual wxString GetString(unsigned int n) const;
|
|
|
|
virtual void SetString(unsigned int n, const wxString& s);
|
2005-09-27 12:54:43 -04:00
|
|
|
virtual int FindString(const wxString& s, bool bCase = false) const;
|
1999-10-22 11:55:27 -04:00
|
|
|
|
|
|
|
virtual bool IsSelected(int n) const;
|
|
|
|
virtual int GetSelection() const;
|
|
|
|
virtual int GetSelections(wxArrayInt& aSelections) const;
|
|
|
|
|
2004-05-06 13:26:25 -04:00
|
|
|
static wxVisualAttributes
|
|
|
|
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
|
2005-09-27 12:54:43 -04:00
|
|
|
|
1999-10-22 11:55:27 -04:00
|
|
|
// implementation from now on
|
1998-05-20 10:01:55 -04:00
|
|
|
|
1999-02-01 09:40:53 -05:00
|
|
|
GtkWidget *GetConnectWidget();
|
|
|
|
|
|
|
|
#if wxUSE_TOOLTIPS
|
1999-04-21 17:46:02 -04:00
|
|
|
void ApplyToolTip( GtkTooltips *tips, const wxChar *tip );
|
1999-02-01 09:40:53 -05:00
|
|
|
#endif // wxUSE_TOOLTIPS
|
|
|
|
|
2006-03-01 16:51:42 -05:00
|
|
|
struct _GtkTreeView *m_treeview;
|
|
|
|
struct _GtkListStore *m_liststore;
|
1999-06-01 11:32:12 -04:00
|
|
|
|
|
|
|
#if wxUSE_CHECKLISTBOX
|
1999-02-01 09:40:53 -05:00
|
|
|
bool m_hasCheckBoxes;
|
1999-06-01 11:32:12 -04:00
|
|
|
#endif // wxUSE_CHECKLISTBOX
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2001-11-17 17:32:15 -05:00
|
|
|
bool m_blockEvent;
|
2006-03-01 16:51:42 -05:00
|
|
|
bool m_spacePressed;
|
2002-09-04 09:45:39 -04:00
|
|
|
|
2006-03-01 16:51:42 -05:00
|
|
|
struct _GtkTreeEntry* GtkGetEntry(int pos) const;
|
2006-03-14 14:44:45 -05:00
|
|
|
void GtkInsertItems(const wxArrayString& items,
|
2006-03-23 17:05:23 -05:00
|
|
|
void** clientData, unsigned int pos);
|
2006-06-25 20:46:32 -04:00
|
|
|
void GtkDeselectAll();
|
2006-03-01 16:51:42 -05:00
|
|
|
void GtkSetSelection(int n, const bool select, const bool blockEvent);
|
2002-05-31 10:00:01 -04:00
|
|
|
|
1999-11-19 16:01:20 -05:00
|
|
|
protected:
|
|
|
|
virtual wxSize DoGetBestSize() const;
|
2006-08-25 08:59:28 -04:00
|
|
|
virtual void DoApplyWidgetStyle(GtkRcStyle *style);
|
|
|
|
virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const;
|
|
|
|
|
2006-02-08 16:47:09 -05:00
|
|
|
virtual void DoSetSelection(int n, bool select);
|
|
|
|
virtual int DoAppend(const wxString& item);
|
2006-03-23 17:05:23 -05:00
|
|
|
virtual void DoInsertItems(const wxArrayString& items, unsigned int pos);
|
2006-02-08 16:47:09 -05:00
|
|
|
virtual void DoSetItems(const wxArrayString& items, void **clientData);
|
|
|
|
virtual void DoSetFirstItem(int n);
|
2006-03-23 17:05:23 -05:00
|
|
|
virtual void DoSetItemClientData(unsigned int n, void* clientData);
|
|
|
|
virtual void* DoGetItemClientData(unsigned int n) const;
|
|
|
|
virtual void DoSetItemClientObject(unsigned int n, wxClientData* clientData);
|
|
|
|
virtual wxClientData* DoGetItemClientObject(unsigned int n) const;
|
2006-03-09 07:48:52 -05:00
|
|
|
virtual int DoListHitTest(const wxPoint& point) const;
|
|
|
|
|
1999-10-22 11:55:27 -04:00
|
|
|
private:
|
2006-03-13 04:37:23 -05:00
|
|
|
void Init(); //common construction
|
|
|
|
|
1999-10-22 11:55:27 -04:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxListBox)
|
|
|
|
};
|
1999-06-14 19:04:05 -04:00
|
|
|
|
1998-05-20 10:01:55 -04:00
|
|
|
#endif // __GTKLISTBOXH__
|