]> git.saurik.com Git - wxWidgets.git/blame - include/wx/generic/listctrl.h
compilation fix
[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"
b54e41c5 20#include "wx/imaglist.h"
c801d85f
KB
21#include "wx/control.h"
22#include "wx/timer.h"
23#include "wx/dcclient.h"
24#include "wx/scrolwin.h"
25#include "wx/settings.h"
26
1e6d9499
JS
27#if wxUSE_DRAG_AND_DROP
28class WXDLLEXPORT wxDropTarget;
29#endif
30
c801d85f
KB
31//-----------------------------------------------------------------------------
32// classes
33//-----------------------------------------------------------------------------
34
1e6d9499
JS
35class WXDLLEXPORT wxListItem;
36class WXDLLEXPORT wxListEvent;
37class WXDLLEXPORT wxListCtrl;
c801d85f
KB
38
39//-----------------------------------------------------------------------------
40// internal classes
41//-----------------------------------------------------------------------------
42
1e6d9499
JS
43class WXDLLEXPORT wxListHeaderData;
44class WXDLLEXPORT wxListItemData;
45class WXDLLEXPORT wxListLineData;
c801d85f 46
1e6d9499
JS
47class WXDLLEXPORT wxListHeaderWindow;
48class WXDLLEXPORT wxListMainWindow;
c801d85f 49
1e6d9499 50class WXDLLEXPORT wxListRenameTimer;
e179bd65 51class WXDLLEXPORT wxListTextCtrl;
c801d85f 52
c801d85f
KB
53//-----------------------------------------------------------------------------
54// wxListCtrl
55//-----------------------------------------------------------------------------
56
1e6d9499 57class WXDLLEXPORT wxListCtrl: public wxControl
c801d85f 58{
b16088bf 59public:
e179bd65 60 wxListCtrl();
674ac8b9
VZ
61 wxListCtrl( wxWindow *parent,
62 wxWindowID id = -1,
63 const wxPoint &pos = wxDefaultPosition,
64 const wxSize &size = wxDefaultSize,
65 long style = wxLC_ICON,
66 const wxValidator& validator = wxDefaultValidator,
67 const wxString &name = "listctrl" )
32e9da8b 68 {
b16088bf 69 Create(parent, id, pos, size, style, validator, name);
32e9da8b 70 }
e179bd65 71 ~wxListCtrl();
29149a64 72
674ac8b9
VZ
73 bool Create( wxWindow *parent,
74 wxWindowID id = -1,
75 const wxPoint &pos = wxDefaultPosition,
76 const wxSize &size = wxDefaultSize,
77 long style = wxLC_ICON,
78 const wxValidator& validator = wxDefaultValidator,
79 const wxString &name = "listctrl" );
b16088bf 80
e487524e 81 bool GetColumn( int col, wxListItem& item ) const;
debe6624 82 bool SetColumn( int col, wxListItem& item );
e487524e 83 int GetColumnWidth( int col ) const;
debe6624 84 bool SetColumnWidth( int col, int width);
e179bd65 85 int GetCountPerPage() const; // not the same in wxGLC as in Windows, I think
b16088bf 86
e487524e 87 bool GetItem( wxListItem& info ) const;
c801d85f 88 bool SetItem( wxListItem& info ) ;
debe6624 89 long SetItem( long index, int col, const wxString& label, int imageId = -1 );
e487524e 90 int GetItemState( long item, long stateMask ) const;
debe6624
JS
91 bool SetItemState( long item, long state, long stateMask);
92 bool SetItemImage( long item, int image, int selImage);
e487524e 93 wxString GetItemText( long item ) const;
debe6624 94 void SetItemText( long item, const wxString& str );
e487524e 95 long GetItemData( long item ) const;
debe6624 96 bool SetItemData( long item, long data );
0a240683 97 bool GetItemRect( long item, wxRect& rect, int code = wxLIST_RECT_BOUNDS ) const;
e487524e 98 bool GetItemPosition( long item, wxPoint& pos ) const;
debe6624 99 bool SetItemPosition( long item, const wxPoint& pos ); // not supported in wxGLC
e179bd65
RR
100 int GetItemCount() const;
101 int GetColumnCount() const;
33d0b396 102 void SetItemSpacing( int spacing, bool isSmall = FALSE );
e487524e 103 int GetItemSpacing( bool isSmall ) const;
e179bd65 104 int GetSelectedItemCount() const;
0530737d
VZ
105 wxColour GetTextColour() const;
106 void SetTextColour(const wxColour& col);
e179bd65 107 long GetTopItem() const;
b16088bf 108
debe6624 109 void SetSingleStyle( long style, bool add = TRUE ) ;
e179bd65
RR
110 void SetWindowStyleFlag( long style );
111 void RecreateWindow() {}
112 long GetNextItem( long item, int geometry = wxLIST_NEXT_ALL, int state = wxLIST_STATE_DONTCARE ) const;
113 wxImageList *GetImageList( int which ) const;
114 void SetImageList( wxImageList *imageList, int which );
2e12c11a 115 void AssignImageList( 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
2c1f73ee
VZ
124 void SetItemCount(long count);
125
e179bd65
RR
126 void EditLabel( long item ) { Edit(item); }
127 void Edit( long item );
57c4d796 128
debe6624 129 bool EnsureVisible( long item );
e179bd65
RR
130 long FindItem( long start, const wxString& str, bool partial = FALSE );
131 long FindItem( long start, long data );
132 long FindItem( long start, const wxPoint& pt, int direction ); // not supported in wxGLC
133 long HitTest( const wxPoint& point, int& flags);
c801d85f 134 long InsertItem(wxListItem& info);
e179bd65
RR
135 long InsertItem( long index, const wxString& label );
136 long InsertItem( long index, int imageIndex );
137 long InsertItem( long index, const wxString& label, int imageIndex );
138 long InsertColumn( long col, wxListItem& info );
139 long InsertColumn( long col, const wxString& heading, int format = wxLIST_FORMAT_LEFT,
140 int width = -1 );
141 bool ScrollList( int dx, int dy );
142 bool SortItems( wxListCtrlCompare fn, long data );
143 bool Update( long item );
29149a64 144
2c1f73ee
VZ
145 // returns true if it is a virtual list control
146 bool IsVirtual() const { return (GetWindowStyle() & wxLC_VIRTUAL) != 0; }
147
1a6cb56f
VZ
148 // refresh items selectively (only useful for virtual list controls)
149 void RefreshItem(long item);
150 void RefreshItems(long itemFrom, long itemTo);
151
152 // implementation only from now on
153 // -------------------------------
154
77e7a1dc 155 void OnIdle( wxIdleEvent &event );
b16088bf 156 void OnSize( wxSizeEvent &event );
57c4d796 157
77e7a1dc 158 // We have to hand down a few functions
57c4d796 159
c5c528fc
VZ
160 virtual void Freeze();
161 virtual void Thaw();
162
163 virtual bool SetBackgroundColour( const wxColour &colour );
164 virtual bool SetForegroundColour( const wxColour &colour );
165 virtual wxColour GetBackgroundColour() const;
166 virtual wxColour GetForegroundColour() const;
167 virtual bool SetFont( const wxFont &font );
168 virtual bool SetCursor( const wxCursor &cursor );
57c4d796 169
1e6d9499 170#if wxUSE_DRAG_AND_DROP
c5c528fc
VZ
171 virtual void SetDropTarget( wxDropTarget *dropTarget );
172 virtual wxDropTarget *GetDropTarget() const;
1e6d9499
JS
173#endif
174
c5c528fc
VZ
175 virtual bool DoPopupMenu( wxMenu *menu, int x, int y );
176
177 virtual void SetFocus();
c801d85f 178
b16088bf
RR
179 // implementation
180 // --------------
57c4d796 181
a3622daa
VZ
182 wxImageList *m_imageListNormal;
183 wxImageList *m_imageListSmall;
c801d85f 184 wxImageList *m_imageListState; // what's that ?
29149a64 185 bool m_ownsImageListNormal,
2e12c11a
VS
186 m_ownsImageListSmall,
187 m_ownsImageListState;
c801d85f
KB
188 wxListHeaderWindow *m_headerWin;
189 wxListMainWindow *m_mainWin;
a3622daa 190
2c1f73ee
VZ
191protected:
192 // return the text for the given column of the given item
193 virtual wxString OnGetItemText(long item, long column) const;
194
195 // return the icon for the given item
196 virtual int OnGetItemImage(long item) const;
197
6c02c329
VZ
198 // return the attribute for the item (may return NULL if none)
199 virtual wxListItemAttr *OnGetItemAttr(long item) const;
200
2c1f73ee 201 // it calls our OnGetXXX() functions
ad08ef44 202 friend class WXDLLEXPORT wxListMainWindow;
2c1f73ee 203
b16088bf 204private:
210a651b 205 // Virtual function hiding supression
8ac7c509 206 virtual void Update() { wxWindow::Update(); }
210a651b 207
cf1dfa6b
VZ
208 // create the header window
209 void CreateHeaderWindow();
210
c0f8674c
VZ
211 // reposition the header and the main window in the report view depending
212 // on whether it should be shown or not
213 void ResizeReportView(bool showHeader);
214
b16088bf
RR
215 DECLARE_EVENT_TABLE()
216 DECLARE_DYNAMIC_CLASS(wxListCtrl);
c801d85f
KB
217};
218
219
220#endif // __LISTCTRLH_G__