2016-03-10 03:47:37 +00:00
|
|
|
#ifndef __URDE_CGUISLIDERGROUP_HPP__
|
|
|
|
#define __URDE_CGUISLIDERGROUP_HPP__
|
|
|
|
|
2016-03-11 00:23:16 +00:00
|
|
|
#include "CGuiCompoundWidget.hpp"
|
2016-03-17 22:19:25 +00:00
|
|
|
#include <functional>
|
2016-03-10 03:47:37 +00:00
|
|
|
|
|
|
|
namespace urde
|
|
|
|
{
|
|
|
|
|
2016-03-11 00:23:16 +00:00
|
|
|
class CGuiSliderGroup : public CGuiCompoundWidget
|
|
|
|
{
|
2017-01-13 00:16:26 +00:00
|
|
|
public:
|
|
|
|
enum class EState
|
|
|
|
{
|
|
|
|
None,
|
|
|
|
Decreasing,
|
|
|
|
Increasing
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
float xb8_minVal;
|
|
|
|
float xbc_maxVal;
|
|
|
|
float xc0_roundedCurVal;
|
|
|
|
float xc4_curVal;
|
|
|
|
float xc8_increment;
|
|
|
|
CGuiWidget* xcc_sliderRangeWidgets[2] = {};
|
|
|
|
std::function<void(CGuiSliderGroup*, float)> xd8_changeCallback;
|
|
|
|
EState xf0_state = EState::None;
|
|
|
|
union {
|
|
|
|
struct
|
|
|
|
{
|
|
|
|
bool xf4_24_inputPending : 1;
|
|
|
|
};
|
|
|
|
u8 _dummy = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
void StartDecreasing();
|
|
|
|
void StartIncreasing();
|
|
|
|
|
2016-03-11 00:23:16 +00:00
|
|
|
public:
|
2016-03-17 22:19:25 +00:00
|
|
|
CGuiSliderGroup(const CGuiWidgetParms& parms, float a, float b, float c, float d);
|
|
|
|
FourCC GetWidgetTypeID() const {return FOURCC('SLGP');}
|
2016-03-11 00:23:16 +00:00
|
|
|
|
2017-01-13 00:16:26 +00:00
|
|
|
EState GetState() const { return xf0_state; }
|
2017-01-10 07:15:49 +00:00
|
|
|
void SetSelectionChangedCallback(std::function<void(CGuiSliderGroup*, float)>&& func);
|
2017-01-13 00:16:26 +00:00
|
|
|
void SetIncrement(float inc) { xc8_increment = inc; }
|
|
|
|
void SetMinVal(float min) { xb8_minVal = min; SetCurVal(xc0_roundedCurVal); }
|
|
|
|
void SetMaxVal(float max) { xbc_maxVal = max; SetCurVal(xc0_roundedCurVal); }
|
2016-03-17 22:19:25 +00:00
|
|
|
void SetCurVal(float cur);
|
2017-01-13 00:16:26 +00:00
|
|
|
float GetGurVal() const { return xc0_roundedCurVal; }
|
|
|
|
|
|
|
|
void ProcessUserInput(const CFinalInput& input);
|
|
|
|
void Update(float dt);
|
2016-03-17 22:19:25 +00:00
|
|
|
|
|
|
|
bool AddWorkerWidget(CGuiWidget* worker);
|
|
|
|
CGuiWidget* GetWorkerWidget(int id);
|
|
|
|
|
|
|
|
static CGuiSliderGroup* Create(CGuiFrame* frame, CInputStream& in, bool flag);
|
2016-03-11 00:23:16 +00:00
|
|
|
};
|
2016-03-10 03:47:37 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __URDE_CGUISLIDERGROUP_HPP__
|