mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-08-04 07:46:40 -04:00
18 lines
423 B
C++
18 lines
423 B
C++
#include "scrollbar.hpp"
|
|
|
|
#include <MyGUI_Button.h>
|
|
|
|
namespace Gui
|
|
{
|
|
std::vector<MyGUI::Widget*> ScrollBar::getAllWidgets()
|
|
{
|
|
std::vector<MyGUI::Widget*> widgets;
|
|
widgets.push_back(mWidgetStart);
|
|
widgets.push_back(mWidgetEnd);
|
|
widgets.push_back(mWidgetTrack);
|
|
widgets.push_back(mWidgetFirstPart);
|
|
widgets.push_back(mWidgetSecondPart);
|
|
return widgets;
|
|
}
|
|
}
|