Class: Wx::FontFlag
Overview
The font flag bits for the new font ctor accepting one combined flags word.
Constant Summary collapse
- FONTFLAG_DEFAULT =
no special flags: font with default weight/slant/anti-aliasing
Wx::FontFlag.new(0)
- FONTFLAG_ITALIC =
slant flags (default: no slant)
Wx::FontFlag.new(1)
- FONTFLAG_SLANT =
Wx::FontFlag.new(2)
- FONTFLAG_LIGHT =
weight flags (default: medium)
Wx::FontFlag.new(4)
- FONTFLAG_BOLD =
Wx::FontFlag.new(8)
- FONTFLAG_ANTIALIASED =
anti-aliasing flag: force on or off (default: the current system default)
Wx::FontFlag.new(16)
- FONTFLAG_NOT_ANTIALIASED =
Wx::FontFlag.new(32)
- FONTFLAG_UNDERLINED =
Underlined style (not underlined by default).
Wx::FontFlag.new(64)
- FONTFLAG_STRIKETHROUGH =
Strike-through style (implemented in MSW, GTK, and WXOSX)
Wx::FontFlag.new(128)
- FONTFLAG_MASK =
the mask of all currently used flags
Wx::FontFlag.new(255)
Method Summary
Methods inherited from Enum
#!, #&, #<=>, #allbits?, #anybits?, #coerce, #eql?, #initialize, #inspect, #integer?, #method_missing, #nobits?, #real?, #succ, #to_int, #to_s, #|, #~
Constructor Details
This class inherits a constructor from Wx::Enum
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Wx::Enum