Update to nnikiroo-utils-1.5.0
[fanfix.git] / src / be / nikiroo / fanfix / bundles / UiConfig.java
CommitLineData
b4dc6ab5
NR
1package be.nikiroo.fanfix.bundles;
2
3import be.nikiroo.utils.resources.Meta;
ce788468 4import be.nikiroo.utils.resources.Meta.Format;
b4dc6ab5
NR
5
6/**
7 * The configuration options.
8 *
9 * @author niki
10 */
ce788468 11@SuppressWarnings("javadoc")
b4dc6ab5 12public enum UiConfig {
ce788468 13 @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)")
b4dc6ab5 14 CACHE_DIR_LOCAL_READER, //
ce788468 15 @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")
edd46289 16 NON_IMAGES_DOCUMENT_TYPE, //
ce788468 17 @Meta(format = Format.COMBO_LIST, list = { "HTML", "CBZ" }, description = "The type of output for the Local Reader for images documents")
edd46289 18 IMAGES_DOCUMENT_TYPE, //
ce788468 19 @Meta(info = "A command to start", description = "The command launched for images documents -- default to the system default for the current file type")
edd46289 20 IMAGES_DOCUMENT_READER, //
ce788468 21 @Meta(info = "A command to start", description = "The command launched for non images documents -- default to the system default for the current file type")
edd46289 22 NON_IMAGES_DOCUMENT_READER, //
ce788468 23 @Meta(format = Format.COLOR, description = "The background colour if you don't want the default system one")
b4dc6ab5
NR
24 BACKGROUND_COLOR, //
25}