X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Finternal-gui.h;h=4a7e9e0d2c42b59da669c6b16fe99e1653ff52af;hb=c42974a7971c8d3bcd6e9356418d3f2182f7b08b;hp=8e0e89258793f1a8afcf0430331eb408fc6b628b;hpb=753496f8d6ec58fd5e1aabdd312b1320954343c0;p=m17n%2Fm17n-lib.git diff --git a/src/internal-gui.h b/src/internal-gui.h index 8e0e892..4a7e9e0 100644 --- a/src/internal-gui.h +++ b/src/internal-gui.h @@ -110,12 +110,18 @@ enum glyph_type GLYPH_TYPE_MAX }; +enum glyph_category + { + GLYPH_CATEGORY_NORMAL, + GLYPH_CATEGORY_MODIFIER, + GLYPH_CATEGORY_FORMATTER + }; + typedef struct { int pos, to; int c; unsigned code; - MSymbol category; MRealizedFace *rface; short width, ascent, descent, lbearing, rbearing; short xoff, yoff; @@ -124,6 +130,7 @@ typedef struct unsigned right_padding : 1; unsigned otf_encoded : 1; unsigned bidi_level : 6; + enum glyph_category category : 2; enum glyph_type type : 3; int combining_code; } MGlyph; @@ -137,24 +144,18 @@ struct MGlyphString int size, inc, used; MGlyph *glyphs; - MText *mt; int from, to; short width, height, ascent, descent; short physical_ascent, physical_descent, lbearing, rbearing; short text_ascent, text_descent, line_ascent, line_descent; int indent, width_limit; - /* Members to keep temporary data while layouting. */ - short sub_width, sub_lbearing, sub_rbearing; - /* Copied for .anti_alias but never set if the frame's depth is less than 8. */ unsigned anti_alias : 1; MDrawControl control; - MDrawRegion region; - struct MGlyphString *next, *top; }; @@ -274,6 +275,8 @@ struct MDeviceDriver MSymbol (*parse_event) (MFrame *frame, void *arg, int *modifiers); }; +extern MSymbol Mlatin; + extern MSymbol Mgd; extern int mfont__init ();