gtk.FileChooserButton — a button to launch a gtk.FileChooserDialog (new in PyGTK 2.6)
class gtk.FileChooserButton(gtk.HBox): |
+-- gobject.GObject +-- gtk.Object +-- gtk.Widget +-- gtk.Container +-- gtk.Box +-- gtk.HBox +-- gtk.FileChooserButton |
|
This widget is available in PyGTK 2.6 and above.
The gtk.FileChooserButton is a widget that lets the user select a file. It implements the gtk.FileChooser interface. Visually, it is a file name with a button to bring up a gtk.FileChooserDialog. The user can then use that dialog to change the file associated with that button. This widget does not support setting the "select-multiple" property to TRUE. For example to create a gtk.FileChooserButton and set the current folder to '/etc' use:
filechooserbutton = gtk.FileChooserButton('Select a File') filechooserbutton.set_current_folder('/etc') |
The gtk.FileChooserButton supports the gtk.FILE_CHOOSER_ACTION_OPEN and gtk.FILE_CHOOSER_ACTION_SELECT_FOLDER actions of the GTK FileChooser Action Constants.
The gtk.FileChooserButton will ellipsize the label, and thus will thus request little horizontal space. To give the button more space, you should call the gtk.Widget.size_request() method, the set_width_chars() method, or pack the button in such a way that other interface elements give space to the widget.
|
title : | the title of the browse dialog |
backend : | the name of a file system backend or None |
Returns : | a new gtk.FileChooserButton |
This constructor is available in PyGTK 2.6 and above.
Creates a new button widget that opens a gtk.FileChooserDialog when clicked. The title of the gtk.FileChooserDialog is specified by title. If backend is specified it is the name of a file system backend.
|
dialog : | a gtk.FileChooserDialog |
Returns : | a new gtk.FileChooserButton |
This constructor is available in PyGTK 2.6 and above.
Creates a new button widget that opens a gtk.FileChooserDialog specified by dialog when clicked.
|
Returns : | the title of the gtk.FileChooserDialog |
This method is available in PyGTK 2.6 and above.
The get_title() method returns the value of the "title" property which contains the title of the associated gtk.FileChooserDialog.
|
title : | a string to use as the title of the associated gtk.FileChooserDialog. |
This method is available in PyGTK 2.6 and above.
The set_title() method sets the "title" property to the value of title. The "title" property contains the title string of the associated gtk.FileChooserDialog.
|
Returns :, :, | the width in characters of the button |
This method is available in PyGTK 2.6 and above.
The get_width_chars() method returns the value of the "width-characters" property which contains the number of characters the button width should be set to.
|
n_chars : | the width in characters for the button |
This method is available in PyGTK 2.6 and above.
The set_width_chars() method sets the "width-chars" property to the value of n_chars. The "width-chars" property contains the width in characters that the button should be set to.