mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-07 12:54:00 +00:00
31 lines
640 B
C++
31 lines
640 B
C++
#ifndef MWGUI_SETTINGS_H
|
|
#define MWGUI_SETTINGS_H
|
|
|
|
#include "window_base.hpp"
|
|
|
|
namespace MWGui
|
|
{
|
|
class WindowManager;
|
|
}
|
|
|
|
namespace MWGui
|
|
{
|
|
class SettingsWindow : public WindowBase
|
|
{
|
|
public:
|
|
SettingsWindow(WindowManager& parWindowManager);
|
|
|
|
protected:
|
|
MyGUI::Button* mOkButton;
|
|
MyGUI::ListBox* mResolutionList;
|
|
MyGUI::ScrollBar* mMenuTransparencySlider;
|
|
MyGUI::ScrollBar* mViewDistanceSlider;
|
|
|
|
void onOkButtonClicked(MyGUI::Widget* _sender);
|
|
void onSliderChangePosition(MyGUI::ScrollBar* scroller, size_t pos);
|
|
};
|
|
}
|
|
|
|
#endif
|
|
|