#include "wx/headerctrl.h"
#include "wx/rearrangectrl.h"
+#include "wx/renderer.h"
namespace
{
// wxHeaderColumnsRearrangeDialog: dialog for customizing our columns
// ----------------------------------------------------------------------------
+#if wxUSE_REARRANGECTRL
+
class wxHeaderColumnsRearrangeDialog : public wxRearrangeDialog
{
public:
}
};
+#endif // wxUSE_REARRANGECTRL
+
} // anonymous namespace
// ============================================================================
DoSetCount(count);
}
+int wxHeaderCtrlBase::GetColumnTitleWidth(const wxHeaderColumn& col)
+{
+ int w = wxWindowBase::GetTextExtent(col.GetTitle()).x;
+
+ // add some margin:
+ w += wxRendererNative::Get().GetHeaderButtonMargin(this);
+
+ // if a bitmap is used, add space for it and 2px border:
+ wxBitmap bmp = col.GetBitmap();
+ if ( bmp.IsOk() )
+ w += bmp.GetWidth() + 2;
+
+ return w;
+}
+
// ----------------------------------------------------------------------------
// wxHeaderCtrlBase event handling
// ----------------------------------------------------------------------------
void wxHeaderCtrlBase::OnSeparatorDClick(wxHeaderCtrlEvent& event)
{
const unsigned col = event.GetColumn();
+ const wxHeaderColumn& column = GetColumn(col);
+
+ if ( !column.IsResizeable() )
+ {
+ event.Skip();
+ return;
+ }
- int w = wxWindowBase::GetTextExtent(GetColumn(col).GetTitle()).x;
- w += 4*GetCharWidth(); // add some arbitrary margins around text
+ int w = GetColumnTitleWidth(column);
if ( !UpdateColumnWidthToFit(col, w) )
event.Skip();
{
RemoveSortIndicator();
- m_cols[idx].SetAsSortKey(ascending);
+ m_cols[idx].SetSortOrder(ascending);
m_sortKey = idx;
UpdateColumn(idx);