support wxListCtrl::GetViewRect() in report view too; test it in the sample (#9484)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@54412 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2008-06-29 00:12:12 +00:00
parent 24b67be4c6
commit 929b79014a
5 changed files with 46 additions and 14 deletions

View File

@@ -368,6 +368,7 @@ All (GUI):
- Fixed wxPixelData<wxImage> compilation (Leonardo Fernandes).
- Added wxImage::GetType() (troelsk).
- Added wxGenericStaticBitmap suitable for display of large bitmaps.
- Support wxListCtrl::GetViewRect() in report view too.
wxGTK:

View File

@@ -90,6 +90,7 @@ BEGIN_EVENT_TABLE(MyFrame, wxFrame)
EVT_MENU(LIST_TOGGLE_MULTI_SEL, MyFrame::OnToggleMultiSel)
EVT_MENU(LIST_SHOW_COL_INFO, MyFrame::OnShowColInfo)
EVT_MENU(LIST_SHOW_SEL_INFO, MyFrame::OnShowSelInfo)
EVT_MENU(LIST_SHOW_VIEW_RECT, MyFrame::OnShowViewRect)
EVT_MENU(LIST_FREEZE, MyFrame::OnFreeze)
EVT_MENU(LIST_THAW, MyFrame::OnThaw)
EVT_MENU(LIST_TOGGLE_LINES, MyFrame::OnToggleLines)
@@ -234,6 +235,7 @@ MyFrame::MyFrame(const wxChar *title)
menuList->AppendSeparator();
menuList->Append(LIST_SHOW_COL_INFO, _T("Show &column info\tCtrl-C"));
menuList->Append(LIST_SHOW_SEL_INFO, _T("Show &selected items\tCtrl-S"));
menuList->Append(LIST_SHOW_VIEW_RECT, _T("Show &view rect"));
menuList->AppendSeparator();
menuList->Append(LIST_SORT, _T("Sor&t\tCtrl-T"));
menuList->AppendSeparator();
@@ -643,6 +645,13 @@ void MyFrame::OnShowSelInfo(wxCommandEvent& WXUNUSED(event))
}
}
void MyFrame::OnShowViewRect(wxCommandEvent& WXUNUSED(event))
{
const wxRect r = m_listCtrl->GetViewRect();
wxLogMessage("View rect: (%d, %d)-(%d, %d)",
r.GetLeft(), r.GetTop(), r.GetRight(), r.GetBottom());
}
void MyFrame::OnShowColInfo(wxCommandEvent& WXUNUSED(event))
{
int count = m_listCtrl->GetColumnCount();

View File

@@ -135,6 +135,7 @@ protected:
void OnToggleMultiSel(wxCommandEvent& event);
void OnShowColInfo(wxCommandEvent& event);
void OnShowSelInfo(wxCommandEvent& event);
void OnShowViewRect(wxCommandEvent& event);
void OnFreeze(wxCommandEvent& event);
void OnThaw(wxCommandEvent& event);
void OnToggleLines(wxCommandEvent& event);
@@ -202,6 +203,7 @@ enum
LIST_TOGGLE_FIRST,
LIST_SHOW_COL_INFO,
LIST_SHOW_SEL_INFO,
LIST_SHOW_VIEW_RECT,
LIST_GOTO,
LIST_FOCUS_LAST,
LIST_FREEZE,

View File

@@ -4110,8 +4110,7 @@ int wxListMainWindow::GetSelectedItemCount() const
wxRect wxListMainWindow::GetViewRect() const
{
wxASSERT_MSG( !HasFlag(wxLC_REPORT | wxLC_LIST),
_T("wxListCtrl::GetViewRect() only works in icon mode") );
wxASSERT_MSG( !HasFlag(wxLC_LIST), "not implemented for list view" );
// we need to find the longest/tallest label
wxCoord xMax = 0, yMax = 0;

View File

@@ -1082,9 +1082,13 @@ bool wxListCtrl::SetItemPtrData(long item, wxUIntPtr data)
wxRect wxListCtrl::GetViewRect() const
{
wxASSERT_MSG( !HasFlag(wxLC_REPORT | wxLC_LIST),
_T("wxListCtrl::GetViewRect() only works in icon mode") );
wxRect rect;
// ListView_GetViewRect() can only be used in icon and small icon views
// (this is documented in MSDN and, indeed, it returns bogus results in
// report view, at least with comctl32.dll v6 under Windows 2003)
if ( HasFlag(wxLC_ICON | wxLC_SMALL_ICON) )
{
RECT rc;
if ( !ListView_GetViewRect(GetHwnd(), &rc) )
{
@@ -1093,8 +1097,25 @@ wxRect wxListCtrl::GetViewRect() const
wxZeroMemory(rc);
}
wxRect rect;
wxCopyRECTToRect(rc, rect);
}
else if ( HasFlag(wxLC_REPORT) )
{
const long count = GetItemCount();
if ( count )
{
GetItemRect(wxMin(GetTopItem() + GetCountPerPage(), count - 1), rect);
// extend the rectangle to start at the top (we include the column
// headers, if any, for compatibility with the generic version)
rect.height += rect.y;
rect.y = 0;
}
}
else
{
wxFAIL_MSG( _T("not implemented in this mode") );
}
return rect;
}