summaryrefslogtreecommitdiff
path: root/src/gui/widgets/listbox.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/listbox.h')
-rw-r--r--src/gui/widgets/listbox.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/gui/widgets/listbox.h b/src/gui/widgets/listbox.h
index 113174332..dd22ca431 100644
--- a/src/gui/widgets/listbox.h
+++ b/src/gui/widgets/listbox.h
@@ -82,7 +82,7 @@ class ListBox : public gcn::ListBox,
void refocus();
- void setDistributeMousePressed(bool b)
+ void setDistributeMousePressed(const bool b)
{ mDistributeMousePressed = b; }
virtual void adjustSize();
@@ -91,6 +91,9 @@ class ListBox : public gcn::ListBox,
virtual int getSelectionByMouse(const int y) const;
+ void setCenter(const bool b)
+ { mCenterText = b; }
+
protected:
gcn::Color mHighlightColor;
gcn::Color mForegroundColor2;
@@ -101,6 +104,7 @@ class ListBox : public gcn::ListBox,
Skin *mSkin;
static float mAlpha;
bool mDistributeMousePressed;
+ bool mCenterText;
};
#endif // GUI_WIDGETS_LISTBOX_H