The GtkFileSelectionDialog class is the class for file selection dialogs.
This class subclasses the Object REXX Object class so all of its methods are also available to this class.
The class heirarchy
Object +---GtkFileSelectionDialog |
The methods for the GtkFileSelectionDialog class are documented below.
This method creates and initializes the dialog widget.
This is a example of how to create a file selection dialog widget.
filter = './*' title = 'File Selection' myfiledialog = .GtkFileSelectionDialog~new(filter, title) |
The new GtkFileSelectionDialog object.
This method runs the file selection dialog.
This is a example of how to run a file selection dialog.
myfiledialog~run() |
None.
The path/filename selected or a zero-length string if no slection was made.