| 269 | } |
| 270 | |
| 271 | void SpinButton::SetRange( float minimum, float maximum ) { |
| 272 | m_adjustment->SetLower( minimum ); |
| 273 | m_adjustment->SetUpper( maximum ); |
| 274 | |
| 275 | UpdateTextFromAdjustment(); |
| 276 | } |
| 277 | |
| 278 | unsigned int SpinButton::GetDigits() const { |
| 279 | return m_digits; |