]> git.saurik.com Git - wxWidgets.git/commitdiff
Added ForceRefresh() to request immediate repainting of a grid.
authorMichael Bedward <mbedward@ozemail.com.au>
Fri, 21 Jul 2000 06:51:22 +0000 (06:51 +0000)
committerMichael Bedward <mbedward@ozemail.com.au>
Fri, 21 Jul 2000 06:51:22 +0000 (06:51 +0000)
Calling Refresh() doesn't do this because of our minimal OnPaint
handler (to reduce screen flicker).

Setting of position coords for wxGridEvents now takes account of
row and col label sizes.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@7798 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/generic/grid.h
src/generic/grid.cpp

index 9709c570c5ee8e237eded1fd85fceee315864a3a..050469cd02c6a695c407ca495b3dc184c921ddbf 100644 (file)
@@ -1069,6 +1069,15 @@ public:
 
     int      GetBatchCount() { return m_batchCount; }
 
+    // Use this, rather than wxWindow::Refresh(), to force an
+    // immediate repainting of the grid. Has no effect if you are
+    // already inside a BeginBatch / EndBatch block.
+    //
+    // This function is necessary because wxGrid has a minimal OnPaint()
+    // handler to reduce screen flicker.
+    //
+    void     ForceRefresh();
+    
 
     // ------ edit control functions
     //
index 1b31ef10db6a5def3afa46ef71c5f19202971b97..e5ab724cad52b48d717ea792328cb5cd5ed1d7b5 100644 (file)
@@ -5240,7 +5240,8 @@ bool wxGrid::SendEvent( const wxEventType type,
                                  type,
                                  this,
                                  rowOrCol,
-                                 mouseEv.GetX(), mouseEv.GetY(),
+                                 mouseEv.GetX() + GetColLabelSize(),
+                                 mouseEv.GetY() + GetRowLabelSize(),
                                  mouseEv.ControlDown(),
                                  mouseEv.ShiftDown(),
                                  mouseEv.AltDown(),
@@ -5270,7 +5271,8 @@ bool wxGrid::SendEvent( const wxEventType type,
                              type,
                              this,
                              row, col,
-                             mouseEv.GetX(), mouseEv.GetY(),
+                             mouseEv.GetX() + GetColLabelSize(),
+                             mouseEv.GetY() + GetRowLabelSize(),
                              FALSE,
                              mouseEv.ControlDown(),
                              mouseEv.ShiftDown(),
@@ -6150,6 +6152,17 @@ void wxGrid::EndBatch()
     }
 }
 
+// Use this, rather than wxWindow::Refresh(), to force an immediate
+// repainting of the grid. Has no effect if you are already inside a
+// BeginBatch / EndBatch block.
+//
+void wxGrid::ForceRefresh()
+{
+    BeginBatch();
+    EndBatch();
+}
+
+
 //
 // ------ Edit control functions
 //