src/news_type.h
changeset 9010 fa1aa6008a59
parent 8990 0d5bb1c2a4a6
child 9158 b2de54b781eb
--- a/src/news_type.h	Sun Apr 20 11:12:07 2008 +0000
+++ b/src/news_type.h	Sun Apr 20 11:40:33 2008 +0000
@@ -77,12 +77,22 @@
 };
 
 /**
+ * News display options
+ */
+enum NewsDisplay {
+	ND_OFF,        ///< Only show a reminder in the status bar
+	ND_SUMMARY,    ///< Show ticker
+	ND_FULL,       ///< Show newspaper
+};
+
+/**
  * Per-NewsType data
  */
 struct NewsTypeData {
 	const char *const name; ///< Name
 	const byte age;         ///< Maximum age of news items (in days)
 	const SoundFx sound;    ///< Sound
+	NewsDisplay display;    ///< Display mode (off, summary, full)
 };
 
 struct NewsItem {