mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 01:29:42 -06:00
Upgrade WX to r74856, mainly to support @2x.
This commit is contained in:
9
Externals/wxWidgets3/include/wx/treectrl.h
vendored
9
Externals/wxWidgets3/include/wx/treectrl.h
vendored
@ -5,7 +5,6 @@
|
||||
// Modified by:
|
||||
// Created:
|
||||
// Copyright: (c) Karsten Ballueder
|
||||
// RCS-ID: $Id: treectrl.h 70345 2012-01-15 01:05:28Z VZ $
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
@ -289,10 +288,10 @@ public:
|
||||
// delete this item and associated data if any
|
||||
virtual void Delete(const wxTreeItemId& item) = 0;
|
||||
// delete all children (but don't delete the item itself)
|
||||
// NB: this won't send wxEVT_COMMAND_TREE_ITEM_DELETED events
|
||||
// NB: this won't send wxEVT_TREE_ITEM_DELETED events
|
||||
virtual void DeleteChildren(const wxTreeItemId& item) = 0;
|
||||
// delete all items from the tree
|
||||
// NB: this won't send wxEVT_COMMAND_TREE_ITEM_DELETED events
|
||||
// NB: this won't send wxEVT_TREE_ITEM_DELETED events
|
||||
virtual void DeleteAllItems() = 0;
|
||||
|
||||
// expand this item
|
||||
@ -349,6 +348,10 @@ public:
|
||||
virtual void EndEditLabel(const wxTreeItemId& item,
|
||||
bool discardChanges = false) = 0;
|
||||
|
||||
// Enable or disable beep when incremental match doesn't find any item.
|
||||
// Only implemented in the generic version currently.
|
||||
virtual void EnableBellOnNoMatch(bool WXUNUSED(on) = true) { }
|
||||
|
||||
// sorting
|
||||
// -------
|
||||
|
||||
|
Reference in New Issue
Block a user