X-Git-Url: http://git.nikiroo.be/?a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Freader%2FTuiReaderApplication.java;h=fd585092e6d449e7a02fe0bb10ee6f97c2517f9f;hb=77e28d38d47dbfcf29030ee388854d59df3ef1d0;hp=b7f83085a636f79660443e1d1395b835025b43b2;hpb=6322ab64949f9f4ae2b04b9504d58a301039d670;p=nikiroo-utils.git diff --git a/src/be/nikiroo/fanfix/reader/TuiReaderApplication.java b/src/be/nikiroo/fanfix/reader/TuiReaderApplication.java index b7f8308..fd58509 100644 --- a/src/be/nikiroo/fanfix/reader/TuiReaderApplication.java +++ b/src/be/nikiroo/fanfix/reader/TuiReaderApplication.java @@ -1,72 +1,82 @@ package be.nikiroo.fanfix.reader; +import java.awt.Toolkit; +import java.awt.datatransfer.DataFlavor; import java.io.IOException; import java.net.URL; -import java.util.List; import jexer.TApplication; +import jexer.TCommand; +import jexer.TKeypress; import jexer.TMessageBox; +import jexer.TStatusBar; import jexer.TWindow; +import jexer.event.TMenuEvent; +import jexer.menu.TMenu; +import be.nikiroo.fanfix.Instance; +import be.nikiroo.fanfix.Instance.SyserrHandler; +import be.nikiroo.fanfix.Instance.TraceHandler; import be.nikiroo.fanfix.data.MetaData; import be.nikiroo.fanfix.data.Story; import be.nikiroo.fanfix.library.BasicLibrary; -import be.nikiroo.fanfix.library.LocalLibrary; import be.nikiroo.utils.Progress; /** - * Manages the TUI reader, links and manages the {@link TWindow}s, starts the - * correct output mode. + * Manages the TUI general mode and links and manages the {@link TWindow}s. + *

+ * It will also enclose a {@link Reader} and simply handle the reading part + * differently (it will create the required sub-windows and display them). * * @author niki */ class TuiReaderApplication extends TApplication implements Reader { - private Reader reader; + public static final int MENU_OPEN = 1025; + public static final int MENU_IMPORT_URL = 1026; + public static final int MENU_IMPORT_FILE = 1027; + public static final int MENU_EXPORT = 1028; + public static final int MENU_EXIT = 1029; - public TuiReaderApplication(MetaData meta, int chapter, Reader reader, - BackendType backend) throws Exception { - this(reader, backend); + private Reader reader; + private TuiReaderMainWindow main; - new TuiReaderMainWindow(this, meta, chapter); - } + // start reading if meta present + public TuiReaderApplication(Reader reader, BackendType backend) + throws Exception { + super(backend); + init(reader); - public TuiReaderApplication(List stories, Reader reader, - TApplication.BackendType backend) throws Exception { - this(reader, backend); + MetaData meta = getMeta(); - new TuiReaderMainWindow(this, stories); + main = new TuiReaderMainWindow(this); + main.setMeta(meta); + if (meta != null) { + read(); + } } - private TuiReaderApplication(Reader reader, TApplication.BackendType backend) - throws Exception { + public TuiReaderApplication(Reader reader, String source, + TApplication.BackendType backend) throws Exception { super(backend); - this.reader = reader; - - // Add the menus - addFileMenu(); - addEditMenu(); - addWindowMenu(); - addHelpMenu(); + init(reader); - getBackend().setTitle("Fanfix"); + main = new TuiReaderMainWindow(this); + main.setSource(source); } + @Override public void read() throws IOException { - reader.read(); - } - - public void read(int chapter) throws IOException { - reader.read(chapter); - } + MetaData meta = getMeta(); - public void open(MetaData meta) { - open(meta, -1); - } + if (meta == null) { + throw new IOException("No story to read"); + } - public void open(MetaData meta, int chapter) { // TODO: open in editor + external option if (!meta.isImageDocument()) { - new TuiReaderStoryWindow(this, getLibrary(), meta, chapter); + @SuppressWarnings("unused") + Object discard = new TuiReaderStoryWindow(this, getLibrary(), meta, + getChapter()); } else { try { BasicReader.openExternal(getLibrary(), meta.getLuid()); @@ -77,27 +87,157 @@ class TuiReaderApplication extends TApplication implements Reader { } } - public Story getStory() { - return reader.getStory(); + @Override + public MetaData getMeta() { + return reader.getMeta(); + } + + @Override + public Story getStory(Progress pg) { + return reader.getStory(pg); } + @Override public BasicLibrary getLibrary() { return reader.getLibrary(); } - public void setLibrary(LocalLibrary lib) { + @Override + public void setLibrary(BasicLibrary lib) { reader.setLibrary(lib); } - public void setStory(String luid, Progress pg) throws IOException { - reader.setStory(luid, pg); + @Override + public void setMeta(MetaData meta) throws IOException { + reader.setMeta(meta); } - public void setStory(URL source, Progress pg) throws IOException { - reader.setStory(source, pg); + @Override + public void setMeta(String luid) throws IOException { + reader.setMeta(luid); } + @Override + public void setMeta(URL source, Progress pg) throws IOException { + reader.setMeta(source, pg); + } + + @Override public void browse(String source) { reader.browse(source); } + + @Override + public int getChapter() { + return reader.getChapter(); + } + + @Override + public void setChapter(int chapter) { + reader.setChapter(chapter); + } + + private void init(Reader reader) { + this.reader = reader; + + // Do not allow traces/debug to pollute the screen: + Instance.setSyserrHandler(new SyserrHandler() { + @Override + public void notify(Exception e, boolean showDetails) { + // TODO + } + }); + + Instance.setTraceHandler(new TraceHandler() { + @Override + public void trace(String message) { + // TODO + } + }); + // + + // Add the menus TODO: i18n + TMenu fileMenu = addMenu("&File"); + fileMenu.addItem(MENU_OPEN, "&Open"); + fileMenu.addItem(MENU_EXPORT, "&Save as..."); + // TODO: Move to... + fileMenu.addSeparator(); + fileMenu.addItem(MENU_IMPORT_URL, "Import &URL..."); + fileMenu.addItem(MENU_IMPORT_FILE, "Import &file..."); + fileMenu.addSeparator(); + fileMenu.addItem(MENU_EXIT, "E&xit"); + + TStatusBar statusBar = fileMenu.newStatusBar("File-management " + + "commands (Open, Save, Print, etc.)"); + // TODO: doesn't actually work: + statusBar.addShortcutKeypress(TKeypress.kbF10, TCommand.cmExit, "Exit"); + + // TODO: Edit: re-download, delete + + // + + addWindowMenu(); + + getBackend().setTitle("Fanfix"); + } + + @Override + protected boolean onMenu(TMenuEvent menu) { + // TODO: i18n + switch (menu.getId()) { + case MENU_EXIT: + if (messageBox("Confirmation", "(TODO: i18n) Exit application?", + TMessageBox.Type.YESNO).getResult() == TMessageBox.Result.YES) { + //exit(false); + } + + return true; + case MENU_IMPORT_URL: + String clipboard = ""; + try { + clipboard = ("" + Toolkit.getDefaultToolkit() + .getSystemClipboard().getData(DataFlavor.stringFlavor)) + .trim(); + } catch (Exception e) { + // No data will be handled + } + + if (clipboard == null || !clipboard.startsWith("http")) { + clipboard = ""; + } + + String url = inputBox("Import story", "URL to import", clipboard) + .getText(); + + if (!imprt(url)) { + // TODO: bad import + } + + return true; + case MENU_IMPORT_FILE: + try { + String filename = fileOpenBox("."); + if (!imprt(filename)) { + // TODO: bad import + } + } catch (IOException e) { + // TODO: bad file + e.printStackTrace(); + } + + return true; + } + + return super.onMenu(menu); + } + + private boolean imprt(String url) { + try { + reader.getLibrary().imprt(BasicReader.getUrl(url), null); + main.refreshStories(); + return true; + } catch (IOException e) { + return false; + } + } }