Move default tmp dirs, fix BLANK handling
[fanfix.git] / src / be / nikiroo / fanfix / bundles / UiConfig.java
CommitLineData
b4dc6ab5
NR
1package be.nikiroo.fanfix.bundles;
2
3import be.nikiroo.utils.resources.Meta;
4
5/**
6 * The configuration options.
7 *
8 * @author niki
9 */
10public enum UiConfig {
68e370a4 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 directory 'tmp.reader' in the conig directory (usually $HOME/.fanfix)")
b4dc6ab5
NR
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}