ultimatepp/upptst/Spin/main.cpp
cxl 61e73007ac .upptst
git-svn-id: svn://ultimatepp.org/upp/trunk@11048 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2017-05-01 14:53:36 +00:00

23 lines
465 B
C++

#include "Spin.h"
Spin::Spin()
{
CtrlLayout(*this, "Window title");
int_2.SetInc(5);
int64_2.SetInc(5);
double_2.SetInc(5);
date_2.SetInc(5);
time_2.SetInc(5);
int_3.RoundFromMin().SetInc(5).Min(3);
int64_3.RoundFromMin().SetInc(5).Min(3);
double_3.RoundFromMin().SetInc(5).Min(3);
date_3.RoundFromMin().SetInc(5).Min(Date(1970, 1, 1));
time_3.RoundFromMin().SetInc(5).Min(Time(1970, 1, 1));
}
GUI_APP_MAIN
{
Spin().Run();
}