diff options
Diffstat (limited to 'linden/indra/newview/llfloaterparcel.h')
-rw-r--r-- | linden/indra/newview/llfloaterparcel.h | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/linden/indra/newview/llfloaterparcel.h b/linden/indra/newview/llfloaterparcel.h new file mode 100644 index 0000000..e0e8b9a --- /dev/null +++ b/linden/indra/newview/llfloaterparcel.h | |||
@@ -0,0 +1,53 @@ | |||
1 | /** | ||
2 | * @file llfloaterparcelinfo.h | ||
3 | * @brief LLFloaterParcelInfo class definition | ||
4 | * | ||
5 | * $LicenseInfo:firstyear=2002&license=internal$ | ||
6 | * | ||
7 | * Copyright (c) 2002-2007, Linden Research, Inc. | ||
8 | * | ||
9 | * The following source code is PROPRIETARY AND CONFIDENTIAL. Use of | ||
10 | * this source code is governed by the Linden Lab Source Code Disclosure | ||
11 | * Agreement ("Agreement") previously entered between you and Linden | ||
12 | * Lab. By accessing, using, copying, modifying or distributing this | ||
13 | * software, you acknowledge that you have been informed of your | ||
14 | * obligations under the Agreement and agree to abide by those obligations. | ||
15 | * | ||
16 | * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO | ||
17 | * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY, | ||
18 | * COMPLETENESS OR PERFORMANCE. | ||
19 | * $/LicenseInfo$ | ||
20 | */ | ||
21 | |||
22 | /** | ||
23 | * Parcel information as shown in a floating window from a sl-url. | ||
24 | * Just a wrapper for LLPanelPlace, shared with the Find directory. | ||
25 | */ | ||
26 | |||
27 | #ifndef LL_FLOATERPARCELINFO_H | ||
28 | #define LL_FLOATERPARCELINFO_H | ||
29 | |||
30 | #include "llfloater.h" | ||
31 | |||
32 | class LLPanelPlace; | ||
33 | |||
34 | class LLFloaterParcelInfo | ||
35 | : public LLFloater | ||
36 | { | ||
37 | public: | ||
38 | static void* createPanelPlace(void* data); | ||
39 | |||
40 | LLFloaterParcelInfo(const std::string& name, const LLUUID &parcel_id ); | ||
41 | /*virtual*/ ~LLFloaterParcelInfo(); | ||
42 | |||
43 | void displayParcelInfo(const LLUUID& parcel_id); | ||
44 | |||
45 | static LLFloaterParcelInfo* show(const LLUUID& parcel_id); | ||
46 | |||
47 | private: | ||
48 | LLUUID mParcelID; // for which parcel is this window? | ||
49 | LLPanelPlace* mPanelParcelp; | ||
50 | }; | ||
51 | |||
52 | |||
53 | #endif | ||