Class: Wx::SystemFont

Inherits:
Enum
  • Object
show all
Defined in:
lib/wx/doc/gen/system_settings.rb

Overview

Possible values for Wx::SystemSettings.get_font parameter.

These values map 1:1 the native values supported by the Windows' GetStockObject function. Note that other ports (other than WXMSW) will try to provide meaningful fonts but they usually map the same font to various wxSYS_*_FONT values.

Constant Summary collapse

SYS_OEM_FIXED_FONT =

Original equipment manufacturer dependent fixed-pitch font.

Wx::SystemFont.new(10)
SYS_ANSI_FIXED_FONT =

Windows fixed-pitch (monospaced) font.

Wx::SystemFont.new(11)
SYS_ANSI_VAR_FONT =

Windows variable-pitch (proportional) font.

Wx::SystemFont.new(12)
SYS_SYSTEM_FONT =

System font.

Wx::SystemFont.new(13)
SYS_DEVICE_DEFAULT_FONT =

Device-dependent font.

Wx::SystemFont.new(14)
SYS_DEFAULT_GUI_FONT =

Default font for user interface objects such as menus and dialog boxes.

Wx::SystemFont.new(17)