home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C++ / Applications / Nuntius 1.2 / src / Nuntius / Views.r < prev    next >
Encoding:
Text File  |  1994-02-20  |  3.1 KB  |  121 lines  |  [TEXT/MPS ]

  1. // Copyright © 1992 Peter Speck, speck@dat.ruc.dk. All rights reserved.
  2. // Views.r
  3.  
  4. /* ==============================   Includes   ================================= */
  5.  
  6. #ifndef _TYPES.R_
  7. #include "Types.r"
  8. #endif
  9.  
  10. #ifndef _MacAppTypes_
  11. #include "MacAppTypes.r"
  12. #endif
  13.  
  14. //#define XIncludeMyViewTypes TRUE
  15.  
  16. #ifndef __ViewTypes__
  17. #include "ViewTypes.r"
  18. #endif
  19.  
  20. #ifndef __RSRCGLOBALS__
  21. #include "RsrcGlobals.h"
  22. #endif
  23.  
  24. #include "FloatWindow.r"
  25.  
  26. #include "BalloonTypes.r"
  27.  
  28. /* ==============================   GroupTreeList   ================================= */
  29. resource 'TxSt' (kGroupTreeTextStyle, "kGroupTreeTextStyle") {
  30.     tsPlain, 10, black, "Geneva"
  31. };
  32. /* ==============================   GroupList   ================================= */
  33. resource 'TxSt' (kGroupListTextStyle, "kGroupListTextStyle") {
  34.     tsPlain, 10, black, "Geneva"
  35. };
  36. /* ==============================   DiscList   ================================= */
  37.  
  38. resource 'TxSt' (kDiscListViewTextStyle, "kDiscListViewTextStyle") {
  39.     tsPlain, 10, black, "Geneva"
  40. };
  41.  
  42. resource 'hdlg' (kDiscListViewHelp, "kDiscListViewHelp") {
  43.     HelpMgrVersion,
  44.     0,
  45.     hmDefaultOptions,
  46.     0,
  47.     0,
  48.     HMSkipItem {},
  49.     {
  50.     HMStringItem {
  51.         {0, 0}, {0, 0, 0, 0},
  52.         "This is the list of threads",
  53.         "", "", ""
  54.     },
  55.     HMStringItem {
  56.         {0, 0}, {0, 0, 0, 0},
  57.         "This is the subject of the article. If this field is empty, the article has the same subject as the one above",
  58.         "This article is not avaible", "", ""
  59.     },
  60.     HMStringItem {
  61.         {0, 0}, {0, 0, 0, 0},
  62.         "This field is contains a • as the article is new",
  63.         "This article is not avaible", "", ""
  64.     },
  65.     HMStringItem {
  66.         {0, 0}, {0, 0, 0, 0},
  67.         "This fields contains – as you have seen the article before, but not read it",
  68.         "This article is not avaible", "", ""
  69.     },
  70.     HMStringItem {
  71.         {0, 0}, {0, 0, 0, 0},
  72.         "This field contains nothing as you have read the article before",
  73.         "This article is not avaible", "", ""
  74.     },
  75.     HMStringItem {
  76.         {0, 0}, {0, 0, 0, 0},
  77.         "This is the author of the article with the subject to the left",
  78.         "This article is not avaible", "", ""
  79.     },
  80. }};
  81.  
  82. /* ==============================   ArticleView   ================================= */
  83. resource 'TxSt' (kArticleViewTextStyle, "kArticleViewTextStyle") {
  84.     tsPlain, 10, black, "Courier"
  85. };
  86.  
  87. resource 'TxSt' (kJapaneseFontTextStyle, "kJapaneseFontTextStyle") {
  88.     tsPlain, 12, black, "Osaka"
  89. };
  90.  
  91. resource 'hdlg' (kArticleViewHelp, "kArticleViewHelp") {
  92.     HelpMgrVersion,
  93.     0,
  94.     hmDefaultOptions,
  95.     0,
  96.     0,
  97.     HMSkipItem {},
  98.     {
  99.     HMStringItem {
  100.         {6, 6}, {0, 0, 0, 0},
  101.         "Click here to go to the previous thread. You can do it the from the keyboard by pressing left-arrow key.",
  102.         "Click here to go to the previous thread.\nIs dimmed because you are viewing the first selected thread",
  103.         "",
  104.         ""
  105.     },
  106.     HMStringItem {
  107.         {6, 6}, {0, 0, 0, 0},
  108.         "Click here to go further. You can do it the from the keyboard by pressing the space key",
  109.         "",
  110.         "",
  111.         ""
  112.     },
  113.     HMStringItem {
  114.         {6, 6}, {0, 0, 0, 0},
  115.         "Click here to go to the next thread. You can do it the from the keyboard by pressing right-arrow key.",
  116.         "Click here to go to the next thread.\nIs dimmed because you are viewing the last selected thread",
  117.         "",
  118.         ""
  119.     },
  120. }};
  121.