blob: 7701a2a5f2e1c5ac6e3729547d47b48a761f1662 (
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
|
/**
* @file llpanelcontents.h
* @brief Object contents panel in the tools floater.
*
* Copyright (c) 2001-$CurrentYear$, Linden Research, Inc.
* $License$
*/
#ifndef LL_LLPANELCONTENTS_H
#define LL_LLPANELCONTENTS_H
#include "v3math.h"
#include "llpanel.h"
class LLButton;
class LLPanelInventory;
class LLViewerObject;
class LLCheckBoxCtrl;
class LLSpinCtrl;
class LLPanelContents : public LLPanel
{
public:
virtual BOOL postBuild();
LLPanelContents(const std::string& name);
virtual ~LLPanelContents();
void refresh();
static void onClickNewScript( void* userdata);
protected:
void getState(LLViewerObject *object);
public:
LLPanelInventory* mPanelInventory;
};
#endif
|