1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-09 23:34:20 +00:00
This commit is contained in:
bill auger 2025-12-25 18:58:52 +00:00 committed by GitHub
commit 32affba4ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -255,13 +255,14 @@ public:
/** Returns a string to uniquely identify this item.
If you're planning on using the TreeView::getOpennessState() method, then
these strings will be used to identify which nodes are open. The string
should be unique amongst the item's sibling items, but it's ok for there
to be duplicates at other levels of the tree.
If you're planning on using the TreeView::getOpennessState() or
TreeView::getItemIdentifierString() methods, then these strings will be used
to identify which nodes are open. The string should be unique amongst the item's
sibling items, but it's ok for there to be duplicates at other levels of the tree.
If you're not going to store the state, then it's ok not to bother implementing
this method.
If you're not going to store the openness state nor search for TreeViewItems with
the TreeView::findItemFromIdentifierString() method, then it's ok not to bother
implementing this method.
*/
virtual String getUniqueName() const;