]> git.saurik.com Git - wxWidgets.git/commitdiff
update the caret bitmap size in EVT_SIZE (patch 990361)
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 25 Jul 2004 16:32:24 +0000 (16:32 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 25 Jul 2004 16:32:24 +0000 (16:32 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28483 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

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

index d840b7d8c86770a7c5ca6e8b3cd5d68242f59875..96677b46d13a34e560567a22bc1390594c5f00cf 100644 (file)
@@ -59,6 +59,7 @@ protected:
     virtual void DoShow();
     virtual void DoHide();
     virtual void DoMove();
+    virtual void DoSize();
 
     // blink the caret once
     void Blink();
index 03040e1742e8efd0b505dc0e91da794744b2074f..08dd83006822b8f6fd3b5d479638afe4bab605d3 100644 (file)
@@ -150,6 +150,23 @@ void wxCaret::DoMove()
     //else: will be shown at the correct location when it is shown
 }
 
+void wxCaret::DoSize()
+{
+    int countVisible = m_countVisible;
+    if (countVisible > 0)
+    {
+        m_countVisible = 0;
+        DoHide();
+    }
+    // Change bitmap size
+    m_bmpUnderCaret = wxBitmap(m_width, m_height);
+    if (countVisible > 0)
+    {
+        m_countVisible = countVisible;
+        DoShow();
+    }
+}
+
 // ----------------------------------------------------------------------------
 // handling the focus
 // ----------------------------------------------------------------------------