diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2015-03-13 16:38:23 -0400 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2015-03-13 16:38:23 -0400 |
commit | fb072c91485a484e3d0740113ee753b58c439900 (patch) | |
tree | f01ed448852e8093be5909e5190a612ca09269ea /indra/llui/llfolderviewitem.h | |
parent | 738195a98d3009becd5dbeaae7f77e70fff7de3e (diff) |
MAINT-4980 WIP - add context menu filtering based on the selection group
Diffstat (limited to 'indra/llui/llfolderviewitem.h')
-rwxr-xr-x[-rw-r--r--] | indra/llui/llfolderviewitem.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/llui/llfolderviewitem.h b/indra/llui/llfolderviewitem.h index 0cd20a0f2d..5ad5731cad 100644..100755 --- a/indra/llui/llfolderviewitem.h +++ b/indra/llui/llfolderviewitem.h @@ -454,5 +454,12 @@ public: template<typename SORT_FUNC> void sortItems(const SORT_FUNC& func) { mItems.sort(func); } }; +typedef std::deque<LLFolderViewItem*> folder_view_item_deque; + +class LLFolderViewGroupedItemModel: public LLRefCount +{ +public: + virtual void groupFilterContextMenu(folder_view_item_deque& selected_items, LLMenuGL& menu) = 0; +}; #endif // LLFOLDERVIEWITEM_H |