X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Fbundles%2FUiConfig.java;h=2122ccf8b48164ca04562227cc1c6d32a8388e4f;hb=b063fe0a74fdf17f440a850bbb98a2de6233a679;hp=e83a46067324339ee2f592e06093da984448ccba;hpb=ce788468f22e7666d97acedb81a15004aaf0bc01;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 e83a460..0000000 --- a/src/be/nikiroo/fanfix/bundles/UiConfig.java +++ /dev/null @@ -1,25 +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 conig directory (usually $HOME/.fanfix)") - CACHE_DIR_LOCAL_READER, // - @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") - NON_IMAGES_DOCUMENT_TYPE, // - @Meta(format = Format.COMBO_LIST, list = { "HTML", "CBZ" }, description = "The type of output for the Local Reader for images documents") - 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, // -}