summaryrefslogtreecommitdiff
path: root/indra/newview/llpanelland.h
diff options
context:
space:
mode:
authorJames Cook <james@lindenlab.com>2007-01-02 08:33:20 +0000
committerJames Cook <james@lindenlab.com>2007-01-02 08:33:20 +0000
commit420b91db29485df39fd6e724e782c449158811cb (patch)
treeb471a94563af914d3ed3edd3e856d21cb1b69945 /indra/newview/llpanelland.h
Print done when done.
Diffstat (limited to 'indra/newview/llpanelland.h')
-rw-r--r--indra/newview/llpanelland.h54
1 files changed, 54 insertions, 0 deletions
diff --git a/indra/newview/llpanelland.h b/indra/newview/llpanelland.h
new file mode 100644
index 0000000000..aee3e65329
--- /dev/null
+++ b/indra/newview/llpanelland.h
@@ -0,0 +1,54 @@
+/**
+ * @file llpanelland.h
+ * @brief Land information in the tool floater, NOT the "About Land" floater
+ *
+ * Copyright (c) 2002-$CurrentYear$, Linden Research, Inc.
+ * $License$
+ */
+
+#ifndef LL_LLPANELLAND_H
+#define LL_LLPANELLAND_H
+
+#include "llpanel.h"
+
+class LLTextBox;
+class LLCheckBoxCtrl;
+class LLButton;
+class LLSpinCtrl;
+class LLLineEditor;
+class LLPanelLandSelectObserver;
+
+class LLPanelLandInfo
+: public LLPanel
+{
+public:
+ LLPanelLandInfo(const std::string& name);
+ virtual ~LLPanelLandInfo();
+
+ void refresh();
+ static void refreshAll();
+
+protected:
+ static void onClickClaim(void*);
+ static void onClickRelease(void*);
+ static void onClickDivide(void*);
+ static void onClickJoin(void*);
+ static void onClickAbout(void*);
+
+protected:
+ //LLTextBox* mTextPriceLabel;
+ //LLTextBox* mTextPrice;
+
+ //LLButton* mBtnClaimLand;
+ //LLButton* mBtnReleaseLand;
+ //LLButton* mBtnDivideLand;
+ //LLButton* mBtnJoinLand;
+ //LLButton* mBtnAbout;
+
+ virtual BOOL postBuild();
+
+ static LLPanelLandSelectObserver* sObserver;
+ static LLPanelLandInfo* sInstance;
+};
+
+#endif