Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-01 08:52:27

0001 typedef struct _KmIcon {        /*                                         */ __
0002   struct _KmIcon *next;         /* link to next icon                       */ __
0003   char       *name;             /* unique identifier name                  */ __
0004   int         width;            /* width of the pixmap                     */ __
0005   int         height;           /* height of the pixmap                    */ __
0006   char       *bitmap;           /* bitmap data                             */ __
0007   KmPixmap    pix;              /* filled in Motif part                    */ __
0008   KmPixmap    hi_pix;           /* high lighted pixmap                     */ __
0009 } KmIcon;                       /*                                         */ __
0010                                 /*                                         */ __
0011 typedef struct _KmClass {       /*                                         */ __
0012   struct _KmClass *next;        /* link to next object class               */ __
0013   int         is_dir;           /* flag if class has is a directory        */ __
0014   char       *name;             /* unique identifier name                  */ __
0015   char       *title;            /* title for popup menu (maybe NULL)       */ __
0016   char       *big_icon;         /* name of the big icon                    */ __
0017   KmIcon     *bicon;            /* pointer to the big icon structure       */ __
0018   char       *sm_icon;          /* name of the small icon                  */ __
0019   KmIcon     *sicon;            /* pointer to the small icon structure     */ __
0020   SUBROUTINE *user_icon_F;      /* user function to return icon bitmap     */ __
0021   IntFunc    *user_icon_C;      /* user function to return icon bitmap     */ __
0022   BrAction   *cont;             /* list of actions in content window       */ __
0023   BrAction   *graf;             /* list of actions in graphics window      */ __
0024   int         obj_count;        /* number of objects in content window     */ __
0025 } KmClass;                      /*                                         */ __
0026                                 /*                                         */ __