tkSimpleDialog
 

# An Introduction to Tkinter
# tkSimpleDialog.py
#
# Copyright (c) 1997 by Fredrik Lundh
#
# fredrik@pythonware.com
# http://www.pythonware.com #


 Modules
                                                                                                                                                                                                                               
os
string
sys
_tkinter


 Classes
                                                                                                                                                                                                                               
Tkinter.Toplevel(Tkinter.BaseWidget, Tkinter.Wm)
Dialog
_QueryDialog
_QueryFloat
_QueryInteger
_QueryString


 class Dialog(Tkinter.Toplevel)
           no doc string
                                                                                                                                                                                                                     
__init__(self, parent, title=None)
no doc string
apply(self)
no doc string
body(self, master)
#
# construction hooks
buttonbox(self)
no doc string
cancel(self, event=None)
no doc string
ok(self, event=None)
#
# standard button semantics
validate(self)
#
# command hooks


 class _QueryDialog(Dialog)
           no doc string
                                                                                                                                                                                                                     
__init__(self, title, prompt, initialvalue=None, minvalue=None, maxvalue=None, parent=None)
no doc string
body(self, master)
no doc string
validate(self)
no doc string


 class _QueryFloat(_QueryDialog)
           no doc string
                                                                                                                                                                                                                     
getresult(self)
no doc string


 class _QueryInteger(_QueryDialog)
           no doc string
                                                                                                                                                                                                                     
getresult(self)
no doc string


 class _QueryString(_QueryDialog)
           no doc string
                                                                                                                                                                                                                     
getresult(self)
no doc string


 Functions
                                                                                                                                                                                                                               
askfloat(title, prompt, **kw)
no doc string
askinteger(title, prompt, **kw)
no doc string
askstring(title, prompt, **kw)
no doc string
float(no arg info)
float(x) -> floating point number
Convert a string or number to a floating point number, if possible.
int(no arg info)
int(x) -> integer
Convert a string or number to an integer, if possible.
A floating point argument will be truncated towards zero.