1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/listctrl.h
3 // Purpose: Generic list control
4 // Author: Robert Roebling
7 // Copyright: (c) 1998 Robert Roebling and Julian Smart
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_GENERIC_LISTCTRL_H_
12 #define _WX_GENERIC_LISTCTRL_H_
14 #include "wx/textctrl.h"
16 class WXDLLIMPEXP_CORE wxImageList
;
18 #if wxUSE_DRAG_AND_DROP
19 class WXDLLEXPORT wxDropTarget
;
22 // ----------------------------------------------------------------------------
24 // ----------------------------------------------------------------------------
27 //-----------------------------------------------------------------------------
29 //-----------------------------------------------------------------------------
31 class WXDLLEXPORT wxListHeaderWindow
;
32 class WXDLLEXPORT wxListMainWindow
;
34 //-----------------------------------------------------------------------------
36 //-----------------------------------------------------------------------------
38 class WXDLLEXPORT wxGenericListCtrl
: public wxControl
43 wxGenericListCtrl( wxWindow
*parent
,
44 wxWindowID winid
= wxID_ANY
,
45 const wxPoint
&pos
= wxDefaultPosition
,
46 const wxSize
&size
= wxDefaultSize
,
47 long style
= wxLC_ICON
,
48 const wxValidator
& validator
= wxDefaultValidator
,
49 const wxString
&name
= wxListCtrlNameStr
)
51 Create(parent
, winid
, pos
, size
, style
, validator
, name
);
53 virtual ~wxGenericListCtrl();
55 bool Create( wxWindow
*parent
,
56 wxWindowID winid
= wxID_ANY
,
57 const wxPoint
&pos
= wxDefaultPosition
,
58 const wxSize
&size
= wxDefaultSize
,
59 long style
= wxLC_ICON
,
60 const wxValidator
& validator
= wxDefaultValidator
,
61 const wxString
&name
= wxListCtrlNameStr
);
63 bool GetColumn( int col
, wxListItem
& item
) const;
64 bool SetColumn( int col
, wxListItem
& item
);
65 int GetColumnWidth( int col
) const;
66 bool SetColumnWidth( int col
, int width
);
67 int GetCountPerPage() const; // not the same in wxGLC as in Windows, I think
68 wxRect
GetViewRect() const;
70 bool GetItem( wxListItem
& info
) const;
71 bool SetItem( wxListItem
& info
) ;
72 long SetItem( long index
, int col
, const wxString
& label
, int imageId
= -1 );
73 int GetItemState( long item
, long stateMask
) const;
74 bool SetItemState( long item
, long state
, long stateMask
);
75 bool SetItemImage( long item
, int image
, int selImage
= -1 );
76 bool SetItemColumnImage( long item
, long column
, int image
);
77 wxString
GetItemText( long item
) const;
78 void SetItemText( long item
, const wxString
& str
);
79 wxUIntPtr
GetItemData( long item
) const;
80 bool SetItemData( long item
, long data
);
81 bool GetItemRect( long item
, wxRect
& rect
, int code
= wxLIST_RECT_BOUNDS
) const;
82 bool GetItemPosition( long item
, wxPoint
& pos
) const;
83 bool SetItemPosition( long item
, const wxPoint
& pos
); // not supported in wxGLC
84 int GetItemCount() const;
85 int GetColumnCount() const;
86 void SetItemSpacing( int spacing
, bool isSmall
= false );
87 wxSize
GetItemSpacing() const;
88 void SetItemTextColour( long item
, const wxColour
& col
);
89 wxColour
GetItemTextColour( long item
) const;
90 void SetItemBackgroundColour( long item
, const wxColour
&col
);
91 wxColour
GetItemBackgroundColour( long item
) const;
92 void SetItemFont( long item
, const wxFont
&f
);
93 wxFont
GetItemFont( long item
) const;
94 int GetSelectedItemCount() const;
95 wxColour
GetTextColour() const;
96 void SetTextColour(const wxColour
& col
);
97 long GetTopItem() const;
99 void SetSingleStyle( long style
, bool add
= true ) ;
100 void SetWindowStyleFlag( long style
);
101 void RecreateWindow() {}
102 long GetNextItem( long item
, int geometry
= wxLIST_NEXT_ALL
, int state
= wxLIST_STATE_DONTCARE
) const;
103 wxImageList
*GetImageList( int which
) const;
104 void SetImageList( wxImageList
*imageList
, int which
);
105 void AssignImageList( wxImageList
*imageList
, int which
);
106 bool Arrange( int flag
= wxLIST_ALIGN_DEFAULT
); // always wxLIST_ALIGN_LEFT in wxGLC
109 bool DeleteItem( long item
);
110 bool DeleteAllItems();
111 bool DeleteAllColumns();
112 bool DeleteColumn( int col
);
114 void SetItemCount(long count
);
116 wxTextCtrl
*EditLabel(long item
,
117 wxClassInfo
* textControlClass
= CLASSINFO(wxTextCtrl
));
118 wxTextCtrl
* GetEditControl() const;
119 void Edit( long item
) { EditLabel(item
); }
121 bool EnsureVisible( long item
);
122 long FindItem( long start
, const wxString
& str
, bool partial
= false );
123 long FindItem( long start
, wxUIntPtr data
);
124 long FindItem( long start
, const wxPoint
& pt
, int direction
); // not supported in wxGLC
125 long HitTest( const wxPoint
& point
, int& flags
, long *pSubItem
= NULL
) const;
126 long InsertItem(wxListItem
& info
);
127 long InsertItem( long index
, const wxString
& label
);
128 long InsertItem( long index
, int imageIndex
);
129 long InsertItem( long index
, const wxString
& label
, int imageIndex
);
130 long InsertColumn( long col
, wxListItem
& info
);
131 long InsertColumn( long col
, const wxString
& heading
,
132 int format
= wxLIST_FORMAT_LEFT
, int width
= -1 );
133 bool ScrollList( int dx
, int dy
);
134 bool SortItems( wxListCtrlCompare fn
, long data
);
135 bool Update( long item
);
136 // Must provide overload to avoid hiding it (and warnings about it)
137 virtual void Update() { wxControl::Update(); }
139 // are we in report mode?
140 bool InReportView() const { return HasFlag(wxLC_REPORT
); }
142 // are we in virtual report mode?
143 bool IsVirtual() const { return HasFlag(wxLC_VIRTUAL
); }
145 // do we have a header window?
146 bool HasHeader() const
147 { return InReportView() && !HasFlag(wxLC_NO_HEADER
); }
149 // refresh items selectively (only useful for virtual list controls)
150 void RefreshItem(long item
);
151 void RefreshItems(long itemFrom
, long itemTo
);
153 #if WXWIN_COMPATIBILITY_2_6
154 // obsolete, don't use
155 wxDEPRECATED( int GetItemSpacing( bool isSmall
) const );
156 #endif // WXWIN_COMPATIBILITY_2_6
158 virtual wxVisualAttributes
GetDefaultAttributes() const
160 return GetClassDefaultAttributes(GetWindowVariant());
163 static wxVisualAttributes
164 GetClassDefaultAttributes(wxWindowVariant variant
= wxWINDOW_VARIANT_NORMAL
);
166 // implementation only from now on
167 // -------------------------------
169 void OnInternalIdle( );
170 void OnSize( wxSizeEvent
&event
);
172 // We have to hand down a few functions
173 virtual void Refresh(bool eraseBackground
= true,
174 const wxRect
*rect
= NULL
);
176 virtual void Freeze();
179 virtual bool SetBackgroundColour( const wxColour
&colour
);
180 virtual bool SetForegroundColour( const wxColour
&colour
);
181 virtual wxColour
GetBackgroundColour() const;
182 virtual wxColour
GetForegroundColour() const;
183 virtual bool SetFont( const wxFont
&font
);
184 virtual bool SetCursor( const wxCursor
&cursor
);
186 virtual int GetScrollPos(int orient
) const;
187 virtual void SetScrollPos(int orient
, int pos
, bool refresh
= true);
189 #if wxUSE_DRAG_AND_DROP
190 virtual void SetDropTarget( wxDropTarget
*dropTarget
);
191 virtual wxDropTarget
*GetDropTarget() const;
194 virtual bool ShouldInheritColours() const { return false; }
195 virtual void SetFocus();
200 wxImageList
*m_imageListNormal
;
201 wxImageList
*m_imageListSmall
;
202 wxImageList
*m_imageListState
; // what's that ?
203 bool m_ownsImageListNormal
,
204 m_ownsImageListSmall
,
205 m_ownsImageListState
;
206 wxListHeaderWindow
*m_headerWin
;
207 wxListMainWindow
*m_mainWin
;
208 wxCoord m_headerHeight
;
211 virtual bool DoPopupMenu( wxMenu
*menu
, int x
, int y
);
213 // take into account the coordinates difference between the container
214 // window and the list control window itself here
215 virtual void DoClientToScreen( int *x
, int *y
) const;
216 virtual void DoScreenToClient( int *x
, int *y
) const;
218 virtual wxSize
DoGetBestSize() const;
220 // return the text for the given column of the given item
221 virtual wxString
OnGetItemText(long item
, long column
) const;
223 // return the icon for the given item. In report view, OnGetItemImage will
224 // only be called for the first column. See OnGetItemColumnImage for
226 virtual int OnGetItemImage(long item
) const;
228 // return the icon for the given item and column.
229 virtual int OnGetItemColumnImage(long item
, long column
) const;
231 // return the attribute for the item (may return NULL if none)
232 virtual wxListItemAttr
*OnGetItemAttr(long item
) const;
234 // it calls our OnGetXXX() functions
235 friend class WXDLLEXPORT wxListMainWindow
;
238 // create the header window
239 void CreateHeaderWindow();
241 // calculate and set height of the header
242 void CalculateAndSetHeaderHeight();
244 // reposition the header and the main window in the report view depending
245 // on whether it should be shown or not
246 void ResizeReportView(bool showHeader
);
248 DECLARE_EVENT_TABLE()
249 DECLARE_DYNAMIC_CLASS(wxGenericListCtrl
)
252 #if (!defined(__WXMSW__) || defined(__WXUNIVERSAL__)) && !defined(__WXMAC__)
254 * wxListCtrl has to be a real class or we have problems with
255 * the run-time information.
258 class WXDLLEXPORT wxListCtrl
: public wxGenericListCtrl
260 DECLARE_DYNAMIC_CLASS(wxListCtrl
)
265 wxListCtrl(wxWindow
*parent
, wxWindowID winid
= wxID_ANY
,
266 const wxPoint
& pos
= wxDefaultPosition
,
267 const wxSize
& size
= wxDefaultSize
,
268 long style
= wxLC_ICON
,
269 const wxValidator
&validator
= wxDefaultValidator
,
270 const wxString
&name
= wxListCtrlNameStr
)
271 : wxGenericListCtrl(parent
, winid
, pos
, size
, style
, validator
, name
)
276 #endif // !__WXMSW__ || __WXUNIVERSAL__
278 #endif // _WX_GENERIC_LISTCTRL_H_