aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/lltexturebar.h
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/newview/lltexturebar.h')
-rw-r--r--linden/indra/newview/lltexturebar.h75
1 files changed, 0 insertions, 75 deletions
diff --git a/linden/indra/newview/lltexturebar.h b/linden/indra/newview/lltexturebar.h
deleted file mode 100644
index ea704a2..0000000
--- a/linden/indra/newview/lltexturebar.h
+++ /dev/null
@@ -1,75 +0,0 @@
1/**
2 * @file lltexturebar.h
3 * @brief LLTextureBar class definition
4 *
5 * Copyright (c) 2001-2007, Linden Research, Inc.
6 *
7 * The source code in this file ("Source Code") is provided by Linden Lab
8 * to you under the terms of the GNU General Public License, version 2.0
9 * ("GPL"), unless you have obtained a separate licensing agreement
10 * ("Other License"), formally executed by you and Linden Lab. Terms of
11 * the GPL can be found in doc/GPL-license.txt in this distribution, or
12 * online at http://secondlife.com/developers/opensource/gplv2
13 *
14 * There are special exceptions to the terms and conditions of the GPL as
15 * it is applied to this Source Code. View the full text of the exception
16 * in the file doc/FLOSS-exception.txt in this software distribution, or
17 * online at http://secondlife.com/developers/opensource/flossexception
18 *
19 * By copying, modifying or distributing this software, you acknowledge
20 * that you have read and understood your obligations described above,
21 * and agree to abide by those obligations.
22 *
23 * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
24 * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
25 * COMPLETENESS OR PERFORMANCE.
26 */
27
28#ifndef LL_LLTEXTUREBAR_H
29#define LL_LLTEXTUREBAR_H
30
31#include "llview.h"
32#include "lltimer.h"
33#include "llviewerimage.h"
34
35class LLAssetInfo;
36class LLTimer;
37
38
39class LLTextureBar : public LLView
40{
41public:
42 LLPointer<LLViewerImage> mImagep;
43 S32 mHilite;
44
45public:
46 LLTextureBar(const std::string& name, const LLRect& r);
47
48 virtual EWidgetType getWidgetType() const;
49 virtual LLString getWidgetTag() const;
50
51 virtual void draw();
52
53 virtual BOOL handleMouseDown(S32 x, S32 y, MASK mask);
54
55 virtual LLRect getRequiredRect(); // Return the height of this object, given the set options.
56};
57
58class LLGLTexMemBar : public LLView
59{
60public:
61 LLGLTexMemBar(const std::string& name);
62
63 virtual EWidgetType getWidgetType() const;
64 virtual LLString getWidgetTag() const;
65
66 virtual void draw();
67
68 virtual BOOL handleMouseDown(S32 x, S32 y, MASK mask);
69
70 virtual LLRect getRequiredRect(); // Return the height of this object, given the set options.
71
72protected:
73};
74
75#endif // LL_TEXTURE_BAR_