The R Project SVN R

Rev

Rev 44272 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 44272 Rev 45475
Line 23... Line 23...
23
typedef enum {One_Font, Font_Set} R_FontType;
23
typedef enum {One_Font, Font_Set} R_FontType;
24
 
24
 
25
typedef struct R_XFont
25
typedef struct R_XFont
26
{
26
{
27
    R_FontType type;
27
    R_FontType type;
28
    XFontStruct *font;  
28
    XFontStruct *font;
29
    XFontSet fontset; 
29
    XFontSet fontset;
30
    int height;  
30
    int height;
31
    int ascent;
31
    int ascent;
32
    int descent;
32
    int descent;
33
} R_XFont;
33
} R_XFont;
34
 
34
 
35
 
35