.. Automatically generated file - do not modify.

.. function:: DictInputValue(dict, key, default=True, returnable=False)
    
    An input value that updates `key` in `dict`.
    
    `default`
        If true, this input can be editable by default.
    
    `returnable`
        If true, the value of this input will be returned when the
        user presses enter.

.. function:: FieldInputValue(object, field, default=True, returnable=False)
    
    An input value that updates `field` on `object`.
    
    `field`
        A string giving the name of the field.
    
    `default`
        If true, this input can be editable by default.
    
    `returnable`
        If true, the value of this input will be returned when the
        user presses enter.

.. function:: FilePageNameInputValue(pattern=u'Page {}', auto=u'Automatic saves', quick=u'Quick saves', page=None, default=False)
    
    An input value that updates the name of a file page.
    
    `pattern`
        This is used for the default name of a page. Python-style substition
        is performed, such that {} is replaced with the number of the page.
    
    `auto`
        The name of the autosave page.
    
    `quick`
        The name of the quicksave page.
    
    `page`
        If given, the number of the page to display. This should usually
        be left as None, to give the current page.
    
    `default`
        If true, this input can be editable by default.

.. function:: ScreenVariableInputValue(variable, default=True, returnable=False)
    
    An input value that updates variable.
    
    `variable`
        A string giving the name of the variable to update.
    
    `default`
        If true, this input can be editable by default.
    
    `returnable`
        If true, the value of this input will be returned when the
        user presses enter.

.. function:: VariableInputValue(variable, default=True, returnable=False)
    
    An input value that updates `variable`.
    
    `variable`
        A string giving the name of the variable to update.
    
    `default`
        If true, this input can be editable by default.
    
    `returnable`
        If true, the value of this input will be returned when the
        user presses enter.

