summaryrefslogtreecommitdiff
path: root/src/gui/listbox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/listbox.cpp')
-rw-r--r--src/gui/listbox.cpp12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/gui/listbox.cpp b/src/gui/listbox.cpp
index b45823a6..bf80589a 100644
--- a/src/gui/listbox.cpp
+++ b/src/gui/listbox.cpp
@@ -22,6 +22,8 @@
*/
#include "listbox.h"
+#include "../graphics.h"
+#include "../main.h"
ListBox::ListBox():
gcn::ListBox()
@@ -49,10 +51,16 @@ void ListBox::draw(gcn::Graphics *graphics)
for (i = 0; i < mListModel->getNumberOfElements(); ++i)
{
if (i == mSelected) {
- graphics->fillRectangle(
+ if (useOpenGL) {
+ dynamic_cast<gcn::OpenGLGraphics*>(graphics)->fillRectangle(
gcn::Rectangle(0, y, getWidth(), fontHeight));
+ }
+ else {
+ dynamic_cast<gcn::SDLGraphics*>(graphics)->fillRectangle(
+ gcn::Rectangle(0, y, getWidth(), fontHeight));
+ }
}
-
+
graphics->drawText(mListModel->getElementAt(i), 1, y);
y += fontHeight;