XmALIGNMENT_BASELINE_TOP
XmALIGNMENT_CONTENTS_BOTTOM
XmALIGNMENT_CENTER
XmALIGNMENT_CONTENTS_TOP
The resource only takes effect when the children of the RowColumn are arranged in rows, which means that the
XmNorientation is XmHORIZONTAL. The default value is XmALIGNMENT_CENTER, which causes the center of
all of the children in a row to be aligned.
12.1.6 Multi−line and Multi−font Labels
The fonts used within a Label are directly associated with the font list element tags used in the compound string
specified for the XmNlabelString resource. The XmNfontList resource for a Label specifies the mapping
between font list tags and font names that is used when displaying the text. Since a compound string may use multiple
character sets, a Label can display any number of fonts, as specified in the XmNlabelString for the Label. A
compound string may also contain embedded newlines. the source code shows the use of a Label to display a single
compound string that contains a monthly calendar. XtSetLanguageProc() is only available in X11R5; there is
no corresponding function in X11R4. XmFontListEntryCreate() is only available in Motif 1.2; there is no
corresponding function in Motif 1.1. XmFontListAppendEntry() is only available in Motif 1.2;
XmFontListCreate() and XmFontListAdd() are the corresponding functions in Motif 1.1.
XmFONTLIST_DEFAULT_TAG replaces XmSTRING_DEFAULT_CHARSET in Motif 1.2.
/* xcal.c −− display a monthly calendar. The month displayed is a
* single Label widget whose text is generated ...