all repos — openbox @ 3b77950a79bd2ad93ff69166ed782438ef4c6d13

openbox fork - make it a bit more like ryudo

add font weight and font slant enumerations
Dana Jansens danakj@orodu.net
commit

3b77950a79bd2ad93ff69166ed782438ef4c6d13

parent

ac6fe9800850a4ce31efc610720099b60c2b7ff2

1 files changed, 14 insertions(+), 0 deletions(-)

jump to
M render/render.hrender/render.h

@@ -84,6 +84,20 @@ RR_JUSTIFY_CENTER,

RR_JUSTIFY_RIGHT } RrJustify; +typedef enum { + RR_FONTWEIGHT_LIGHT, + RR_FONTWEIGHT_NORMAL, + RR_FONTWEIGHT_SEMIBOLD, + RR_FONTWEIGHT_BOLD, + RR_FONTWEIGHT_ULTRABOLD +} RrFontWeight; + +typedef enum { + RR_FONTSLANT_NORMAL, + RR_FONTSLANT_ITALIC, + RR_FONTSLANT_OBLIQUE +} RrFontSlant; + struct _RrSurface { RrSurfaceColorType grad; RrReliefType relief;