1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/headerctrl.h
3 // Purpose: wxMSW native wxHeaderCtrl
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 2008 Vadim Zeitlin <vadim@wxwidgets.org>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_MSW_HEADERCTRL_H_
12 #define _WX_MSW_HEADERCTRL_H_
14 class WXDLLIMPEXP_FWD_CORE wxImageList
;
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 class WXDLLIMPEXP_CORE wxHeaderCtrl
: public wxHeaderCtrlBase
28 wxHeaderCtrl(wxWindow
*parent
,
29 wxWindowID id
= wxID_ANY
,
30 const wxPoint
& pos
= wxDefaultPosition
,
31 const wxSize
& size
= wxDefaultSize
,
32 long style
= wxHD_DEFAULT_STYLE
,
33 const wxString
& name
= wxHeaderCtrlNameStr
)
37 Create(parent
, id
, pos
, size
, style
, name
);
40 bool Create(wxWindow
*parent
,
41 wxWindowID id
= wxID_ANY
,
42 const wxPoint
& pos
= wxDefaultPosition
,
43 const wxSize
& size
= wxDefaultSize
,
44 long style
= wxHD_DEFAULT_STYLE
,
45 const wxString
& name
= wxHeaderCtrlNameStr
);
47 virtual ~wxHeaderCtrl();
51 // implement base class pure virtuals
52 virtual void DoSetCount(unsigned int count
);
53 virtual unsigned int DoGetCount() const;
54 virtual void DoUpdate(unsigned int idx
);
56 virtual void DoScrollHorz(int dx
);
58 // override wxWindow methods which must be implemented by a new control
59 virtual wxSize
DoGetBestSize() const;
61 // override MSW-specific methods needed for new control
62 virtual WXDWORD
MSWGetStyle(long style
, WXDWORD
*exstyle
) const;
64 // common part of all ctors
67 // wrapper around Header_{Set,Insert}Item(): either appends the item to the
68 // end or modifies the existing item by copying information from
69 // GetColumn(idx) to it
70 enum Operation
{ Set
, Insert
};
71 void DoSetOrInsertItem(Operation oper
, unsigned int idx
);
74 // the image list: initially NULL, created on demand
75 wxImageList
*m_imageList
;
77 DECLARE_NO_COPY_CLASS(wxHeaderCtrl
)
80 #endif // _WX_MSW_HEADERCTRL_H_