]> git.saurik.com Git - wxWidgets.git/blob - include/wx/generic/listctrl.h
added wxListCtrl::GetViewRect()
[wxWidgets.git] / include / wx / generic / listctrl.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/listctrl.h
3 // Purpose: Generic list control
4 // Author: Robert Roebling
5 // Created: 01/02/97
6 // Id:
7 // Copyright: (c) 1998 Robert Roebling and Julian Smart
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
10
11 #ifndef __LISTCTRLH_G__
12 #define __LISTCTRLH_G__
13
14 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
15 #pragma interface "listctrl.h"
16 #endif
17
18 #include "wx/defs.h"
19 #include "wx/object.h"
20 #include "wx/generic/imaglist.h"
21
22 #include "wx/control.h"
23 #include "wx/timer.h"
24 #include "wx/dcclient.h"
25 #include "wx/scrolwin.h"
26 #include "wx/settings.h"
27 #include "wx/listbase.h"
28
29 #if wxUSE_DRAG_AND_DROP
30 class WXDLLEXPORT wxDropTarget;
31 #endif
32
33 //-----------------------------------------------------------------------------
34 // classes
35 //-----------------------------------------------------------------------------
36
37 class WXDLLEXPORT wxListItem;
38 class WXDLLEXPORT wxListEvent;
39
40 #if !defined(__WXMSW__) || defined(__WIN16__) || defined(__WXUNIVERSAL__)
41 class WXDLLEXPORT wxListCtrl;
42 #define wxImageListType wxImageList
43 #else
44 #define wxImageListType wxGenericImageList
45 #endif
46
47 //-----------------------------------------------------------------------------
48 // internal classes
49 //-----------------------------------------------------------------------------
50
51 class WXDLLEXPORT wxListHeaderData;
52 class WXDLLEXPORT wxListItemData;
53 class WXDLLEXPORT wxListLineData;
54
55 class WXDLLEXPORT wxListHeaderWindow;
56 class WXDLLEXPORT wxListMainWindow;
57
58 class WXDLLEXPORT wxListRenameTimer;
59 class WXDLLEXPORT wxListTextCtrl;
60
61 //-----------------------------------------------------------------------------
62 // wxListCtrl
63 //-----------------------------------------------------------------------------
64
65 class WXDLLEXPORT wxGenericListCtrl: public wxControl
66 {
67 public:
68 wxGenericListCtrl();
69 wxGenericListCtrl( wxWindow *parent,
70 wxWindowID id = -1,
71 const wxPoint &pos = wxDefaultPosition,
72 const wxSize &size = wxDefaultSize,
73 long style = wxLC_ICON,
74 const wxValidator& validator = wxDefaultValidator,
75 const wxString &name = wxT("listctrl") )
76 {
77 Create(parent, id, pos, size, style, validator, name);
78 }
79 ~wxGenericListCtrl();
80
81 bool Create( wxWindow *parent,
82 wxWindowID id = -1,
83 const wxPoint &pos = wxDefaultPosition,
84 const wxSize &size = wxDefaultSize,
85 long style = wxLC_ICON,
86 const wxValidator& validator = wxDefaultValidator,
87 const wxString &name = wxT("listctrl") );
88
89 bool GetColumn( int col, wxListItem& item ) const;
90 bool SetColumn( int col, wxListItem& item );
91 int GetColumnWidth( int col ) const;
92 bool SetColumnWidth( int col, int width);
93 int GetCountPerPage() const; // not the same in wxGLC as in Windows, I think
94 wxRect GetViewRect() const;
95
96 bool GetItem( wxListItem& info ) const;
97 bool SetItem( wxListItem& info ) ;
98 long SetItem( long index, int col, const wxString& label, int imageId = -1 );
99 int GetItemState( long item, long stateMask ) const;
100 bool SetItemState( long item, long state, long stateMask);
101 bool SetItemImage( long item, int image, int selImage);
102 wxString GetItemText( long item ) const;
103 void SetItemText( long item, const wxString& str );
104 long GetItemData( long item ) const;
105 bool SetItemData( long item, long data );
106 bool GetItemRect( long item, wxRect& rect, int code = wxLIST_RECT_BOUNDS ) const;
107 bool GetItemPosition( long item, wxPoint& pos ) const;
108 bool SetItemPosition( long item, const wxPoint& pos ); // not supported in wxGLC
109 int GetItemCount() const;
110 int GetColumnCount() const;
111 void SetItemSpacing( int spacing, bool isSmall = FALSE );
112 int GetItemSpacing( bool isSmall ) const;
113 void SetItemTextColour( long item, const wxColour& col);
114 wxColour GetItemTextColour( long item ) const;
115 void SetItemBackgroundColour( long item, const wxColour &col);
116 wxColour GetItemBackgroundColour( long item ) const;
117 int GetSelectedItemCount() const;
118 wxColour GetTextColour() const;
119 void SetTextColour(const wxColour& col);
120 long GetTopItem() const;
121
122 void SetSingleStyle( long style, bool add = TRUE ) ;
123 void SetWindowStyleFlag( long style );
124 void RecreateWindow() {}
125 long GetNextItem( long item, int geometry = wxLIST_NEXT_ALL, int state = wxLIST_STATE_DONTCARE ) const;
126 wxImageListType *GetImageList( int which ) const;
127 void SetImageList( wxImageListType *imageList, int which );
128 void AssignImageList( wxImageListType *imageList, int which );
129 bool Arrange( int flag = wxLIST_ALIGN_DEFAULT ); // always wxLIST_ALIGN_LEFT in wxGLC
130
131 void ClearAll();
132 bool DeleteItem( long item );
133 bool DeleteAllItems();
134 bool DeleteAllColumns();
135 bool DeleteColumn( int col );
136
137 void SetItemCount(long count);
138
139 void EditLabel( long item ) { Edit(item); }
140 void Edit( long item );
141
142 bool EnsureVisible( long item );
143 long FindItem( long start, const wxString& str, bool partial = FALSE );
144 long FindItem( long start, long data );
145 long FindItem( long start, const wxPoint& pt, int direction ); // not supported in wxGLC
146 long HitTest( const wxPoint& point, int& flags);
147 long InsertItem(wxListItem& info);
148 long InsertItem( long index, const wxString& label );
149 long InsertItem( long index, int imageIndex );
150 long InsertItem( long index, const wxString& label, int imageIndex );
151 long InsertColumn( long col, wxListItem& info );
152 long InsertColumn( long col, const wxString& heading,
153 int format = wxLIST_FORMAT_LEFT, int width = -1 );
154 bool ScrollList( int dx, int dy );
155 bool SortItems( wxListCtrlCompare fn, long data );
156 bool Update( long item );
157
158 // returns true if it is a virtual list control
159 bool IsVirtual() const { return (GetWindowStyle() & wxLC_VIRTUAL) != 0; }
160
161 // refresh items selectively (only useful for virtual list controls)
162 void RefreshItem(long item);
163 void RefreshItems(long itemFrom, long itemTo);
164
165 // implementation only from now on
166 // -------------------------------
167
168 void OnInternalIdle( );
169 void OnSize( wxSizeEvent &event );
170
171 // We have to hand down a few functions
172 virtual void Refresh(bool eraseBackground = TRUE,
173 const wxRect *rect = NULL);
174
175 virtual void Freeze();
176 virtual void Thaw();
177
178 virtual bool SetBackgroundColour( const wxColour &colour );
179 virtual bool SetForegroundColour( const wxColour &colour );
180 virtual wxColour GetBackgroundColour() const;
181 virtual wxColour GetForegroundColour() const;
182 virtual bool SetFont( const wxFont &font );
183 virtual bool SetCursor( const wxCursor &cursor );
184
185 #if wxUSE_DRAG_AND_DROP
186 virtual void SetDropTarget( wxDropTarget *dropTarget );
187 virtual wxDropTarget *GetDropTarget() const;
188 #endif
189
190 virtual bool DoPopupMenu( wxMenu *menu, int x, int y );
191
192 virtual void SetFocus();
193
194 // implementation
195 // --------------
196
197 wxImageListType *m_imageListNormal;
198 wxImageListType *m_imageListSmall;
199 wxImageListType *m_imageListState; // what's that ?
200 bool m_ownsImageListNormal,
201 m_ownsImageListSmall,
202 m_ownsImageListState;
203 wxListHeaderWindow *m_headerWin;
204 wxListMainWindow *m_mainWin;
205 wxCoord m_headerHeight;
206
207 protected:
208 // return the text for the given column of the given item
209 virtual wxString OnGetItemText(long item, long column) const;
210
211 // return the icon for the given item
212 virtual int OnGetItemImage(long item) const;
213
214 // return the attribute for the item (may return NULL if none)
215 virtual wxListItemAttr *OnGetItemAttr(long item) const;
216
217 // it calls our OnGetXXX() functions
218 friend class WXDLLEXPORT wxListMainWindow;
219
220 private:
221 // Virtual function hiding supression
222 virtual void Update() { wxWindow::Update(); }
223
224 // create the header window
225 void CreateHeaderWindow();
226
227 // calculate and set height of the header
228 void CalculateAndSetHeaderHeight();
229
230 // reposition the header and the main window in the report view depending
231 // on whether it should be shown or not
232 void ResizeReportView(bool showHeader);
233
234 DECLARE_EVENT_TABLE()
235 DECLARE_DYNAMIC_CLASS(wxGenericListCtrl);
236 };
237
238 #if !defined(__WXMSW__) || defined(__WIN16__) || defined(__WXUNIVERSAL__)
239 /*
240 * wxListCtrl has to be a real class or we have problems with
241 * the run-time information.
242 */
243
244 class WXDLLEXPORT wxListCtrl: public wxGenericListCtrl
245 {
246 DECLARE_DYNAMIC_CLASS(wxListCtrl)
247
248 public:
249 wxListCtrl() {}
250
251 wxListCtrl(wxWindow *parent, wxWindowID id = -1,
252 const wxPoint& pos = wxDefaultPosition,
253 const wxSize& size = wxDefaultSize,
254 long style = wxLC_ICON,
255 const wxValidator &validator = wxDefaultValidator,
256 const wxString &name = wxT("listctrl") )
257 : wxGenericListCtrl(parent, id, pos, size, style, validator, name)
258 {
259 }
260 };
261 #endif // !__WXMSW__ || __WIN16__ || __WXUNIVERSAL__
262
263 #endif // __LISTCTRLH_G__