]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/stc.h.in
Three more attempts to get metal look.
[wxWidgets.git] / src / stc / stc.h.in
index 2a1d1314a54555f1a349b4aebc896e7fcc2666a8..f7b01cb837257df98e527e0a1cc98e880a46087b 100644 (file)
@@ -149,6 +149,11 @@ public:
     // Set the horizontal scrollbar to use instead of the ont that's built-in.
     void SetHScrollBar(wxScrollBar* bar) { m_hScrollBar = bar; }
 
+    // Can be used to prevent the EVT_CHAR handler from adding the char
+    bool GetLastKeydownProcessed() { return m_lastKeyDownConsumed; }
+    void SetLastKeydownProcessed(bool val) { m_lastKeyDownConsumed = val; }
+
+
 //----------------------------------------------------------------------