| 15 | Signal::SignalID SpinButton::OnValueChanged = 0; |
| 16 | |
| 17 | SpinButton::SpinButton() : |
| 18 | m_elapsed_time( 0.f ), |
| 19 | m_digits( 0 ), |
| 20 | m_decrease_pressed( false ), |
| 21 | m_increase_pressed( false ), |
| 22 | m_repeat_wait( true ) |
| 23 | { |
| 24 | } |
| 25 | |
| 26 | SpinButton::Ptr SpinButton::Create( float minimum, float maximum, float step ) { |
| 27 | auto adjustment = Adjustment::Create(); |
nothing calls this directly
no outgoing calls
no test coverage detected