mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-05-28 13:44:49 +00:00
43 lines
1.0 KiB
C++
43 lines
1.0 KiB
C++
#pragma once
|
|
|
|
#include "UIControl_Base.h"
|
|
|
|
class UIControl_Slider : public UIControl_Base
|
|
{
|
|
private:
|
|
//int m_id; // 4J-TomK this is part of class UIControl and doesn't need to be here!
|
|
int m_min;
|
|
int m_max;
|
|
int m_current;
|
|
bool m_hasFocus;
|
|
|
|
vector<wstring> m_allPossibleLabels;
|
|
|
|
// 4J-TomK - function for setting slider position on touch
|
|
IggyName m_funcSetRelativeSliderPos;
|
|
IggyName m_funcGetRealWidth;
|
|
// TU25
|
|
IggyName m_funcChangeState;
|
|
IggyName m_funcSetSliderValue;
|
|
|
|
public:
|
|
UIControl_Slider();
|
|
|
|
virtual bool setupControl(UIScene *scene, IggyValuePath *parent, const string &controlName);
|
|
|
|
void init(UIString label, int id, int min, int max, int current);
|
|
|
|
void setFocus(bool hasFocus);
|
|
virtual bool hasFocus() { return m_hasFocus; }
|
|
void handleSliderMove(int newValue);
|
|
void SetSliderTouchPos(float fTouchPos);
|
|
virtual void SetSliderValue(int value);
|
|
virtual void setAllPossibleLabels(int labelCount, wchar_t labels[][256]);
|
|
|
|
void MoveSliderValue(int delta);
|
|
int getCurrentValue();
|
|
|
|
S32 GetRealWidth();
|
|
virtual void ReInit();
|
|
};
|