summaryrefslogtreecommitdiff
path: root/indra/newview/llhudtext.h
diff options
context:
space:
mode:
authorJames Cook <james@lindenlab.com>2010-03-09 15:23:16 -0800
committerJames Cook <james@lindenlab.com>2010-03-09 15:23:16 -0800
commit7337b4b05bf2218796742a0ee1ddb0fdf27236c4 (patch)
tree99d0b69543b1d6db632436465c6ce3585d403df1 /indra/newview/llhudtext.h
parent717a4800f1ae0ae6ea0bbe9ed0af21c7851f5d0a (diff)
More harmonization of LLHUDNameTag vs. LLHUDText
Eliminating now-unused code from LLHUDText
Diffstat (limited to 'indra/newview/llhudtext.h')
-rw-r--r--indra/newview/llhudtext.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/indra/newview/llhudtext.h b/indra/newview/llhudtext.h
index 3acd2934e1..023c7d8ff3 100644
--- a/indra/newview/llhudtext.h
+++ b/indra/newview/llhudtext.h
@@ -40,7 +40,6 @@
#include "v4coloru.h"
#include "v2math.h"
#include "llrect.h"
-#include "llframetimer.h"
#include "llfontgl.h"
#include <set>
#include <vector>
@@ -100,8 +99,6 @@ public:
// Add text a line at a time, allowing custom formatting
void addLine(const std::string &text_utf8, const LLColor4& color, const LLFontGL::StyleFlags style = LLFontGL::NORMAL, const LLFontGL* font = NULL);
- void setDropShadow(const BOOL do_shadow);
-
// Sets the default font for lines with no font specified
void setFont(const LLFontGL* font);
void setColor(const LLColor4 &color);
@@ -122,7 +119,6 @@ public:
/*virtual*/ void markDead();
friend class LLHUDObject;
/*virtual*/ F32 getDistance() const { return mLastDistance; }
- S32 getLOD() { return mLOD; }
BOOL getVisible() { return mVisible; }
BOOL getHidden() const { return mHidden; }
void setHidden( BOOL hide ) { mHidden = hide; }
@@ -141,14 +137,11 @@ protected:
/*virtual*/ void renderForSelect();
void renderText(BOOL for_select);
static void updateAll();
- void setLOD(S32 lod);
S32 getMaxLines();
private:
~LLHUDText();
BOOL mOnHUDAttachment;
-// BOOL mUseBubble;
- BOOL mDropShadow;
BOOL mDoFade;
F32 mFadeRange;
F32 mFadeDistance;
@@ -172,11 +165,8 @@ private:
S32 mOffsetY;
F32 mRadius;
std::vector<LLHUDTextSegment> mTextSegments;
- std::vector<LLHUDTextSegment> mLabelSegments;
- LLFrameTimer mResizeTimer;
ETextAlignment mTextAlignment;
EVertAlignment mVertAlignment;
- S32 mLOD;
BOOL mHidden;
static BOOL sDisplayText ;