GimpUi.query_int_box

@accepts(unicode, Gtk.Widget, GimpUi.HelpFunc, unicode, unicode, int, int, int, GObject.Object, unicode, GimpUi.QueryIntCallback, gpointer, GLib.DestroyNotify)
@returns(Gtk.Widget)
def query_int_box(title, parent, help_func, help_id, message, initial, lower, upper, object, signal, callback, data, data_destroy):
    # Python wrapper for gimp_query_int_box()
  

Creates a new Gtk.Dialog that queries the user for an integer value.

title

The query box dialog's title.

parent

The dialog's parent widget.

help_func

The help function to show this dialog's help page.

help_id

A string identifying this dialog's help page.

message

A string which will be shown above the dialog's entry widget.

initial

The initial value.

lower

The lower boundary of the range of possible values.

upper

The upper boundray of the range of possible values.

object

The object this query box is associated with.

signal

The object's signal which will cause the query box to be closed.

callback

The function which will be called when the user selects "OK".

data

The callback's user data.

data_destroy

Destroy function for data.

Returns