mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-08-04 07:46:40 -04:00
19 lines
400 B
C++
19 lines
400 B
C++
#ifndef OPENMW_COMPONENTS_WIDGETS_SCROLLBAR_H
|
|
#define OPENMW_COMPONENTS_WIDGETS_SCROLLBAR_H
|
|
|
|
#include <MyGUI_ScrollBar.h>
|
|
|
|
namespace Gui
|
|
{
|
|
/// @brief A scrollbar that can return all its widgets for binding hover listeners.
|
|
class ScrollBar : public MyGUI::ScrollBar
|
|
{
|
|
MYGUI_RTTI_DERIVED(ScrollBar)
|
|
|
|
public:
|
|
std::vector<MyGUI::Widget*> getAllWidgets();
|
|
};
|
|
}
|
|
|
|
#endif
|