diff options
author | Palmer <palmer@lindenlab.com> | 2009-12-08 10:00:32 -0800 |
---|---|---|
committer | Palmer <palmer@lindenlab.com> | 2009-12-08 10:00:32 -0800 |
commit | 74f2cb2a70ddad7fe8819fd6855831e0615dc8d5 (patch) | |
tree | 61f2ce7a6cfb5963b7517a582164047a6833757b /indra/llui/llview.h | |
parent | cd138869d5bfcf40d3d13d7b887e36263e2919d9 (diff) | |
parent | e07ef0d0e0e8cbd58afd4c6ee970634bd2f783e7 (diff) |
Grabbed more viewer 2 changes that should fix parabuild problem
Diffstat (limited to 'indra/llui/llview.h')
-rw-r--r-- | indra/llui/llview.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/indra/llui/llview.h b/indra/llui/llview.h index c611e4c85f..f8460f5361 100644 --- a/indra/llui/llview.h +++ b/indra/llui/llview.h @@ -511,10 +511,15 @@ public: virtual void handleReshape(const LLRect& rect, bool by_user); virtual void dirtyRect(); - virtual void notifyParent(const LLSD& info); - virtual void notifyChildren(const LLSD& info); + //send custom notification to LLView parent + virtual S32 notifyParent(const LLSD& info); - virtual void notify(const LLSD& info) {}; + //send custom notification to all view childrend + // return true if _any_ children return true. otherwise false. + virtual bool notifyChildren(const LLSD& info); + + //send custom notification to current view + virtual S32 notify(const LLSD& info) { return 0;}; static const LLViewDrawContext& getDrawContext(); |