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/llfloatertools.h | |
parent | 12ac04231b8d358e70c830f7958f7efbc0f7c0d1 (diff) |
merge -r 56779:58057 /branches/selection_management
Diffstat (limited to 'indra/newview/llfloatertools.h')
-rw-r--r-- | indra/newview/llfloatertools.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/indra/newview/llfloatertools.h b/indra/newview/llfloatertools.h index e13e15ba01..7c85444578 100644 --- a/indra/newview/llfloatertools.h +++ b/indra/newview/llfloatertools.h @@ -25,6 +25,11 @@ class LLPanelFace; class LLPanelLandInfo; class LLComboBox; class LLVolumeSliderCtrl; +class LLParcelSelection; +class LLObjectSelection; + +typedef LLHandle<LLParcelSelection> LLParcelSelectionHandle; +typedef LLHandle<LLObjectSelection> LLObjectSelectionHandle; class LLFloaterTools : public LLFloater @@ -42,6 +47,7 @@ public: LLFloaterTools(); virtual ~LLFloaterTools(); + virtual void onOpen(); virtual void onClose(bool app_quitting); virtual BOOL canClose(); @@ -156,7 +162,10 @@ public: LLPanelLandInfo *mPanelLandInfo; LLTabContainer* mTabLand; - + + LLParcelSelectionHandle mParcelSelection; + LLObjectSelectionHandle mObjectSelection; + private: BOOL mDirty; S32 mSmallHeight; |