added EVT_DATAVIEW_CACHE_HINT event (closes #9891)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61331 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-07-05 15:21:52 +00:00
parent c2e5ea68a1
commit 47a8b1e1ff
5 changed files with 40 additions and 2 deletions

View File

@@ -2318,6 +2318,8 @@ public:
Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_DROP_POSSIBLE event.
@event{EVT_DATAVIEW_ITEM_DROP(id, func)}
Process a @c wxEVT_COMMAND_DATAVIEW_ITEM_DROP event.
@event{EVT_DATAVIEW_CACHE_HINT(id, func)}
Process a @c wxEVT_COMMAND_DATAVIEW_CACHE_HINT event.
@endEventTable
@library{wxadv}
@@ -2419,5 +2421,15 @@ public:
Gets the data buffer for a drop data transfer.
*/
void *GetDataBuffer() const;
/**
Return the first row that will be displayed.
*/
int GetCacheFrom() const;
/**
Return the last row that will be displayed.
*/
int GetCacheTo() const;
};