]> git.saurik.com Git - wxWidgets.git/blame - include/wx/generic/listctrl.h
Modified generic wxTreeCtrl to work under non-Unix platforms simultaneously
[wxWidgets.git] / include / wx / generic / listctrl.h
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
bdc72a22 2// Name: wx/generic/listctrl.h
c801d85f
KB
3// Purpose: Generic list control
4// Author: Robert Roebling
5// Created: 01/02/97
6// Id:
7// Copyright: (c) 1998 Robert Roebling, Julian Smart and Markus Holzem
bdc72a22 8// Licence: wxWindows licence
c801d85f
KB
9/////////////////////////////////////////////////////////////////////////////
10
11#ifndef __LISTCTRLH_G__
12#define __LISTCTRLH_G__
13
14#ifdef __GNUG__
0d3820b3 15#pragma interface "listctrl.h"
c801d85f
KB
16#endif
17
18#include "wx/defs.h"
19#include "wx/object.h"
f60d0f94 20#include "wx/generic/imaglist.h"
c801d85f
KB
21#include "wx/control.h"
22#include "wx/timer.h"
ee7ee469 23#include "wx/textctrl.h"
c801d85f
KB
24#include "wx/dcclient.h"
25#include "wx/scrolwin.h"
26#include "wx/settings.h"
27
1e6d9499
JS
28#if wxUSE_DRAG_AND_DROP
29class WXDLLEXPORT wxDropTarget;
30#endif
31
c801d85f
KB
32//-----------------------------------------------------------------------------
33// classes
34//-----------------------------------------------------------------------------
35
1e6d9499
JS
36class WXDLLEXPORT wxListItem;
37class WXDLLEXPORT wxListEvent;
38class WXDLLEXPORT wxListCtrl;
c801d85f
KB
39
40//-----------------------------------------------------------------------------
41// internal classes
42//-----------------------------------------------------------------------------
43
1e6d9499
JS
44class WXDLLEXPORT wxListHeaderData;
45class WXDLLEXPORT wxListItemData;
46class WXDLLEXPORT wxListLineData;
c801d85f 47
1e6d9499
JS
48class WXDLLEXPORT wxListHeaderWindow;
49class WXDLLEXPORT wxListMainWindow;
c801d85f 50
1e6d9499 51class WXDLLEXPORT wxListRenameTimer;
e179bd65 52class WXDLLEXPORT wxListTextCtrl;
c801d85f 53
c801d85f
KB
54//-----------------------------------------------------------------------------
55// wxListCtrl
56//-----------------------------------------------------------------------------
57
1e6d9499 58class WXDLLEXPORT wxListCtrl: public wxControl
c801d85f 59{
b16088bf 60public:
e179bd65 61 wxListCtrl();
674ac8b9
VZ
62 wxListCtrl( wxWindow *parent,
63 wxWindowID id = -1,
64 const wxPoint &pos = wxDefaultPosition,
65 const wxSize &size = wxDefaultSize,
66 long style = wxLC_ICON,
67 const wxValidator& validator = wxDefaultValidator,
68 const wxString &name = "listctrl" )
32e9da8b 69 {
b16088bf 70 Create(parent, id, pos, size, style, validator, name);
32e9da8b 71 }
e179bd65 72 ~wxListCtrl();
b16088bf 73
674ac8b9
VZ
74 bool Create( wxWindow *parent,
75 wxWindowID id = -1,
76 const wxPoint &pos = wxDefaultPosition,
77 const wxSize &size = wxDefaultSize,
78 long style = wxLC_ICON,
79 const wxValidator& validator = wxDefaultValidator,
80 const wxString &name = "listctrl" );
b16088bf 81
e487524e 82 bool GetColumn( int col, wxListItem& item ) const;
debe6624 83 bool SetColumn( int col, wxListItem& item );
e487524e 84 int GetColumnWidth( int col ) const;
debe6624 85 bool SetColumnWidth( int col, int width);
e179bd65 86 int GetCountPerPage() const; // not the same in wxGLC as in Windows, I think
b16088bf 87
e487524e 88 bool GetItem( wxListItem& info ) const;
c801d85f 89 bool SetItem( wxListItem& info ) ;
debe6624 90 long SetItem( long index, int col, const wxString& label, int imageId = -1 );
e487524e 91 int GetItemState( long item, long stateMask ) const;
debe6624
JS
92 bool SetItemState( long item, long state, long stateMask);
93 bool SetItemImage( long item, int image, int selImage);
e487524e 94 wxString GetItemText( long item ) const;
debe6624 95 void SetItemText( long item, const wxString& str );
e487524e 96 long GetItemData( long item ) const;
debe6624 97 bool SetItemData( long item, long data );
0a240683 98 bool GetItemRect( long item, wxRect& rect, int code = wxLIST_RECT_BOUNDS ) const;
e487524e 99 bool GetItemPosition( long item, wxPoint& pos ) const;
debe6624 100 bool SetItemPosition( long item, const wxPoint& pos ); // not supported in wxGLC
e179bd65
RR
101 int GetItemCount() const;
102 int GetColumnCount() const;
33d0b396 103 void SetItemSpacing( int spacing, bool isSmall = FALSE );
e487524e 104 int GetItemSpacing( bool isSmall ) const;
e179bd65 105 int GetSelectedItemCount() const;
0530737d
VZ
106 wxColour GetTextColour() const;
107 void SetTextColour(const wxColour& col);
e179bd65 108 long GetTopItem() const;
b16088bf 109
debe6624 110 void SetSingleStyle( long style, bool add = TRUE ) ;
e179bd65
RR
111 void SetWindowStyleFlag( long style );
112 void RecreateWindow() {}
113 long GetNextItem( long item, int geometry = wxLIST_NEXT_ALL, int state = wxLIST_STATE_DONTCARE ) const;
114 wxImageList *GetImageList( int which ) const;
115 void SetImageList( wxImageList *imageList, int which );
debe6624 116 bool Arrange( int flag = wxLIST_ALIGN_DEFAULT ); // always wxLIST_ALIGN_LEFT in wxGLC
57c4d796 117
4f22cf8d 118 void ClearAll();
debe6624 119 bool DeleteItem( long item );
e179bd65
RR
120 bool DeleteAllItems();
121 bool DeleteAllColumns();
debe6624 122 bool DeleteColumn( int col );
57c4d796 123
e179bd65
RR
124 void EditLabel( long item ) { Edit(item); }
125 void Edit( long item );
57c4d796 126
debe6624 127 bool EnsureVisible( long item );
e179bd65
RR
128 long FindItem( long start, const wxString& str, bool partial = FALSE );
129 long FindItem( long start, long data );
130 long FindItem( long start, const wxPoint& pt, int direction ); // not supported in wxGLC
131 long HitTest( const wxPoint& point, int& flags);
c801d85f 132 long InsertItem(wxListItem& info);
e179bd65
RR
133 long InsertItem( long index, const wxString& label );
134 long InsertItem( long index, int imageIndex );
135 long InsertItem( long index, const wxString& label, int imageIndex );
136 long InsertColumn( long col, wxListItem& info );
137 long InsertColumn( long col, const wxString& heading, int format = wxLIST_FORMAT_LEFT,
138 int width = -1 );
139 bool ScrollList( int dx, int dy );
140 bool SortItems( wxListCtrlCompare fn, long data );
141 bool Update( long item );
b16088bf 142
77e7a1dc 143 void OnIdle( wxIdleEvent &event );
b16088bf 144 void OnSize( wxSizeEvent &event );
57c4d796 145
77e7a1dc 146 // We have to hand down a few functions
57c4d796 147
f03fc89f
VZ
148 bool SetBackgroundColour( const wxColour &colour );
149 bool SetForegroundColour( const wxColour &colour );
150 bool SetFont( const wxFont &font );
57c4d796 151
1e6d9499 152#if wxUSE_DRAG_AND_DROP
efbb7287
VZ
153 void SetDropTarget( wxDropTarget *dropTarget );
154 wxDropTarget *GetDropTarget() const;
1e6d9499
JS
155#endif
156
efbb7287
VZ
157 bool SetCursor( const wxCursor &cursor );
158 wxColour GetBackgroundColour() const;
159 wxColour GetForegroundColour() const;
160 bool DoPopupMenu( wxMenu *menu, int x, int y );
161 void SetFocus();
c801d85f 162
b16088bf
RR
163 // implementation
164 // --------------
57c4d796 165
a3622daa
VZ
166 wxImageList *m_imageListNormal;
167 wxImageList *m_imageListSmall;
c801d85f
KB
168 wxImageList *m_imageListState; // what's that ?
169 wxListHeaderWindow *m_headerWin;
170 wxListMainWindow *m_mainWin;
a3622daa 171
b16088bf
RR
172private:
173 DECLARE_EVENT_TABLE()
174 DECLARE_DYNAMIC_CLASS(wxListCtrl);
c801d85f
KB
175};
176
177
178#endif // __LISTCTRLH_G__