Update nikiroo-utils, remove Instance.syserr/trace
[nikiroo-utils.git] / src / be / nikiroo / fanfix / reader / TuiReaderMainWindow.java
index 3b5dc5dcfff3901c96f7880c244a963e2116b3a8..10c6466ca887dd39b32b956dad0e9fc0ace89ffb 100644 (file)
@@ -1,21 +1,24 @@
 package be.nikiroo.fanfix.reader;
 
+import java.io.IOException;
 import java.util.ArrayList;
 import java.util.List;
 
 import jexer.TAction;
 import jexer.TCommand;
+import jexer.TFileOpenBox.Type;
 import jexer.TKeypress;
 import jexer.TList;
-import jexer.TRadioGroup;
-import jexer.TTreeItem;
-import jexer.TTreeView;
 import jexer.TWindow;
+import jexer.event.TMenuEvent;
+import be.nikiroo.fanfix.Instance;
 import be.nikiroo.fanfix.data.MetaData;
+import be.nikiroo.fanfix.library.BasicLibrary;
+import be.nikiroo.fanfix.output.BasicOutput.OutputType;
 
 /**
  * The library window, that will list all the (filtered) stories available in
- * this {@link Library}.
+ * this {@link BasicLibrary}.
  * 
  * @author niki
  */
@@ -23,44 +26,8 @@ class TuiReaderMainWindow extends TWindow {
        private TList list;
        private List<MetaData> listKeys;
        private List<String> listItems;
-       private TuiReaderApplication reader;
-
-       /**
-        * Create a new {@link TuiReaderMainWindow} with the given stories in the
-        * list.
-        * 
-        * @param reader
-        *            the reader and main application
-        * @param metas
-        *            the stories to display
-        */
-       public TuiReaderMainWindow(TuiReaderApplication reader, List<MetaData> metas) {
-               this(reader);
-               setMetas(metas);
-       }
-
-       /**
-        * Create a new {@link TuiReaderMainWindow} with only the given
-        * {@link MetaData} in the list, and open this {@link MetaData} at the given
-        * chapter.
-        * 
-        * @param reader
-        *            the reader and main application
-        * @param meta
-        *            the story to display
-        * @param chapter
-        *            the chapter to open
-        */
-       public TuiReaderMainWindow(TuiReaderApplication reader, MetaData meta,
-                       int chapter) {
-               this(reader);
-
-               List<MetaData> metas = new ArrayList<MetaData>();
-               metas.add(meta);
-               setMetas(metas);
-
-               reader.open(meta, chapter);
-       }
+       private Reader reader;
+       private String source;
 
        /**
         * Create a new {@link TuiReaderMainWindow} without any stories in the list.
@@ -70,7 +37,7 @@ class TuiReaderMainWindow extends TWindow {
         */
        public TuiReaderMainWindow(TuiReaderApplication reader) {
                // Construct a demo window. X and Y don't matter because it will be
-               // centered on screen.
+               // centred on screen.
                super(reader, "Library", 0, 0, 60, 18, CENTERED | RESIZABLE
                                | UNCLOSABLE);
 
@@ -83,8 +50,9 @@ class TuiReaderMainWindow extends TWindow {
                list = addList(listItems, 0, 0, getWidth(), getHeight(), new TAction() {
                        @Override
                        public void DO() {
-                               if (list.getSelectedIndex() >= 0) {
-                                       enterOnStory(listKeys.get(list.getSelectedIndex()));
+                               MetaData meta = getSelectedMeta();
+                               if (meta != null) {
+                                       readStory(meta);
                                }
                        }
                });
@@ -93,30 +61,60 @@ class TuiReaderMainWindow extends TWindow {
                statusBar = newStatusBar("Library");
                statusBar.addShortcutKeypress(TKeypress.kbF10, TCommand.cmExit, "Exit");
 
-               if (false) {
-                       addLabel("Label (1,1)", 1, 1);
-                       addButton("&Button (35,1)", 35, 1, new TAction() {
-                               public void DO() {
-                               }
-                       });
-                       addCheckbox(1, 2, "Checky (1,2)", false);
-                       addProgressBar(1, 3, 30, 42);
-                       TRadioGroup groupy = addRadioGroup(1, 4, "Radio groupy");
-                       groupy.addRadioButton("Fanfan");
-                       groupy.addRadioButton("Tulipe");
-                       addField(1, 10, 20, false, "text not fixed.");
-                       addField(1, 11, 20, true, "text fixed.");
-                       addText("20x4 Text in (12,20)", 1, 12, 20, 4);
-
-                       TTreeView tree = addTreeView(30, 5, 20, 5);
-                       TTreeItem root = new TTreeItem(tree, "expended root", true);
-                       tree.setSelected(root); // needed to allow arrow navigation without
-                                                                       // mouse-clicking before
-
-                       root.addChild("child");
-                       root.addChild("child 2").addChild("sub child");
+               // TODO: remove when not used anymore
+
+               // addLabel("Label (1,1)", 1, 1);
+               // addButton("&Button (35,1)", 35, 1, new TAction() {
+               // public void DO() {
+               // }
+               // });
+               // addCheckbox(1, 2, "Checky (1,2)", false);
+               // addProgressBar(1, 3, 30, 42);
+               // TRadioGroup groupy = addRadioGroup(1, 4, "Radio groupy");
+               // groupy.addRadioButton("Fanfan");
+               // groupy.addRadioButton("Tulipe");
+               // addField(1, 10, 20, false, "text not fixed.");
+               // addField(1, 11, 20, true, "text fixed.");
+               // addText("20x4 Text in (12,20)", 1, 12, 20, 4);
+               //
+               // TTreeView tree = addTreeView(30, 5, 20, 5);
+               // TTreeItem root = new TTreeItem(tree, "expended root", true);
+               // tree.setSelected(root); // needed to allow arrow navigation without
+               // // mouse-clicking before
+               //
+               // root.addChild("child");
+               // root.addChild("child 2").addChild("sub child");
+       }
 
+       /**
+        * Change the source filter and display all stories matching this source.
+        * 
+        * @param source
+        *            the new source or NULL for all sources
+        */
+       public void setSource(String source) {
+               this.source = source;
+               refreshStories();
+       }
+
+       public void refreshStories() {
+               List<MetaData> metas = reader.getLibrary().getListBySource(source);
+               setMetas(metas);
+       }
+
+       /**
+        * Update the list of stories displayed in this {@link TWindow}.
+        * 
+        * @param meta
+        *            the new (unique) story to display
+        */
+       public void setMeta(MetaData meta) {
+               List<MetaData> metas = new ArrayList<MetaData>();
+               if (meta != null) {
+                       metas.add(meta);
                }
+
+               setMetas(metas);
        }
 
        /**
@@ -125,7 +123,7 @@ class TuiReaderMainWindow extends TWindow {
         * @param metas
         *            the new list of stories to display
         */
-       public void setMetas(List<MetaData> metas) {
+       private void setMetas(List<MetaData> metas) {
                listKeys.clear();
                listItems.clear();
 
@@ -139,11 +137,62 @@ class TuiReaderMainWindow extends TWindow {
                list.setList(listItems);
        }
 
-       private void enterOnStory(MetaData meta) {
-               reader.open(meta);
+       public MetaData getSelectedMeta() {
+               if (list.getSelectedIndex() >= 0) {
+                       return listKeys.get(list.getSelectedIndex());
+               }
+
+               return null;
+       }
+
+       public void readStory(MetaData meta) {
+               try {
+                       reader.setChapter(-1);
+                       reader.setMeta(meta);
+                       reader.read();
+               } catch (IOException e) {
+                       Instance.getTraceHandler().error(e);
+               }
        }
 
        private String desc(MetaData meta) {
                return String.format("%5s: %s", meta.getLuid(), meta.getTitle());
        }
-}
+
+       @Override
+       public void onMenu(TMenuEvent menu) {
+               MetaData meta = getSelectedMeta();
+               if (meta != null) {
+                       switch (menu.getId()) {
+                       case TuiReaderApplication.MENU_OPEN:
+                               readStory(meta);
+
+                               return;
+                       case TuiReaderApplication.MENU_EXPORT:
+
+                               try {
+                                       // TODO: choose type, pg, error
+                                       OutputType outputType = OutputType.EPUB;
+                                       String path = fileOpenBox(".", Type.SAVE);
+                                       reader.getLibrary().export(meta.getLuid(), outputType,
+                                                       path, null);
+                               } catch (IOException e) {
+                                       // TODO
+                                       e.printStackTrace();
+                               }
+
+                               return;
+                       case -1:
+                               try {
+                                       reader.getLibrary().delete(meta.getLuid());
+                               } catch (IOException e) {
+                                       // TODO
+                               }
+
+                               return;
+                       }
+               }
+
+               super.onMenu(menu);
+       }
+}
\ No newline at end of file