SpinButton.this

This is a convenience constructor that allows creation of a numeric gtk.SpinButton without manually creating an adjustment. The value is initially set to the minimum value and a page increment of 10 * step is the default. The precision of the spin button is equivalent to the precision of step.

Note that the way in which the precision is derived works best if step is a power of ten. If the resulting precision is not suitable for your needs, use SpinButton.setDigits to correct it.

  1. this(GtkSpinButton* gtkSpinButton, bool ownedRef)
  2. this(Adjustment adjustment, double climbRate, uint digits)
  3. this(double min, double max, double step)
    class SpinButton
    this
    (
    double min
    ,
    double max
    ,
    double step
    )

Parameters

min double

Minimum allowable value

max double

Maximum allowable value

step double

Increment added or subtracted by spinning the widget

Return Value

The new spin button as a gtk.Widget

Throws

ConstructionException GTK+ fails to create the object.