summaryrefslogtreecommitdiff
path: root/src/gui/statuswindow.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-10-14 18:50:27 +0300
committerAndrei Karas <akaras@inbox.ru>2012-10-14 18:50:27 +0300
commit066488a6f4d086b57f4fe32e8799c207552cccb7 (patch)
tree2c73d80030ff0da73fc5f5b4b664a34030a51633 /src/gui/statuswindow.h
parent0b3aafe2859d9ea1c4009eed8a87f69c41cbc14b (diff)
downloadManaVerse-066488a6f4d086b57f4fe32e8799c207552cccb7.tar.gz
ManaVerse-066488a6f4d086b57f4fe32e8799c207552cccb7.tar.bz2
ManaVerse-066488a6f4d086b57f4fe32e8799c207552cccb7.tar.xz
ManaVerse-066488a6f4d086b57f4fe32e8799c207552cccb7.zip
Add theming to labels.
New theme file: label.xml Parameters: padding
Diffstat (limited to 'src/gui/statuswindow.h')
-rw-r--r--src/gui/statuswindow.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/gui/statuswindow.h b/src/gui/statuswindow.h
index dce48c8fc..8f74951eb 100644
--- a/src/gui/statuswindow.h
+++ b/src/gui/statuswindow.h
@@ -32,6 +32,7 @@
#include <map>
class AttrDisplay;
+class Label;
class ProgressBar;
class ScrollArea;
class VertContainer;
@@ -39,7 +40,6 @@ class VertContainer;
namespace gcn
{
class Button;
- class Label;
}
/**
@@ -98,17 +98,17 @@ class StatusWindow final : public Window,
/**
* Status Part
*/
- gcn::Label *mLvlLabel;
- gcn::Label *mMoneyLabel;
- gcn::Label *mHpLabel;
- gcn::Label *mMpLabel;
- gcn::Label *mXpLabel;
+ Label *mLvlLabel;
+ Label *mMoneyLabel;
+ Label *mHpLabel;
+ Label *mMpLabel;
+ Label *mXpLabel;
ProgressBar *mHpBar;
ProgressBar *mMpBar;
ProgressBar *mXpBar;
- gcn::Label *mJobLvlLabel;
- gcn::Label *mJobLabel;
+ Label *mJobLvlLabel;
+ Label *mJobLabel;
ProgressBar *mJobBar;
VertContainer *mAttrCont;
@@ -116,8 +116,8 @@ class StatusWindow final : public Window,
VertContainer *mDAttrCont;
ScrollArea *mDAttrScroll;
- gcn::Label *mCharacterPointsLabel;
- gcn::Label *mCorrectionPointsLabel;
+ Label *mCharacterPointsLabel;
+ Label *mCorrectionPointsLabel;
gcn::Button *mCopyButton;
typedef std::map<int, AttrDisplay*> Attrs;