gtk-0.15.0: Binding to the Gtk+ graphical user interface library.

Maintainergtk2hs-users@lists.sourceforge.net
Stabilityprovisional
Portabilityportable (depends on GHC)
Safe HaskellNone
LanguageHaskell98

Graphics.UI.Gtk.Selectors.FileChooserWidget

Contents

Description

File chooser widget that can be embedded in other widgets

  • Module available since Gtk+ version 2.4
Synopsis

Detail

FileChooserWidget is a widget suitable for selecting files. It is the main building block of a FileChooserDialog. Most applications will only need to use the latter; you can use FileChooserWidget as part of a larger window if you have special needs.

Note that FileChooserWidget does not have any methods of its own. Instead, you should use the functions that work on a FileChooser.

Class Hierarchy

| GObject
| +----Object
| +----Widget
| +----Container
| +----Box
| +----VBox
| +----FileChooserWidget

Types

data FileChooserWidget Source #

Instances
Eq FileChooserWidget Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

Ord FileChooserWidget Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

GObjectClass FileChooserWidget Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

FileChooserClass FileChooserWidget Source # 
Instance details

Defined in Graphics.UI.Gtk.Selectors.FileChooserWidget

FileChooserWidgetClass FileChooserWidget Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

VBoxClass FileChooserWidget Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

BoxClass FileChooserWidget Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

ContainerClass FileChooserWidget Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

WidgetClass FileChooserWidget Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

ObjectClass FileChooserWidget Source # 
Instance details

Defined in Graphics.UI.Gtk.Types

Constructors

fileChooserWidgetNew Source #

Arguments

:: FileChooserAction

action - Open or save mode for the widget

-> IO FileChooserWidget 

Creates a new FileChooserWidget. This is a file chooser widget that can be embedded in custom windows, and it is the same widget that is used by FileChooserDialog.

fileChooserWidgetNewWithBackend Source #

Arguments

:: FileChooserAction

action - Open or save mode for the widget

-> String

backend - The name of the specific filesystem backend to use.

-> IO FileChooserWidget 

Creates a new FileChooserWidget with a specified backend. This is especially useful if you use fileChooserSetLocalOnly to allow non-local files. This is a file chooser widget that can be embedded in custom windows and it is the same widget that is used by FileChooserDialog.

Removed in Gtk3.

Orphan instances