Font:
Filter:
Classes | GUI > Accessories

Font : Object

A font object
Source: QFont.sc
Subclasses: QFont

Description

This is the object you pass to other gui objects to set their font name or size.

Class Methods

Font.new(name, size, bold: false, italic: false, usePointSize: false)

Arguments:

name

An instance of String. Must coincide with the name of a font on the system. See *availableFonts.

size

An instance of Float.

bold

A Boolean.

italic

A Boolean.

usePointSize

A Boolean. Whether to regard the size argument as point-size - adapting to the screen resolution.

Discussion:

Example:

Font.availableFonts

Returns:

Array of the available fonts.

Font.antiAliasing = flag

Arguments:

flag

An instance of Boolean. Default value is false.

Font.smoothing = flag

Arguments:

flag

An instance of Boolean. Default value is false.

Font.defaultSansFace

Returns:

The default sans serif face Font.

Font.defaultSerifFace

Returns:

The default serif face Font.

Font.defaultMonoFace

Returns:

The default monospace face Font.

Font.default

Font.default = font

The global default Font.

Setting this property is equivalent to Font.setDefault(font). See *setDefault for details.

Font.setDefault(font, class)

Sets the global default font. Properties of the font argument will be combined with properties of the default system font, and those of individual views.

Optionally, a class can be given, so only views of that class will be affected.

Note that this will immediately affect any existing views.

Arguments:

font

An instance of Font.

class

A Class (either View or one of its subclasses), or nil.

Font.sansSerif(size, bold: false, italic: false, usePointSize: false)

Create a new sans serif face Font.

Font.monospace(size, bold: false, italic: false, usePointSize: false)

Create a new monospace face Font.

Font.serif(size, bold: false, italic: false, usePointSize: false)

Create a new serif face Font.

Inherited class methods

Undocumented class methods

Font.prDefaultFamilyForStyle(style: -1)

Font.prSetDefault(font, className)

Instance Methods

.name

.name = value

Gets/sets the name of the font.

Arguments:

(value)

An instance of String.

.size

.size = pixelSize

Gets/sets the size of the font. Setting this variable is always considered as setting the -pixelSize, while getting it will return any size set. See -hasPointSize for distinction.

Arguments:

pixelSize

A Float.

.hasPointSize

A Boolean variable indicating whether the -size is regarded as pixel-size (precise amount of pixels), or point-size (adapting to screen resolution). To change this, you need to set the size via -pixelSize or -pointSize.

.pixelSize

.pixelSize = pixelSize

Gets or sets the pixel-size of the font. When getting, returns nil if the font has point-size instead. See -hasPointSize for distinction.

Arguments:

pixelSize

Any number, but note that floats will be rounded to integer values when setting pixel-size.

.pointSize

.pointSize = pointSize

Gets or sets the point-size of the font. When getting, returns nil if the font has pixel-size instead. See -hasPointSize for distinction.

Arguments:

pointSize

A Float.

.setDefault(class)

Makes this instance of Font the default.

This is equivalent to calling *setDefault with this Font and the given class as arguments.

.storeArgs

(?)

Returns:

an Array, [ name, size ].

.boldVariant

NOTE: On the Cocoa GUI it appends "-Bold" to the name. This is only useful for fonts that have bold variants.

Returns:

Bold variant of the Font.

Inherited instance methods

Undocumented instance methods

.bold

.bold = value

.italic

.italic = value

Examples