summaryrefslogtreecommitdiff
path: root/indra/newview/llvotextbubble.h
diff options
context:
space:
mode:
authorJames Cook <james@lindenlab.com>2007-01-02 08:33:20 +0000
committerJames Cook <james@lindenlab.com>2007-01-02 08:33:20 +0000
commit420b91db29485df39fd6e724e782c449158811cb (patch)
treeb471a94563af914d3ed3edd3e856d21cb1b69945 /indra/newview/llvotextbubble.h
Print done when done.
Diffstat (limited to 'indra/newview/llvotextbubble.h')
-rw-r--r--indra/newview/llvotextbubble.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/indra/newview/llvotextbubble.h b/indra/newview/llvotextbubble.h
new file mode 100644
index 0000000000..9fe6386a3b
--- /dev/null
+++ b/indra/newview/llvotextbubble.h
@@ -0,0 +1,37 @@
+/**
+ * @file llvotextbubble.h
+ * @brief Description of LLVORock class, which a derivation of LLViewerObject
+ *
+ * Copyright (c) 2001-$CurrentYear$, Linden Research, Inc.
+ * $License$
+ */
+
+#ifndef LL_LLVOTEXTBUBBLE_H
+#define LL_LLVOTEXTBUBBLE_H
+
+#include "llviewerobject.h"
+#include "llframetimer.h"
+
+class LLVOTextBubble : public LLViewerObject
+{
+public:
+ LLVOTextBubble(const LLUUID &id, const LLPCode pcode, LLViewerRegion *regionp);
+ virtual ~LLVOTextBubble();
+
+ /*virtual*/ BOOL isActive() const; // Whether this object needs to do an idleUpdate.
+ /*virtual*/ BOOL idleUpdate(LLAgent &agent, LLWorld &world, const F64 &time);
+
+ /*virtual*/ void updateTextures(LLAgent &agent);
+ /*virtual*/ LLDrawable* createDrawable(LLPipeline *pipeline);
+ /*virtual*/ BOOL updateGeometry(LLDrawable *drawable);
+ /*virtual*/ BOOL updateLOD();
+
+ LLColor4 mColor;
+ S32 mLOD;
+ BOOL mVolumeChanged;
+protected:
+ BOOL setVolume(const LLVolumeParams &volume_params);
+ LLFrameTimer mUpdateTimer;
+};
+
+#endif // LL_VO_TEXT_BUBBLE