mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-16 06:30:05 +00:00
ab8f16961e
Apply clang-format-all.sh using the _clang-format file through all the cpp/.h files. make sure not to apply it to certain serialization structures, since some parser expects the * as part of the name, instead of type. This commit contains no other changes aside from adding and applying clang-format-all.sh
62 lines
1.7 KiB
C++
62 lines
1.7 KiB
C++
#include "UnitTest.h"
|
|
#include "Gwen/Controls/RadioButtonController.h"
|
|
#include "Gwen/Controls/VerticalSlider.h"
|
|
#include "Gwen/Controls/HorizontalSlider.h"
|
|
|
|
using namespace Gwen;
|
|
|
|
class Slider : public GUnit
|
|
{
|
|
public:
|
|
GWEN_CONTROL_INLINE(Slider, GUnit)
|
|
{
|
|
{
|
|
Gwen::Controls::HorizontalSlider* pSlider = new Gwen::Controls::HorizontalSlider(this);
|
|
pSlider->SetPos(10, 10);
|
|
pSlider->SetSize(150, 20);
|
|
pSlider->SetRange(0, 100);
|
|
pSlider->SetValue(25);
|
|
pSlider->onValueChanged.Add(this, &Slider::SliderMoved);
|
|
}
|
|
|
|
{
|
|
Gwen::Controls::HorizontalSlider* pSlider = new Gwen::Controls::HorizontalSlider(this);
|
|
pSlider->SetPos(10, 40);
|
|
pSlider->SetSize(150, 20);
|
|
pSlider->SetRange(0, 100);
|
|
pSlider->SetValue(25);
|
|
pSlider->SetNotchCount(10);
|
|
pSlider->SetClampToNotches(true);
|
|
pSlider->onValueChanged.Add(this, &Slider::SliderMoved);
|
|
}
|
|
|
|
{
|
|
Gwen::Controls::VerticalSlider* pSlider = new Gwen::Controls::VerticalSlider(this);
|
|
pSlider->SetPos(160, 10);
|
|
pSlider->SetSize(20, 200);
|
|
pSlider->SetRange(0, 100);
|
|
pSlider->SetValue(25);
|
|
pSlider->onValueChanged.Add(this, &Slider::SliderMoved);
|
|
}
|
|
|
|
{
|
|
Gwen::Controls::VerticalSlider* pSlider = new Gwen::Controls::VerticalSlider(this);
|
|
pSlider->SetPos(190, 10);
|
|
pSlider->SetSize(20, 200);
|
|
pSlider->SetRange(0, 100);
|
|
pSlider->SetValue(25);
|
|
pSlider->SetNotchCount(10);
|
|
pSlider->SetClampToNotches(true);
|
|
pSlider->onValueChanged.Add(this, &Slider::SliderMoved);
|
|
}
|
|
}
|
|
|
|
void SliderMoved(Base* pControl)
|
|
{
|
|
Gwen::Controls::Slider* pSlider = (Gwen::Controls::Slider*)pControl;
|
|
|
|
UnitPrint(Utility::Format(L"Slider Value: %.2f", pSlider->GetValue()));
|
|
}
|
|
};
|
|
|
|
DEFINE_UNIT_TEST(Slider, L"Slider"); |