summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterparcel.h
blob: f829d30a9e6ab05a81e3b23d6764d44a0bcec1f4 (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
/** 
 * @file llfloaterparcelinfo.h
 * @brief LLFloaterParcelInfo class definition
 *
 * Copyright (c) 2002-$CurrentYear$, Linden Research, Inc.
 * $License$
 */

/**
 * Parcel information as shown in a floating window from a sl-url.
 * Just a wrapper for LLPanelPlace, shared with the Find directory.
 */

#ifndef LL_FLOATERPARCELINFO_H
#define LL_FLOATERPARCELINFO_H

#include "llfloater.h"

class LLPanelPlace;

class LLFloaterParcelInfo
:	public LLFloater
{
public:
	static	void*	createPanelPlace(void*	data);

	LLFloaterParcelInfo(const std::string& name, const LLUUID &parcel_id );
	/*virtual*/ ~LLFloaterParcelInfo();

	void displayParcelInfo(const LLUUID& parcel_id);

	static LLFloaterParcelInfo* show(const LLUUID& parcel_id);

private:
	LLUUID			mParcelID;			// for which parcel is this window?
	LLPanelPlace*	mPanelParcelp;
};


#endif