diff options
Diffstat (limited to 'indra/newview/lluilistener.h')
-rw-r--r-- | indra/newview/lluilistener.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/indra/newview/lluilistener.h b/indra/newview/lluilistener.h index 0df2afb3fe..671eb5f29b 100644 --- a/indra/newview/lluilistener.h +++ b/indra/newview/lluilistener.h @@ -39,12 +39,17 @@ class LLUIListener: public LLEventAPI public: LLUIListener(); -// FIXME These fields are intended to be private, changed here to support very hacky code in llluamanager.cpp -public: +private: void call(const LLSD& event); - void getValue(const LLSD&event) const; + void callables(const LLSD& event) const; + void getValue(const LLSD& event) const; + void getParents(const LLSD& event) const; + + void addMenu(const LLSD&event) const; + void addMenuBranch(const LLSD&event) const; + void addMenuItem(const LLSD&event) const; + void addMenuSeparator(const LLSD&event) const; - private: F64 mLastUntrustedThrottle {0}; F64 mLastMinThrottle {0}; }; |