X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Fbundles%2FUiConfig.java;h=dd7bbc7032b4a1b2dfc4b9e29991fd131aeeafad;hb=a5d1f0e6320710cc4c8163adf2dc402e8f05fb96;hp=f36d2bba78219dc9b8fcd089450b8d2697128ff1;hpb=ae78e5179d241ca5e2439048f960fe6d4a07c990;p=fanfix.git diff --git a/src/be/nikiroo/fanfix/bundles/UiConfig.java b/src/be/nikiroo/fanfix/bundles/UiConfig.java deleted file mode 100644 index f36d2bb..0000000 --- a/src/be/nikiroo/fanfix/bundles/UiConfig.java +++ /dev/null @@ -1,28 +0,0 @@ -package be.nikiroo.fanfix.bundles; - -import be.nikiroo.utils.resources.Meta; -import be.nikiroo.utils.resources.Meta.Format; - -/** - * The configuration options. - * - * @author niki - */ -@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 config directory (usually $HOME/.fanfix)") - CACHE_DIR_LOCAL_READER, // - @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, // -}