]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/treectrl.h
Add a possibility to beep on no match to wxGenericTreeCtrl.
[wxWidgets.git] / interface / wx / treectrl.h
index 4587dfa9deba9f35d3dfecf236cd17c5c51b4b08..9b25d1a7e544e5d3ae442260fdc168cdb24682e4 100644 (file)
@@ -339,6 +339,18 @@ public:
     virtual wxTextCtrl *EditLabel(const wxTreeItemId& item,
                                   wxClassInfo* textCtrlClass = wxCLASSINFO(wxTextCtrl));
 
+    /**
+        Enable or disable a beep if there is no match for the currently
+        entered text when searching for the item from keyboard.
+
+        The default is to not beep in this case except in wxMSW where the
+        beep is always generated by the native control and cannot be disabled,
+        i.e. calls to this function do nothing there.
+
+        @since 2.9.5
+    */
+    void EnableBellOnNoMatch(bool on = true);
+
     /**
         Ends label editing. If @a cancelEdit is @true, the edit will be
         cancelled.