diff options
Diffstat (limited to 'src/gdisp/gdisp.h')
-rw-r--r-- | src/gdisp/gdisp.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gdisp/gdisp.h b/src/gdisp/gdisp.h index 338ec5a0..8a573456 100644 --- a/src/gdisp/gdisp.h +++ b/src/gdisp/gdisp.h @@ -69,8 +69,8 @@ typedef enum gJustify { gJustifyPad = 0x00, /**< Pad the text box (the default) */ gJustifyNoPad = 0x04 /**< No padding the text box */ } gJustify; -#define JUSTIFYMASK_LEFTRIGHT (gJustifyLeft|gJustifyCenter|gJustifyRight) -#define JUSTIFYMASK_TOPBOTTOM (gJustifyTop|gJustifyMiddle|gJustifyBottom) +#define JUSTIFYMASK_HORIZONTAL (gJustifyLeft|gJustifyCenter|gJustifyRight) +#define JUSTIFYMASK_VERTICAL (gJustifyTop|gJustifyMiddle|gJustifyBottom) /** * @enum gFontmetric @@ -1251,6 +1251,8 @@ void gdispGDrawBox(GDisplay *g, gCoord x, gCoord y, gCoord cx, gCoord cy, gColor #define justifyNoWordWrap gJustifyNoWordWrap #define justifyPad gJustifyPad #define justifyNoPad gJustifyNoPad + #define JUSTIFYMASK_LEFTRIGHT JUSTIFYMASK_HORIZONTAL + #define JUSTIFYMASK_TOPBOTTOM JUSTIFYMASK_VERTICAL typedef gFontmetric fontmetric_t; #define fontHeight gFontHeight #define fontDescendersHeight gFontDescendersHeight |