Merge branch 'qt_list_ctrl_hit_test_offset' of https://github.com/GeoTeric/wxWidgets into qt-listctrl

Fix wxListCtrl::HitTest() which was off roughly by 1 due to not taking
into account the header height.

Closes https://github.com/wxWidgets/wxWidgets/pull/1350
This commit is contained in:
Vadim Zeitlin
2019-09-22 01:20:42 +02:00
3 changed files with 17 additions and 5 deletions

View File

@@ -1543,7 +1543,8 @@ void MyListCtrl::OnContextMenu(wxContextMenuEvent& event)
{
point = ScreenToClient(point);
}
ShowContextMenu(point);
int flags;
ShowContextMenu(point, HitTest(point, flags));
}
else
{
@@ -1555,10 +1556,10 @@ void MyListCtrl::OnContextMenu(wxContextMenuEvent& event)
}
#endif
void MyListCtrl::ShowContextMenu(const wxPoint& pos)
void MyListCtrl::ShowContextMenu(const wxPoint& pos, long item)
{
wxMenu menu;
menu.Append(wxID_ANY, wxString::Format("Menu for item %ld", item));
menu.Append(wxID_ABOUT, "&About");
menu.AppendSeparator();
menu.Append(wxID_EXIT, "E&xit");

View File

@@ -78,7 +78,7 @@ public:
virtual bool IsItemChecked(long item) const wxOVERRIDE;
private:
void ShowContextMenu(const wxPoint& pos);
void ShowContextMenu(const wxPoint& pos, long item);
wxLog *m_logOld;
void SetColumnImage(int col, int image);

View File

@@ -978,6 +978,11 @@ public:
QTreeView::paintEvent(event);
}
int GetHeaderHeight() const
{
return header() != NULL ? header()->height() : 0;
}
private:
void itemClicked(const QModelIndex &index);
void itemActivated(const QModelIndex &index);
@@ -1319,6 +1324,7 @@ bool wxListCtrl::GetItemRect(long item, wxRect& rect, int WXUNUSED(code)) const
QRect first = m_qtTreeWidget->visualRect(m_model->index(item, 0));
QRect last = m_qtTreeWidget->visualRect(m_model->index(item, columnCount-1));
rect = wxQtConvertRect(first.united(last));
rect.Offset(0, m_qtTreeWidget->GetHeaderHeight());
return true;
}
@@ -1336,6 +1342,7 @@ bool wxListCtrl::GetSubItemRect(long item,
const QModelIndex index = m_qtTreeWidget->model()->index(item, subItem);
rect = wxQtConvertRect(m_qtTreeWidget->visualRect(index));
rect.Offset(0, m_qtTreeWidget->GetHeaderHeight());
return true;
}
@@ -1735,7 +1742,11 @@ long wxListCtrl::HitTest(
long* ptrSubItem
) const
{
QModelIndex index = m_qtTreeWidget->indexAt(wxQtConvertPoint(point));
// Remove the header height as qt expects point relative to the table sub widget
QPoint qPoint = wxQtConvertPoint(point);
qPoint.setY(qPoint.y() - m_qtTreeWidget->GetHeaderHeight());
QModelIndex index = m_qtTreeWidget->indexAt(qPoint);
if ( index.isValid() )
{
flags = wxLIST_HITTEST_ONITEM;