font.h

Enumerado wxFontFlag

enum  	wxFontFlag {
  wxFONTFLAG_DEFAULT = 0 ,
  wxFONTFLAG_ITALIC = 1 << 0 ,
  wxFONTFLAG_SLANT = 1 << 1 ,
  wxFONTFLAG_LIGHT = 1 << 2 ,
  wxFONTFLAG_BOLD = 1 << 3 ,
  wxFONTFLAG_ANTIALIASED = 1 << 4 ,
  wxFONTFLAG_NOT_ANTIALIASED = 1 << 5 ,
  wxFONTFLAG_UNDERLINED = 1 << 6 ,
  wxFONTFLAG_STRIKETHROUGH = 1 << 7 ,
  wxFONTFLAG_MASK
}

Los bits de bandera de fuente para el nuevo constructor de fuente aceptando una palabra de banderas combinadas.

Miembros/valores

wxFONTFLAG_DEFAULT
Sin banderas especiales: fuente con peso/slant/anti-aliasing por defecto.
wxFONTFLAG_ITALIC
Bandera de inclinación (por defecto: sin inclinación).
wxFONTFLAG_SLANT
wxFONTFLAG_LIGHT
Bandera de peso (por defecto: medio).
wxFONTFLAG_BOLD
wxFONTFLAG_ANTIALIASED
Bandera anti-aliasing: activar o desactivar (por defecto: el valor por defecto del sistema actual).
wxFONTFLAG_NOT_ANTIALIASED
wxFONTFLAG_UNDERLINED
Estilo de subrayado (no subrayado por defecto).
wxFONTFLAG_STRIKETHROUGH
Estilo tachado (implementado en MSW, GTK, y wxOSX).
wxFONTFLAG_MASK
Máscara de todas las banderas utilizadas actualmente.