Rename guiScrollBar to GUIScrollBar
authorDS-Minetest <vorunbekannt75@web.de>
Sat, 27 Jul 2019 13:44:11 +0000 (15:44 +0200)
committersfan5 <sfan5@live.de>
Mon, 29 Jul 2019 19:45:39 +0000 (21:45 +0200)
src/gui/guiEditBoxWithScrollbar.cpp
src/gui/guiEditBoxWithScrollbar.h
src/gui/guiScrollBar.cpp
src/gui/guiScrollBar.h
src/gui/guiTable.cpp
src/gui/guiTable.h
src/gui/intlGUIEditBox.cpp
src/gui/intlGUIEditBox.h

index b7192b37ba5e3fcd376944c77f33c0a9b2a762b8..2f909f54f64fbafc08dcfb3c355e7317e27343be 100644 (file)
@@ -1400,7 +1400,7 @@ void GUIEditBoxWithScrollBar::createVScrollBar()
 
        irr::core::rect<s32> scrollbarrect = m_frame_rect;
        scrollbarrect.UpperLeftCorner.X += m_frame_rect.getWidth() - m_scrollbar_width;
-       m_vscrollbar = new guiScrollBar(Environment, getParent(), -1,
+       m_vscrollbar = new GUIScrollBar(Environment, getParent(), -1,
                        scrollbarrect, false, true);
 
        m_vscrollbar->setVisible(false);
index b872d7e360fdeaa32461499bb07aa2033e3842aa..77538e2f7e776c3595a044d8f73249c82fdc44d1 100644 (file)
@@ -116,7 +116,7 @@ public:
 
        //! Updates the absolute position, splits text if required
        virtual void updateAbsolutePosition();
-       
+
        virtual void setWritable(bool writable);
 
        //! Change the background color
@@ -187,7 +187,7 @@ protected:
        core::rect<s32> m_current_text_rect, m_frame_rect; // temporary values
 
        u32 m_scrollbar_width;
-       guiScrollBar *m_vscrollbar;
+       GUIScrollBar *m_vscrollbar;
        bool m_writable;
 
        bool m_bg_color_used;
index ea072aa9ec6e4baf3b07367eba5dc322888d2bca..f7218e733e532d741ef88f496630710fe70f12fd 100644 (file)
@@ -14,7 +14,7 @@ the arrow buttons where there is insufficient space.
 #include <IGUIButton.h>
 #include <IGUISkin.h>
 
-guiScrollBar::guiScrollBar(IGUIEnvironment *environment, IGUIElement *parent, s32 id,
+GUIScrollBar::GUIScrollBar(IGUIEnvironment *environment, IGUIElement *parent, s32 id,
                core::rect<s32> rectangle, bool horizontal, bool auto_scale) :
                IGUIElement(EGUIET_ELEMENT, environment, parent, id, rectangle),
                up_button(nullptr), down_button(nullptr), is_dragging(false),
@@ -30,7 +30,7 @@ guiScrollBar::guiScrollBar(IGUIEnvironment *environment, IGUIElement *parent, s3
        setPos(0);
 }
 
-bool guiScrollBar::OnEvent(const SEvent &event)
+bool GUIScrollBar::OnEvent(const SEvent &event)
 {
        if (isEnabled()) {
                switch (event.EventType) {
@@ -193,7 +193,7 @@ bool guiScrollBar::OnEvent(const SEvent &event)
        return IGUIElement::OnEvent(event);
 }
 
-void guiScrollBar::draw()
+void GUIScrollBar::draw()
 {
        if (!IsVisible)
                return;
@@ -228,14 +228,14 @@ void guiScrollBar::draw()
        IGUIElement::draw();
 }
 
-void guiScrollBar::updateAbsolutePosition()
+void GUIScrollBar::updateAbsolutePosition()
 {
        IGUIElement::updateAbsolutePosition();
        refreshControls();
        setPos(scroll_pos);
 }
 
-s32 guiScrollBar::getPosFromMousePos(const core::position2di &pos) const
+s32 GUIScrollBar::getPosFromMousePos(const core::position2di &pos) const
 {
        s32 w, p;
        s32 offset = dragged_by_slider ? drag_offset : thumb_size / 2;
@@ -250,7 +250,7 @@ s32 guiScrollBar::getPosFromMousePos(const core::position2di &pos) const
        return core::isnotzero(range()) ? s32(f32(p) / f32(w) * range()) + min_pos : 0;
 }
 
-void guiScrollBar::setPos(const s32 &pos)
+void GUIScrollBar::setPos(const s32 &pos)
 {
        s32 thumb_area = 0;
        s32 thumb_min = 0;
@@ -275,17 +275,17 @@ void guiScrollBar::setPos(const s32 &pos)
        draw_center = s32((f32(scroll_pos) * f) + (f32(thumb_size) * 0.5f)) + border_size;
 }
 
-void guiScrollBar::setSmallStep(const s32 &step)
+void GUIScrollBar::setSmallStep(const s32 &step)
 {
        small_step = step > 0 ? step : 10;
 }
 
-void guiScrollBar::setLargeStep(const s32 &step)
+void GUIScrollBar::setLargeStep(const s32 &step)
 {
        large_step = step > 0 ? step : 50;
 }
 
-void guiScrollBar::setMax(const s32 &max)
+void GUIScrollBar::setMax(const s32 &max)
 {
        max_pos = max;
        if (min_pos > max_pos)
@@ -297,7 +297,7 @@ void guiScrollBar::setMax(const s32 &max)
        setPos(scroll_pos);
 }
 
-void guiScrollBar::setMin(const s32 &min)
+void GUIScrollBar::setMin(const s32 &min)
 {
        min_pos = min;
        if (max_pos < min_pos)
@@ -309,18 +309,18 @@ void guiScrollBar::setMin(const s32 &min)
        setPos(scroll_pos);
 }
 
-void guiScrollBar::setPageSize(const s32 &size)
+void GUIScrollBar::setPageSize(const s32 &size)
 {
        page_size = size;
        setPos(scroll_pos);
 }
 
-s32 guiScrollBar::getPos() const
+s32 GUIScrollBar::getPos() const
 {
        return scroll_pos;
 }
 
-void guiScrollBar::refreshControls()
+void GUIScrollBar::refreshControls()
 {
        IGUISkin *skin = Environment->getSkin();
        IGUISpriteBank *sprites = nullptr;
index 2236ff5b989193891e9ea7c5d3bc023adfbd0611..349411fc12dee8082df56c9c8c574390eeb82720 100644 (file)
@@ -17,10 +17,10 @@ the arrow buttons where there is insufficient space.
 using namespace irr;
 using namespace gui;
 
-class guiScrollBar : public IGUIElement
+class GUIScrollBar : public IGUIElement
 {
 public:
-       guiScrollBar(IGUIEnvironment *environment, IGUIElement *parent, s32 id,
+       GUIScrollBar(IGUIEnvironment *environment, IGUIElement *parent, s32 id,
                        core::rect<s32> rectangle, bool horizontal, bool auto_scale);
 
        virtual void draw();
index 371e7ab6ccaf664bf81bbd4d967469a9e1f6109c..c705e17fb0ed2a3755e9489583236bbc1adc3b0b 100644 (file)
@@ -61,7 +61,7 @@ GUITable::GUITable(gui::IGUIEnvironment *env,
        }
 
        const s32 s = skin->getSize(gui::EGDS_SCROLLBAR_SIZE);
-       m_scrollbar = new guiScrollBar(Environment, this, -1,
+       m_scrollbar = new GUIScrollBar(Environment, this, -1,
                        core::rect<s32>(RelativeRect.getWidth() - s,
                                        0,
                                        RelativeRect.getWidth(),
index 1893be5c3ab3a61c3735b6e73c9d70d96f9ac774..11093ea723c697855f4adb3e2150212f1275d239 100644 (file)
@@ -199,7 +199,7 @@ protected:
        video::SColor m_highlight_text = video::SColor(255, 255, 255, 255);
        s32 m_rowheight = 1;
        gui::IGUIFont *m_font = nullptr;
-       guiScrollBar *m_scrollbar = nullptr;
+       GUIScrollBar *m_scrollbar = nullptr;
 
        // Allocated strings and images
        std::vector<core::stringw> m_strings;
index 1f1c85ad5546d0cf5b52b44260f61a4abd450e7b..10395423c96ba17072e44d67f472818d3c98a156 100644 (file)
@@ -1482,7 +1482,7 @@ void intlGUIEditBox::createVScrollBar()
 
        irr::core::rect<s32> scrollbarrect = FrameRect;
        scrollbarrect.UpperLeftCorner.X += FrameRect.getWidth() - m_scrollbar_width;
-       m_vscrollbar = new guiScrollBar(Environment, getParent(), -1,
+       m_vscrollbar = new GUIScrollBar(Environment, getParent(), -1,
                        scrollbarrect, false, true);
 
        m_vscrollbar->setVisible(false);
index 476f7f5de198fcda3cfcb9e3e49a02f44675ae62..9d643495e5b7c4704d2dcd429d534eca21391001 100644 (file)
@@ -198,7 +198,7 @@ namespace gui
                core::rect<s32> CurrentTextRect = core::rect<s32>(0,0,1,1);
                core::rect<s32> FrameRect; // temporary values
                u32 m_scrollbar_width;
-               guiScrollBar *m_vscrollbar;
+               GUIScrollBar *m_vscrollbar;
                bool m_writable;
 
        };