Repaired semantics of EVT_GRID_SELECT_CELL.
Added OnKeyUp handler for selection with Shift+arrow keys. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7013 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1052,11 +1052,11 @@ public:
|
||||
void EndBatch()
|
||||
{
|
||||
if ( m_batchCount > 0 )
|
||||
{
|
||||
m_batchCount--;
|
||||
if ( !m_batchCount )
|
||||
Refresh();
|
||||
}
|
||||
{
|
||||
m_batchCount--;
|
||||
if ( !m_batchCount )
|
||||
Refresh();
|
||||
}
|
||||
}
|
||||
|
||||
int GetBatchCount() { return m_batchCount; }
|
||||
@@ -1713,6 +1713,7 @@ protected:
|
||||
void OnPaint( wxPaintEvent& );
|
||||
void OnSize( wxSizeEvent& );
|
||||
void OnKeyDown( wxKeyEvent& );
|
||||
void OnKeyUp( wxKeyEvent& );
|
||||
void OnEraseBackground( wxEraseEvent& );
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user