Version 1.0.0
[fanfix.git] / src / be / nikiroo / fanfix / bundles / UiConfig.java
1 package be.nikiroo.fanfix.bundles;
2
3 import be.nikiroo.utils.resources.Meta;
4
5 /**
6 * The configuration options.
7 *
8 * @author niki
9 */
10 public enum UiConfig {
11 @Meta(what = "directory", where = "", format = "absolute path, $HOME variable supported, / is always accepted as dir separator", info = "The directory where to store temporary files, defaults to a directory 'fanfic-reader' in the system default temporary directory")
12 CACHE_DIR_LOCAL_READER, //
13 @Meta(what = "Output type", where = "Local Reader", format = "One of the known output type", info = "The type of output for the Local Reader for non-images documents")
14 LOCAL_READER_NON_IMAGES_DOCUMENT_TYPE, //
15 @Meta(what = "Output type", where = "Local Reader", format = "One of the known output type", info = "The type of output for the Local Reader for images documents")
16 LOCAL_READER_IMAGES_DOCUMENT_TYPE, //
17 @Meta(what = "A background colour", where = "Local Reader Frame", format = "#rrggbb", info = "The background colour if you don't want the default system one")
18 BACKGROUND_COLOR, //
19 }