diff options
author | Richard Nelson <richard@lindenlab.com> | 2007-02-17 03:02:16 +0000 |
---|---|---|
committer | Richard Nelson <richard@lindenlab.com> | 2007-02-17 03:02:16 +0000 |
commit | 73bc0fb42b5bcd80030d9f30d5cb57ec2397ba08 (patch) | |
tree | e7c0b2e22d4719123fd688e49a16b76a084c3f77 /indra/newview/llviewermenu.h | |
parent | 12ac04231b8d358e70c830f7958f7efbc0f7c0d1 (diff) |
merge -r 56779:58057 /branches/selection_management
Diffstat (limited to 'indra/newview/llviewermenu.h')
-rw-r--r-- | indra/newview/llviewermenu.h | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/indra/newview/llviewermenu.h b/indra/newview/llviewermenu.h index 182190ccdf..f2d7e360c7 100644 --- a/indra/newview/llviewermenu.h +++ b/indra/newview/llviewermenu.h @@ -18,6 +18,8 @@ class LLUICtrl; class LLView; +class LLParcelSelection; +class LLObjectSelection; struct LLResourceData { @@ -126,11 +128,18 @@ class LLPermissions; class LLViewerMenuHolderGL : public LLMenuHolderGL { public: - LLViewerMenuHolderGL() : LLMenuHolderGL() {}; + LLViewerMenuHolderGL(); virtual BOOL hideMenus(); + + void setParcelSelection(LLHandle<LLParcelSelection> selection); + void setObjectSelection(LLHandle<LLObjectSelection> selection); + virtual const LLRect getMenuRect() const; - //virtual BOOL handleKey(KEY key, MASK mask, BOOL called_from_parent); + +protected: + LLHandle<LLParcelSelection> mParcelSelection; + LLHandle<LLObjectSelection> mObjectSelection; }; extern const LLString SAVE_INTO_INVENTORY; |