From 875d5d8ef91260998c68c6fa3751ac2292754b7d Mon Sep 17 00:00:00 2001 From: Deve Date: Mon, 20 Feb 2017 21:19:00 +0100 Subject: [PATCH 01/11] Some tweaks to the arrows size in dynamic ribbon widget. - arrow size now depends on screen size, so that it's now easier to click it on high resolutions - it's additionally scaled on Android for easier usage --- src/guiengine/widgets/dynamic_ribbon_widget.cpp | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/guiengine/widgets/dynamic_ribbon_widget.cpp b/src/guiengine/widgets/dynamic_ribbon_widget.cpp index 548a1ab14..ae7cec447 100644 --- a/src/guiengine/widgets/dynamic_ribbon_widget.cpp +++ b/src/guiengine/widgets/dynamic_ribbon_widget.cpp @@ -17,6 +17,7 @@ #include "font/font_manager.hpp" #include "font/regular_face.hpp" +#include "graphics/irr_driver.hpp" #include "guiengine/engine.hpp" #include "guiengine/scalable_font.hpp" #include "guiengine/widgets/dynamic_ribbon_widget.hpp" @@ -146,8 +147,14 @@ void DynamicRibbonWidget::add() m_right_widget = new IconButtonWidget(IconButtonWidget::SCALE_MODE_KEEP_TEXTURE_ASPECT_RATIO, false); const int average_y = m_y + (m_h - m_label_height)/2; - m_arrows_w = 40; - const int button_h = 50; + + unsigned int screen_height = irr_driver->getActualScreenSize().Height; + m_arrows_w = (int)(screen_height / 15); + m_arrows_w = std::max(m_arrows_w, 40); +#ifdef ANDROID + m_arrows_w *= 1.5f; +#endif + const int button_h = m_arrows_w; // right arrow rect right_arrow_location = rect(m_x + m_w - m_arrows_w, From ef2cba0f8552916d39ce80387d3f9cd6402a3292 Mon Sep 17 00:00:00 2001 From: Deve Date: Mon, 20 Feb 2017 21:21:37 +0100 Subject: [PATCH 02/11] Display multitouch settings properly on low resolutions --- data/gui/multitouch_settings.stkgui | 131 ++++++++++++++-------------- 1 file changed, 65 insertions(+), 66 deletions(-) diff --git a/data/gui/multitouch_settings.stkgui b/data/gui/multitouch_settings.stkgui index 1cf3857bf..4ea7bd71d 100644 --- a/data/gui/multitouch_settings.stkgui +++ b/data/gui/multitouch_settings.stkgui @@ -4,76 +4,75 @@
- -