You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
2.4 KiB
C++
78 lines
2.4 KiB
C++
#ifndef MWGUI_SETTINGS_H
|
|
#define MWGUI_SETTINGS_H
|
|
|
|
#include "windowbase.hpp"
|
|
|
|
namespace MWGui
|
|
{
|
|
class WindowManager;
|
|
}
|
|
|
|
namespace MWGui
|
|
{
|
|
class SettingsWindow : public WindowBase
|
|
{
|
|
public:
|
|
SettingsWindow();
|
|
|
|
virtual void open();
|
|
|
|
virtual void exit();
|
|
|
|
void updateControlsBox();
|
|
|
|
protected:
|
|
MyGUI::TabControl* mSettingsTab;
|
|
MyGUI::Button* mOkButton;
|
|
|
|
// graphics
|
|
MyGUI::ListBox* mResolutionList;
|
|
MyGUI::Button* mFullscreenButton;
|
|
MyGUI::Button* mWindowBorderButton;
|
|
MyGUI::ComboBox* mTextureFilteringButton;
|
|
MyGUI::Widget* mAnisotropyBox;
|
|
|
|
MyGUI::ComboBox* mWaterTextureSize;
|
|
|
|
// controls
|
|
MyGUI::ScrollView* mControlsBox;
|
|
MyGUI::Button* mResetControlsButton;
|
|
MyGUI::Button* mKeyboardSwitch;
|
|
MyGUI::Button* mControllerSwitch;
|
|
bool mKeyboardMode; //if true, setting up the keyboard. Otherwise, it's controller
|
|
|
|
void onTabChanged(MyGUI::TabControl* _sender, size_t index);
|
|
void onOkButtonClicked(MyGUI::Widget* _sender);
|
|
void onTextureFilteringChanged(MyGUI::ComboBox* _sender, size_t pos);
|
|
void onSliderChangePosition(MyGUI::ScrollBar* scroller, size_t pos);
|
|
void onButtonToggled(MyGUI::Widget* _sender);
|
|
void onResolutionSelected(MyGUI::ListBox* _sender, size_t index);
|
|
void onResolutionAccept();
|
|
void onResolutionCancel();
|
|
void highlightCurrentResolution();
|
|
|
|
void onWaterTextureSizeChanged(MyGUI::ComboBox* _sender, size_t pos);
|
|
|
|
void onRebindAction(MyGUI::Widget* _sender);
|
|
void onInputTabMouseWheel(MyGUI::Widget* _sender, int _rel);
|
|
void onResetDefaultBindings(MyGUI::Widget* _sender);
|
|
void onResetDefaultBindingsAccept ();
|
|
void onKeyboardSwitchClicked(MyGUI::Widget* _sender);
|
|
void onControllerSwitchClicked(MyGUI::Widget* _sender);
|
|
|
|
void onWindowResize(MyGUI::Window* _sender);
|
|
|
|
void apply();
|
|
|
|
void configureWidgets(MyGUI::Widget* widget);
|
|
void updateSliderLabel(MyGUI::ScrollBar* scroller, const std::string& value);
|
|
|
|
void layoutControlsBox();
|
|
|
|
private:
|
|
void resetScrollbars();
|
|
};
|
|
}
|
|
|
|
#endif
|