I am using Tkinter
with Python 2.6
and 2.7
for programming graphic user interfaces.
These User Interfaces contain dialogs for opening files and saving data from the tkFileDialog
module. I would like to adapt the dialogs and add some further entry widgets e.g. for letting the user leave comments.
Is there any way for doing so?
It seems that the file dialogs are taken directly from the operating system. In Tkinter
they are derived from the Dialog class in the tkCommonDialog
module and call the tk.call("tk_getSaveFile")
method of a frame widget (in this case for saving data).
I could not find out where this method is defined.