home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Linux / Enlightenment / enl_DR-0.10.tar.gz / enl_DR-0.10.tar / enl / status.h < prev    next >
C/C++ Source or Header  |  1997-05-25  |  1KB  |  56 lines

  1. struct swlist
  2. {
  3.    struct swlist *next;
  4.    Window win;
  5.    Pixmap pmap;
  6.    Pixmap mask;
  7. };
  8.  
  9. struct scfg_
  10. {
  11.    char *icons_bg;
  12.    ImColor *icons_icl;
  13.    int icons_x;
  14.    int icons_y;
  15.    int icons_w;
  16.    int icons_h;
  17.    Pixmap icons_pmap;
  18.    Pixmap icons_mask;
  19.    Window icons_win;
  20.    char *iconsbox_bg;
  21.    ImColor *iconsbox_icl;
  22.    int iconsbox_x;
  23.    int iconsbox_y;
  24.    int iconsbox_w;
  25.    int iconsbox_h;
  26.    Pixmap iconsbox_pmap;
  27.    Pixmap iconsbox_mask;
  28.    Window iconsbox_win;
  29.    char *text_bg;
  30.    ImColor *text_icl;
  31.    int text_x;
  32.    int text_y;
  33.    int text_w;
  34.    int text_h;
  35.    Pixmap text_pmap;
  36.    Pixmap text_mask;
  37.    Window text_win;
  38.    char *textbox_bg;
  39.    ImColor *textbox_icl;
  40.    int textbox_x;
  41.    int textbox_y;
  42.    int textbox_w;
  43.    int textbox_h;
  44.    Pixmap textbox_pmap;
  45.    Pixmap textbox_mask;
  46.    Window textbox_win;
  47.    int nexticon_y;
  48.    int nexticon_x;
  49.    struct swlist *iconwin_list;
  50. };
  51.  
  52. void Init_StatusWin();
  53. void Kill_StatusWin();
  54. void ShowStatus(char *text, char *icon, ImColor *icl);
  55.  
  56.