home *** CD-ROM | disk | FTP | other *** search
- #ifndef _FontGrid_h_
- #define _FontGrid_h_
-
- typedef struct _FontGridRec *FontGridWidget;
- extern WidgetClass fontgridWidgetClass;
-
- #define XtNcellRows "cellRows"
- #define XtCCellRows "CellRows"
- #define XtNcellColumns "cellColumns"
- #define XtCCellColumns "CellColumns"
- #define XtNcellWidth "cellWidth"
- #define XtCCellWidth "CellWidth"
- #define XtNcellHeight "cellHeight"
- #define XtCCellHeight "CellHeight"
-
- #define XtNcenterChars "centerChars"
- #define XtCCenterChars "CenterChars"
-
- #define XtNboxChars "boxChars"
- #define XtCBoxChars "BoxChars"
-
- #define XtNboxColor "boxColor"
- #define XtCBoxColor "BoxColor"
-
- #define XtNstartChar "startChar"
- #define XtCStartChar "StartChar"
-
- #define XtNinternalPad "internalPad"
- #define XtCInternalPad "InternalPad"
-
- #define XtNgridWidth "gridWidth"
- #define XtCGridWidth "GridWidth"
-
- typedef struct _FontGridCharRec {
- XFontStruct * thefont;
- XChar2b thechar;
- } FontGridCharRec;
-
- extern void GetFontGridCellDimensions(
- #if NeedFunctionPrototypes
- Widget,
- Dimension *,
- int *,
- int *
- #endif
- );
-
- extern void GetPrevNextStates(
- #if NeedFunctionPrototypes
- Widget,
- Bool *,
- Bool *
- #endif
- );
-
- #endif /* _FontGrid_h_ */
-