gtk3-0.13.0.3: 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.FontSelectionDialog

Contents

Description

A dialog box for selecting fonts

Synopsis

Detail

The FontSelectionDialog widget is a dialog box for selecting a font.

To set the font which is initially selected, use fontSelectionDialogSetFontName.

To get the selected font use fontSelectionDialogGetFontName.

To change the text which is shown in the preview area, use fontSelectionDialogSetPreviewText.

Class Hierarchy

| GObject
| +----Object
| +----Widget
| +----Container
| +----Bin
| +----Window
| +----Dialog
| +----FontSelectionDialog

Types

Constructors

fontSelectionDialogNew Source

Arguments

:: GlibString string 
=> string

title - the title of the dialog box.

-> IO FontSelectionDialog 

Creates a new FontSelectionDialog.

Methods

fontSelectionDialogGetFontName Source

Arguments

:: (FontSelectionDialogClass self, GlibString string) 
=> self 
-> IO (Maybe string)

returns the currently-selected font name, or Nothing if no font is selected.

Gets the currently-selected font name.

fontSelectionDialogSetFontName Source

Arguments

:: (FontSelectionDialogClass self, GlibString string) 
=> self 
-> string

fontname - a fontname.

-> IO Bool

returns True if the font was found.

Sets the currently-selected font.

fontSelectionDialogGetPreviewText :: (FontSelectionDialogClass self, GlibString string) => self -> IO string Source

Gets the text displayed in the preview area.

fontSelectionDialogSetPreviewText :: (FontSelectionDialogClass self, GlibString string) => self -> string -> IO () Source

Sets the text displayed in the preview area.

fontSelectionDialogGetCancelButton Source

Arguments

:: FontSelectionDialogClass self 
=> self 
-> IO Widget

returns the Widget used in the dialog for the Cancel button.

Gets the Cancel button.

  • Available since Gtk+ version 2.14

fontSelectionDialogGetOkButton Source

Arguments

:: FontSelectionDialogClass self 
=> self 
-> IO Widget

returns the Widget used in the dialog for the OK button.

Gets the OK button.

  • Available since Gtk+ version 2.14

fontSelectionDialogGetFontSelection Source

Arguments

:: FontSelectionDialogClass self 
=> self 
-> IO FontSelection

returns the embedded FontSelection

Retrieves the FontSelection widget embedded in the dialog.

  • Available since Gtk+ version 2.22

Attributes