1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/headerctrlg.cpp
3 // Purpose: generic wxHeaderCtrl implementation
4 // Author: Vadim Zeitlin
7 // Copyright: (c) 2008 Vadim Zeitlin <vadim@wxwidgets.org>
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 // ============================================================================
13 // ============================================================================
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 // for compilers that support precompilation, includes "wx.h".
20 #include "wx/wxprec.h"
28 #include "wx/headerctrl.h"
30 #ifdef wxHAS_GENERIC_HEADERCTRL
32 #include "wx/dcbuffer.h"
33 #include "wx/renderer.h"
35 // ----------------------------------------------------------------------------
37 // ----------------------------------------------------------------------------
42 const unsigned NO_SORT
= (unsigned)-1;
44 const unsigned COL_NONE
= (unsigned)-1;
46 } // anonymous namespace
48 // ============================================================================
49 // wxHeaderCtrl implementation
50 // ============================================================================
52 // ----------------------------------------------------------------------------
53 // wxHeaderCtrl creation
54 // ----------------------------------------------------------------------------
56 void wxHeaderCtrl::Init()
61 m_colBeingReordered
= COL_NONE
;
66 bool wxHeaderCtrl::Create(wxWindow
*parent
,
73 if ( !wxHeaderCtrlBase::Create(parent
, id
, pos
, size
,
74 style
, wxDefaultValidator
, name
) )
77 // tell the system to not paint the background at all to avoid flicker as
78 // we paint the entire window area in our OnPaint()
79 SetBackgroundStyle(wxBG_STYLE_CUSTOM
);
84 wxHeaderCtrl::~wxHeaderCtrl()
88 // ----------------------------------------------------------------------------
89 // wxHeaderCtrl columns manipulation
90 // ----------------------------------------------------------------------------
92 void wxHeaderCtrl::DoSetCount(unsigned int count
)
94 // update the column indices order array before changing m_numColumns
95 DoResizeColumnIndices(m_colIndices
, count
);
103 unsigned int wxHeaderCtrl::DoGetCount() const
108 void wxHeaderCtrl::DoUpdate(unsigned int idx
)
110 InvalidateBestSize();
112 // we need to refresh not only this column but also the ones after it in
113 // case it was shown or hidden or its width changed -- it would be nice to
114 // avoid doing this unnecessary by storing the old column width (TODO)
115 RefreshColsAfter(idx
);
118 // ----------------------------------------------------------------------------
119 // wxHeaderCtrl scrolling
120 // ----------------------------------------------------------------------------
122 void wxHeaderCtrl::DoScrollHorz(int dx
)
124 m_scrollOffset
+= dx
;
126 // don't call our own version which calls this function!
127 wxControl::ScrollWindow(dx
, 0);
130 // ----------------------------------------------------------------------------
131 // wxHeaderCtrl geometry
132 // ----------------------------------------------------------------------------
134 wxSize
wxHeaderCtrl::DoGetBestSize() const
136 wxWindow
*win
= GetParent();
137 int height
= wxRendererNative::Get().GetHeaderButtonHeight( win
);
139 // the vertical size is rather arbitrary but it looks better if we leave
140 // some space around the text
141 const wxSize
size(IsEmpty() ? wxHeaderCtrlBase::DoGetBestSize().x
142 : GetColEnd(GetColumnCount() - 1),
143 height
); // (7*GetCharHeight())/4);
148 int wxHeaderCtrl::GetColStart(unsigned int idx
) const
150 int pos
= m_scrollOffset
;
151 for ( unsigned n
= 0; ; n
++ )
153 const unsigned i
= m_colIndices
[n
];
157 const wxHeaderColumn
& col
= GetColumn(i
);
159 pos
+= col
.GetWidth();
165 int wxHeaderCtrl::GetColEnd(unsigned int idx
) const
167 int x
= GetColStart(idx
);
169 return x
+ GetColumn(idx
).GetWidth();
172 unsigned int wxHeaderCtrl::FindColumnAtPoint(int x
, bool *onSeparator
) const
175 const unsigned count
= GetColumnCount();
176 for ( unsigned n
= 0; n
< count
; n
++ )
178 const unsigned idx
= m_colIndices
[n
];
179 const wxHeaderColumn
& col
= GetColumn(idx
);
180 if ( col
.IsHidden() )
183 pos
+= col
.GetWidth();
185 // if the column is resizeable, check if we're approximatively over the
186 // line separating it from the next column
188 // TODO: don't hardcode sensitivity
189 if ( col
.IsResizeable() && abs(x
- pos
) < 8 )
196 // inside this column?
200 *onSeparator
= false;
206 *onSeparator
= false;
210 // ----------------------------------------------------------------------------
211 // wxHeaderCtrl repainting
212 // ----------------------------------------------------------------------------
214 void wxHeaderCtrl::RefreshCol(unsigned int idx
)
216 wxRect rect
= GetClientRect();
217 rect
.x
+= GetColStart(idx
);
218 rect
.width
= GetColumn(idx
).GetWidth();
223 void wxHeaderCtrl::RefreshColIfNotNone(unsigned int idx
)
225 if ( idx
!= COL_NONE
)
229 void wxHeaderCtrl::RefreshColsAfter(unsigned int idx
)
231 wxRect rect
= GetClientRect();
232 const int ofs
= GetColStart(idx
);
239 // ----------------------------------------------------------------------------
240 // wxHeaderCtrl dragging/resizing/reordering
241 // ----------------------------------------------------------------------------
243 bool wxHeaderCtrl::IsResizing() const
245 return m_colBeingResized
!= COL_NONE
;
248 bool wxHeaderCtrl::IsReordering() const
250 return m_colBeingReordered
!= COL_NONE
;
253 void wxHeaderCtrl::ClearMarkers()
257 wxDCOverlay
dcover(m_overlay
, &dc
);
261 void wxHeaderCtrl::UpdateResizingMarker(int xPhysical
)
265 wxDCOverlay
dcover(m_overlay
, &dc
);
268 // unfortunately drawing the marker over the parent window doesn't work as
269 // it's usually covered by another window (the main control view) so just
270 // draw the marker over the header itself, even if it makes it not very
272 dc
.SetPen(*wxLIGHT_GREY_PEN
);
273 dc
.DrawLine(xPhysical
, 0, xPhysical
, GetClientSize().y
);
276 void wxHeaderCtrl::EndDragging()
282 // don't use the special dragging cursor any more
283 SetCursor(wxNullCursor
);
286 void wxHeaderCtrl::CancelDragging()
288 wxASSERT_MSG( IsDragging(),
289 "shouldn't be called if we're not dragging anything" );
293 unsigned int& col
= IsResizing() ? m_colBeingResized
: m_colBeingReordered
;
295 wxHeaderCtrlEvent
event(wxEVT_COMMAND_HEADER_DRAGGING_CANCELLED
, GetId());
296 event
.SetEventObject(this);
297 event
.SetColumn(col
);
299 GetEventHandler()->ProcessEvent(event
);
304 int wxHeaderCtrl::ConstrainByMinWidth(unsigned int col
, int& xPhysical
)
306 const int xStart
= GetColStart(col
);
308 // notice that GetMinWidth() returns 0 if there is no minimal width so it
309 // still makes sense to use it even in this case
310 const int xMinEnd
= xStart
+ GetColumn(col
).GetMinWidth();
312 if ( xPhysical
< xMinEnd
)
315 return xPhysical
- xStart
;
318 void wxHeaderCtrl::StartOrContinueResizing(unsigned int col
, int xPhysical
)
320 wxHeaderCtrlEvent
event(IsResizing() ? wxEVT_COMMAND_HEADER_RESIZING
321 : wxEVT_COMMAND_HEADER_BEGIN_RESIZE
,
323 event
.SetEventObject(this);
324 event
.SetColumn(col
);
326 event
.SetWidth(ConstrainByMinWidth(col
, xPhysical
));
328 if ( GetEventHandler()->ProcessEvent(event
) && !event
.IsAllowed() )
335 //else: nothing to do -- we just don't start to resize
337 else // go ahead with resizing
341 m_colBeingResized
= col
;
342 SetCursor(wxCursor(wxCURSOR_SIZEWE
));
345 //else: we had already done the above when we started
347 UpdateResizingMarker(xPhysical
);
351 void wxHeaderCtrl::EndResizing(int xPhysical
)
353 wxASSERT_MSG( IsResizing(), "shouldn't be called if we're not resizing" );
359 wxHeaderCtrlEvent
event(wxEVT_COMMAND_HEADER_END_RESIZE
, GetId());
360 event
.SetEventObject(this);
361 event
.SetColumn(m_colBeingResized
);
362 event
.SetWidth(ConstrainByMinWidth(m_colBeingResized
, xPhysical
));
364 GetEventHandler()->ProcessEvent(event
);
366 m_colBeingResized
= COL_NONE
;
369 void wxHeaderCtrl::UpdateReorderingMarker(int xPhysical
)
373 wxDCOverlay
dcover(m_overlay
, &dc
);
377 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
379 // draw the phantom position of the column being dragged
380 int x
= xPhysical
- m_dragOffset
;
381 int y
= GetClientSize().y
;
382 dc
.DrawRectangle(x
, 0,
383 GetColumn(m_colBeingReordered
).GetWidth(), y
);
385 // and also a hint indicating where it is going to be inserted if it's
387 unsigned int col
= FindColumnAtPoint(xPhysical
);
388 if ( col
!= COL_NONE
)
390 static const int DROP_MARKER_WIDTH
= 4;
392 dc
.SetBrush(*wxBLUE
);
393 dc
.DrawRectangle(GetColEnd(col
) - DROP_MARKER_WIDTH
/2, 0,
394 DROP_MARKER_WIDTH
, y
);
398 void wxHeaderCtrl::StartReordering(unsigned int col
, int xPhysical
)
400 wxHeaderCtrlEvent
event(wxEVT_COMMAND_HEADER_BEGIN_REORDER
, GetId());
401 event
.SetEventObject(this);
402 event
.SetColumn(col
);
404 if ( GetEventHandler()->ProcessEvent(event
) && !event
.IsAllowed() )
406 // don't start dragging it, nothing to do otherwise
410 m_dragOffset
= xPhysical
- GetColStart(col
);
412 m_colBeingReordered
= col
;
413 SetCursor(wxCursor(wxCURSOR_HAND
));
416 // do not call UpdateReorderingMarker() here: we don't want to give
417 // feedback for reordering until the user starts to really move the mouse
418 // as he might want to just click on the column and not move it at all
421 bool wxHeaderCtrl::EndReordering(int xPhysical
)
423 wxASSERT_MSG( IsReordering(), "shouldn't be called if we're not reordering" );
429 const int colOld
= m_colBeingReordered
,
430 colNew
= FindColumnAtPoint(xPhysical
);
432 m_colBeingReordered
= COL_NONE
;
434 if ( xPhysical
- GetColStart(colOld
) == m_dragOffset
)
437 if ( colNew
!= colOld
)
439 wxHeaderCtrlEvent
event(wxEVT_COMMAND_HEADER_END_REORDER
, GetId());
440 event
.SetEventObject(this);
441 event
.SetColumn(colOld
);
443 const unsigned pos
= GetColumnPos(FindColumnAtPoint(xPhysical
));
444 event
.SetNewOrder(pos
);
446 if ( !GetEventHandler()->ProcessEvent(event
) || event
.IsAllowed() )
448 // do reorder the columns
449 DoMoveCol(colOld
, pos
);
453 // whether we moved the column or not, the user did move the mouse and so
454 // did try to do it so return true
458 // ----------------------------------------------------------------------------
459 // wxHeaderCtrl column reordering
460 // ----------------------------------------------------------------------------
462 void wxHeaderCtrl::DoSetColumnsOrder(const wxArrayInt
& order
)
464 m_colIndices
= order
;
468 wxArrayInt
wxHeaderCtrl::DoGetColumnsOrder() const
473 void wxHeaderCtrl::DoMoveCol(unsigned int idx
, unsigned int pos
)
475 MoveColumnInOrderArray(m_colIndices
, idx
, pos
);
480 // ----------------------------------------------------------------------------
481 // wxHeaderCtrl event handlers
482 // ----------------------------------------------------------------------------
484 BEGIN_EVENT_TABLE(wxHeaderCtrl
, wxHeaderCtrlBase
)
485 EVT_PAINT(wxHeaderCtrl::OnPaint
)
487 EVT_MOUSE_EVENTS(wxHeaderCtrl::OnMouse
)
489 EVT_MOUSE_CAPTURE_LOST(wxHeaderCtrl::OnCaptureLost
)
491 EVT_KEY_DOWN(wxHeaderCtrl::OnKeyDown
)
494 void wxHeaderCtrl::OnPaint(wxPaintEvent
& WXUNUSED(event
))
497 GetClientSize(&w
, &h
);
501 // GetVirtualSize(&vw, NULL);
504 wxAutoBufferedPaintDC
dc(this);
506 dc
.SetBackground(GetBackgroundColour());
509 // account for the horizontal scrollbar offset in the parent window
510 dc
.SetDeviceOrigin(m_scrollOffset
, 0);
512 const unsigned int count
= m_numColumns
;
514 for ( unsigned int i
= 0; i
< count
; i
++ )
516 const unsigned idx
= m_colIndices
[i
];
517 const wxHeaderColumn
& col
= GetColumn(idx
);
518 if ( col
.IsHidden() )
521 int colWidth
= col
.GetWidth();
523 wxHeaderSortIconType sortArrow
;
524 if ( col
.IsSortKey() )
526 sortArrow
= col
.IsSortOrderAscending() ? wxHDR_SORT_ICON_UP
527 : wxHDR_SORT_ICON_DOWN
;
529 else // not sorting by this column
531 sortArrow
= wxHDR_SORT_ICON_NONE
;
537 if ( idx
== m_hover
)
538 state
= wxCONTROL_CURRENT
;
542 state
= wxCONTROL_DISABLED
;
546 state
|= wxCONTROL_SPECIAL
;
548 wxHeaderButtonParams params
;
549 params
.m_labelText
= col
.GetTitle();
550 params
.m_labelBitmap
= col
.GetBitmap();
551 params
.m_labelAlignment
= col
.GetAlignment();
556 // colWidth = wxMax( colWidth, vw - xpos );
557 state
|= wxCONTROL_DIRTY
;
561 wxRendererNative::Get().DrawHeaderButton
565 wxRect(xpos
, 0, colWidth
, h
),
575 void wxHeaderCtrl::OnCaptureLost(wxMouseCaptureLostEvent
& WXUNUSED(event
))
581 void wxHeaderCtrl::OnKeyDown(wxKeyEvent
& event
)
583 if ( event
.GetKeyCode() == WXK_ESCAPE
)
597 void wxHeaderCtrl::OnMouse(wxMouseEvent
& mevent
)
599 // do this in advance to allow simply returning if we're not interested,
600 // we'll undo it if we do handle the event below
604 // account for the control displacement
605 const int xPhysical
= mevent
.GetX();
606 const int xLogical
= xPhysical
- m_scrollOffset
;
608 // first deal with the [continuation of any] dragging operations in
612 if ( mevent
.LeftUp() )
613 EndResizing(xPhysical
);
614 else // update the live separator position
615 StartOrContinueResizing(m_colBeingResized
, xPhysical
);
620 if ( IsReordering() )
622 if ( !mevent
.LeftUp() )
624 // update the column position
625 UpdateReorderingMarker(xPhysical
);
630 // finish reordering and continue to generate a click event below if we
631 // didn't really reorder anything
632 if ( EndReordering(xPhysical
) )
637 // find if the event is over a column at all
639 const unsigned col
= mevent
.Leaving()
640 ? (onSeparator
= false, COL_NONE
)
641 : FindColumnAtPoint(xLogical
, &onSeparator
);
644 // update the highlighted column if it changed
645 if ( col
!= m_hover
)
647 const unsigned hoverOld
= m_hover
;
650 RefreshColIfNotNone(hoverOld
);
651 RefreshColIfNotNone(m_hover
);
654 // update mouse cursor as it moves around
655 if ( mevent
.Moving() )
657 SetCursor(onSeparator
? wxCursor(wxCURSOR_SIZEWE
) : wxNullCursor
);
661 // all the other events only make sense when they happen over a column
662 if ( col
== COL_NONE
)
666 // enter various dragging modes on left mouse press
667 if ( mevent
.LeftDown() )
671 // start resizing the column
672 wxASSERT_MSG( !IsResizing(), "reentering column resize mode?" );
673 StartOrContinueResizing(col
, xPhysical
);
675 else // on column itself
677 // start dragging the column
678 wxASSERT_MSG( !IsReordering(), "reentering column move mode?" );
680 StartReordering(col
, xPhysical
);
686 // determine the type of header event corresponding to click events
687 wxEventType evtType
= wxEVT_NULL
;
688 const bool click
= mevent
.ButtonUp(),
689 dblclk
= mevent
.ButtonDClick();
690 if ( click
|| dblclk
)
692 switch ( mevent
.GetButton() )
694 case wxMOUSE_BTN_LEFT
:
695 // treat left double clicks on separator specially
696 if ( onSeparator
&& dblclk
)
698 evtType
= wxEVT_COMMAND_HEADER_SEPARATOR_DCLICK
;
700 else // not double click on separator
702 evtType
= click
? wxEVT_COMMAND_HEADER_CLICK
703 : wxEVT_COMMAND_HEADER_DCLICK
;
707 case wxMOUSE_BTN_RIGHT
:
708 evtType
= click
? wxEVT_COMMAND_HEADER_RIGHT_CLICK
709 : wxEVT_COMMAND_HEADER_RIGHT_DCLICK
;
712 case wxMOUSE_BTN_MIDDLE
:
713 evtType
= click
? wxEVT_COMMAND_HEADER_MIDDLE_CLICK
714 : wxEVT_COMMAND_HEADER_MIDDLE_DCLICK
;
718 // ignore clicks from other mouse buttons
723 if ( evtType
== wxEVT_NULL
)
726 wxHeaderCtrlEvent
event(evtType
, GetId());
727 event
.SetEventObject(this);
728 event
.SetColumn(col
);
730 if ( GetEventHandler()->ProcessEvent(event
) )
734 #endif // wxHAS_GENERIC_HEADERCTRL
736 #endif // wxUSE_HEADERCTRL