gui: allow 'all' and 'listing' for sources and authors
[fanfix.git] / src / be / nikiroo / fanfix / bundles / UiConfig.java
index 271abb3ec8e981957da2ebb4cdfb1ee596a63275..b6be9cb5ada1f93ac094608424d70a91b8685ec9 100644 (file)
@@ -10,18 +10,17 @@ import be.nikiroo.utils.resources.Meta.Format;
  */
 @SuppressWarnings("javadoc")
 public enum UiConfig {
-       @Meta(format = Format.DIRECTORY, info = "absolute path, $HOME variable supported, / is always accepted as dir separator", description = "The directory where to store temporary files, defaults to directory 'tmp.reader' in the conig directory (usually $HOME/.fanfix)")
+       @Meta(format = Format.DIRECTORY, info = "absolute path, $HOME variable supported, / is always accepted as dir separator", description = "The directory where to store temporary files, defaults to directory 'tmp.reader' in the config directory (usually $HOME/.fanfix)")
        CACHE_DIR_LOCAL_READER, //
-       @Meta(format = Format.COMBO_LIST, list = { "HTML", "CBZ" }, info = "One of the known output type", description = "The type of output for the Local Reader for non-images documents")
-       NON_IMAGES_DOCUMENT_TYPE, //
-       @Meta(format = Format.COMBO_LIST, list = { "HTML", "CBZ" }, description = "The type of output for the Local Reader for images documents")
-       IMAGES_DOCUMENT_TYPE, //
+       @Meta(format = Format.COMBO_LIST, list = { "INFO_TEXT", "EPUB", "HTML",
+                       "TEXT" }, info = "One of the known output type", description = "The type of output for the GUI Reader for non-images documents")
+       GUI_NON_IMAGES_DOCUMENT_TYPE, //
+       @Meta(format = Format.COMBO_LIST, list = { "CBZ", "HTML" }, description = "The type of output for the GUI Reader for images documents")
+       GUI_IMAGES_DOCUMENT_TYPE, //
        @Meta(info = "A command to start", description = "The command launched for images documents -- default to the system default for the current file type")
        IMAGES_DOCUMENT_READER, //
        @Meta(info = "A command to start", description = "The command launched for non images documents -- default to the system default for the current file type")
        NON_IMAGES_DOCUMENT_READER, //
        @Meta(format = Format.COLOR, description = "The background colour if you don't want the default system one")
        BACKGROUND_COLOR, //
-       @Meta(format = Format.BOOLEAN, description = "Show one item per source type when in ALL sources mode instead of one per story")
-       SOURCE_PAGE, //
 }