home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 2: Applications / Linux Cubed Series 2 - Applications.iso / editors / emacs / xemacs / xemacs-1.004 / xemacs-1 / xemacs-19.13 / lisp / oobr / tree-x / rsrc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-25  |  1.1 KB  |  35 lines

  1. #define TrNbackgroundColor "backgroundColor"
  2. #define TrNtreeColor       "treeColor"
  3. #define TrNcontourColor    "contourColor"
  4. #define TrNsplitColor      "splitColor"
  5. #define TrNhighlightColor  "highlightColor"
  6. #define TrNactionColor     "actionColor"   
  7. #define TrNcontourWidth    "contourWidth"
  8.  
  9. #define TrCBackgroundColor "BackgroundColor"
  10. #define TrCTreeColor       "TreeColor"
  11. #define TrCContourColor    "ContourColor"
  12. #define TrCSplitColor      "SplitColor"
  13. #define TrCHighlightColor  "HighlightColor"
  14. #define TrCActionColor     "ActionColor"    
  15. #define TrCContourWidth    "ContourWidth"
  16.  
  17. #define TrDefaultBackgroundColor "white"
  18. #define TrDefaultTreeColor       "black"
  19. #define TrDefaultContourColor    "MediumSlateBlue"
  20. #define TrDefaultSplitColor      "goldenrod"
  21. #define TrDefaultHighlightColor  "OrangeRed"
  22. #define TrDefaultActionColor     "OrangeRed"
  23. #define TrDefaultContourWidth    2
  24.  
  25. typedef struct {
  26.    Pixel background_color;
  27.    Pixel tree_color;
  28.    Pixel contour_color;
  29.    Pixel split_color;
  30.    Pixel highlight_color;
  31.    Pixel action_color;
  32.    int   contour_width;
  33. } ApplRsrcData, *ApplRsrcDataPtr;
  34.  
  35.