]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/stc/stc.h
Made widgets sample take up less space
[wxWidgets.git] / include / wx / stc / stc.h
index 1149ea620d979e1b28e2c595f06270b5b0df20fc..ab01bf1887fe284c910f0667dcaa590534bfc63c 100644 (file)
@@ -1799,6 +1799,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; }
+
+
 //----------------------------------------------------------------------