diff --git a/data/gui/glassspinner.png b/data/gui/glassspinner.png
index e94d8f49b..4c4227446 100644
Binary files a/data/gui/glassspinner.png and b/data/gui/glassspinner.png differ
diff --git a/data/gui/glassspinner_focus.png b/data/gui/glassspinner_focus.png
index cd7e9bab1..fe9c717d1 100644
Binary files a/data/gui/glassspinner_focus.png and b/data/gui/glassspinner_focus.png differ
diff --git a/data/gui/karts.stkgui b/data/gui/karts.stkgui
index af9103f7d..0c37de4b1 100644
--- a/data/gui/karts.stkgui
+++ b/data/gui/karts.stkgui
@@ -4,7 +4,7 @@
-
+
diff --git a/src/gui/skin.cpp b/src/gui/skin.cpp
index 89ddf9c7d..93a7fbfb5 100644
--- a/src/gui/skin.cpp
+++ b/src/gui/skin.cpp
@@ -47,7 +47,8 @@ void Skin::draw2DRectangle (IGUIElement *element, const video::SColor &color, co
void Skin::drawBoxFromStretchableTexture(const core::rect< s32 > &dest, ITexture* source,
const int left_border, const int right_border,
- const int top_border, const int bottom_border)
+ const int top_border, const int bottom_border,
+ const float border_out_portion)
{
// FIXME? - lots of things here will be re-calculated every frame, which is useless since
// widgets won't move, so they'd only need to be calculated once.
@@ -91,8 +92,9 @@ void Skin::drawBoxFromStretchableTexture(const core::rect< s32 > &dest, ITexture
core::rect source_area_bottom_right = core::rect(dx, dy, texture_w, texture_h);
/*
- The dest area is split this way. Borders will go a bit beyond the
- given area so components inside don't go over the borders (by half their size)
+ The dest area is split this way. Borders can go a bit beyond the given area so
+ components inside don't go over the borders
+ (how much it exceeds horizontally is specified in 'border_out_portion'. vertically is always the totality)
a----b--------------------c----+
| | | |
@@ -111,22 +113,24 @@ void Skin::drawBoxFromStretchableTexture(const core::rect< s32 > &dest, ITexture
const int dest_y2 = dest.LowerRightCorner.Y;
const float scale = (float)(dest_y2-dest_y)/texture_h;
- const int dest_left_border_half = left_border*scale*0.5f;
- const int dest_right_border_half = right_border*scale*0.5f;
- const int dest_top_border_half = top_border*scale*0.5f;
- const int dest_bottom_border_half = bottom_border*scale*0.5f;
+ const int dest_left_border = left_border*scale;
+ const int dest_right_border = right_border*scale;
+ const int dest_top_border = top_border*scale;
+ const int dest_bottom_border = bottom_border*scale;
- const int ax = dest_x - dest_left_border_half;
- const int ay = dest_y - dest_top_border_half;
+ const float border_in_portion = 1 - border_out_portion;
- const int bx = dest_x + dest_left_border_half;
+ const int ax = dest_x - dest_left_border*border_out_portion;
+ const int ay = dest_y - dest_top_border;
+
+ const int bx = dest_x + dest_left_border*border_in_portion;
const int by = ay;
- const int cx = dest_x2 - dest_right_border_half;
+ const int cx = dest_x2 - dest_right_border*border_in_portion;
const int cy = ay;
const int dx = ax;
- const int dy = dest_y + dest_top_border_half;
+ const int dy = dest_y;
const int ex = bx;
const int ey = dy;
@@ -134,11 +138,11 @@ void Skin::drawBoxFromStretchableTexture(const core::rect< s32 > &dest, ITexture
const int fx = cx;
const int fy = dy;
- const int gx = dest_x2 + dest_right_border_half;
+ const int gx = dest_x2 + dest_right_border*border_out_portion;
const int gy = dy;
const int hx = ax;
- const int hy = dest_y2 - dest_bottom_border_half;
+ const int hy = dest_y2;
const int ix = bx;
const int iy = hy;
@@ -150,7 +154,7 @@ void Skin::drawBoxFromStretchableTexture(const core::rect< s32 > &dest, ITexture
const int ky = hy;
const int lx = bx;
- const int ly = dest_y2 + dest_bottom_border_half;
+ const int ly = dest_y2 + dest_bottom_border;
const int mx = cx;
const int my = ly;
@@ -268,20 +272,33 @@ void Skin::drawRibbonChild(const core::rect< s32 > &rect, const Widget* widget,
void Skin::drawSpinnerBody(const core::rect< s32 > &rect, const Widget* widget, const bool pressed, const bool focused)
{
+ // FIXME - move these numbers to a config file
+ const int left_border = 110;
+ const int right_border = 110;
+ const int border_above = 0;
+ const int border_below = 36;
+
+ drawBoxFromStretchableTexture(rect, (focused || pressed ? m_tex_fspinner : m_tex_spinner),
+ left_border, right_border,
+ border_above, border_below, 0);
+ /*
if(focused)
GUIEngine::getDriver()->draw2DRectangle( SColor(255, 255, 0, 0), rect );
else
GUIEngine::getDriver()->draw2DRectangle( SColor(255, 150, 0, 0), rect );
+ */
}
void Skin::drawSpinnerChild(const core::rect< s32 > &rect, const Widget* widget, const bool pressed, bool focused)
{
+ /*
if(pressed)
GUIEngine::getDriver()->draw2DRectangle( SColor(255, 255, 0, 0), rect );
else if(focused)
GUIEngine::getDriver()->draw2DRectangle( SColor(255, 150, 0, 0), rect );
else
GUIEngine::getDriver()->draw2DRectangle( SColor(255, 0, 150, 0), rect );
+ */
}
void Skin::process3DPane(IGUIElement *element, const core::rect< s32 > &rect, const bool pressed)
diff --git a/src/gui/skin.hpp b/src/gui/skin.hpp
index 9856b6518..d552928b7 100644
--- a/src/gui/skin.hpp
+++ b/src/gui/skin.hpp
@@ -29,7 +29,8 @@ class Skin : public IGUISkin
void drawBoxFromStretchableTexture(const core::rect< s32 > &dest, ITexture* source,
const int left_border, const int right_border,
- const int top_border, const int bottom_border);
+ const int top_border, const int bottom_border,
+ const float border_out_portion = 0.5);
public:
Skin(IGUISkin* fallback_skin);
diff --git a/src/gui/widget.cpp b/src/gui/widget.cpp
index d94c92d12..99af8d064 100644
--- a/src/gui/widget.cpp
+++ b/src/gui/widget.cpp
@@ -115,11 +115,6 @@ void Widget::readCoords(Widget* parent)
int abs_y = -1, percent_y = -1;
if(convertToCoord(y, &abs_y, &percent_y ))
{
- if(abs_y < -1)
- {
- std::cout << "abs_y = " << abs_y << ", y=" << (parent_y + (parent_h - abs_y)) << std::endl;
- }
-
if(abs_y > -1) this->y = parent_y + abs_y;
else if(abs_y < -1) this->y = parent_y + (parent_h + abs_y);
else if(percent_y > -1) this->y = parent_y + parent_h*percent_y/100;
@@ -617,7 +612,7 @@ void SpinnerWidget::add()
// left arrow
rect subsize_left_arrow = rect(0 ,0, h, h);
- IGUIButton * left_arrow = GUIEngine::getGUIEnv()->addButton(subsize_left_arrow, btn, ++id_counter_2, L"<<");
+ IGUIButton * left_arrow = GUIEngine::getGUIEnv()->addButton(subsize_left_arrow, btn, ++id_counter_2, L" ");
m_children[0].m_element = left_arrow;
m_children[0].m_type = WTYPE_BUTTON;
left_arrow->setTabStop(false);
@@ -659,7 +654,7 @@ void SpinnerWidget::add()
// right arrow
rect subsize_right_arrow = rect(w-h, 0, w, h);
- IGUIButton * right_arrow = GUIEngine::getGUIEnv()->addButton(subsize_right_arrow, btn, ++id_counter_2, L">>");
+ IGUIButton * right_arrow = GUIEngine::getGUIEnv()->addButton(subsize_right_arrow, btn, ++id_counter_2, L" ");
right_arrow->setTabStop(false);
m_children[2].m_element = right_arrow;
m_children[2].m_type = WTYPE_BUTTON;