blob: aee3e65329d8af949e4cf263c5d67a11f29ae829 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
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
|