Version 1.2.2: fixes, export in UI
[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")
edd46289 14 NON_IMAGES_DOCUMENT_TYPE, //
b4dc6ab5 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")
edd46289
NR
16 IMAGES_DOCUMENT_TYPE, //
17 @Meta(what = "Program", where = "Local Reader", format = "A command to start", info = "The command launched for images documents -- default to the system default for the current file type")
18 IMAGES_DOCUMENT_READER, //
19 @Meta(what = "Program", where = "Local Reader", format = "A command to start", info = "The command launched for non images documents -- default to the system default for the current file type")
20 NON_IMAGES_DOCUMENT_READER, //
b4dc6ab5
NR
21 @Meta(what = "A background colour", where = "Local Reader Frame", format = "#rrggbb", info = "The background colour if you don't want the default system one")
22 BACKGROUND_COLOR, //
23}