diff options
author | mberezhnoy <mberezhnoy@productengine.com> | 2013-01-24 10:41:32 +0200 |
---|---|---|
committer | mberezhnoy <mberezhnoy@productengine.com> | 2013-01-24 10:41:32 +0200 |
commit | a15854213b6212b291099b429867f198b572f9ae (patch) | |
tree | ff17e9c7e38cb2d723a206679cbeb5585f9db08f /indra/llui/llmenugl.h | |
parent | 651f230500646dfcd695a9caa0650f81fa29b9bf (diff) | |
parent | a0112d6d78b17c5771b7b151d2fb9340bece3137 (diff) |
merging into latest changes
Diffstat (limited to 'indra/llui/llmenugl.h')
-rw-r--r-- | indra/llui/llmenugl.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/llui/llmenugl.h b/indra/llui/llmenugl.h index 3e03232e92..c57e0f0267 100644 --- a/indra/llui/llmenugl.h +++ b/indra/llui/llmenugl.h @@ -478,6 +478,12 @@ public: // remove all items on the menu void empty( void ); + // erase group of items from menu + void erase( S32 begin, S32 end, bool arrange = true ); + + // add new item at position + void insert( S32 begin, LLView * ctrl, bool arrange = true ); + void setItemLastSelected(LLMenuItemGL* item); // must be in menu U32 getItemCount(); // number of menu items LLMenuItemGL* getItem(S32 number); // 0 = first item |