Fix cover not deleted, add new UI option "Move to"
[fanfix.git] / src / be / nikiroo / fanfix / reader / LocalReaderFrame.java
index a7935138d6ff2157cf11a5e356d8eb366862d112..03df7fbdf5cf133d86ac5d11634392e7edb61632 100644 (file)
@@ -13,6 +13,7 @@ import java.awt.event.WindowEvent;
 import java.io.File;
 import java.io.IOException;
 import java.net.URL;
+import java.util.ArrayList;
 import java.util.HashMap;
 import java.util.List;
 import java.util.Map;
@@ -34,6 +35,7 @@ import javax.swing.filechooser.FileNameExtensionFilter;
 
 import be.nikiroo.fanfix.Instance;
 import be.nikiroo.fanfix.Library;
+import be.nikiroo.fanfix.bundles.Config;
 import be.nikiroo.fanfix.bundles.UiConfig;
 import be.nikiroo.fanfix.data.MetaData;
 import be.nikiroo.fanfix.data.Story;
@@ -41,6 +43,7 @@ import be.nikiroo.fanfix.output.BasicOutput.OutputType;
 import be.nikiroo.fanfix.reader.LocalReaderBook.BookActionListener;
 import be.nikiroo.utils.Progress;
 import be.nikiroo.utils.Version;
+import be.nikiroo.utils.ui.ConfigEditor;
 import be.nikiroo.utils.ui.ProgressBar;
 
 /**
@@ -108,18 +111,29 @@ class LocalReaderFrame extends JFrame {
 
                pgBar.addUpdateListener(new ActionListener() {
                        public void actionPerformed(ActionEvent e) {
-                               revalidate();
+                               invalidate();
+                               validate();
                                repaint();
                        }
                });
 
-               setJMenuBar(createMenu());
-
                booksByType = new HashMap<LocalReaderGroup, String>();
                booksByAuthor = new HashMap<LocalReaderGroup, String>();
 
-               addBookPane(type, true);
-               refreshBooks();
+               pane.setVisible(false);
+               final Progress pg = new Progress();
+               final String typeF = type;
+               outOfUi(pg, new Runnable() {
+                       public void run() {
+                               Instance.getLibrary().refresh(pg);
+                               invalidate();
+                               setJMenuBar(createMenu());
+                               addBookPane(typeF, true);
+                               refreshBooks();
+                               validate();
+                               pane.setVisible(true);
+                       }
+               });
 
                setVisible(true);
        }
@@ -129,7 +143,8 @@ class LocalReaderFrame extends JFrame {
         * the selected type or author.
         * 
         * @param value
-        *            the author or the type
+        *            the author or the type, or NULL to get all the
+        *            authors-or-types
         * @param type
         *            TRUE for type, FALSE for author
         */
@@ -175,6 +190,7 @@ class LocalReaderFrame extends JFrame {
                                popup.add(createMenuItemOpenBook());
                                popup.addSeparator();
                                popup.add(createMenuItemExport());
+                               popup.add(createMenuItemMove());
                                popup.add(createMenuItemClearCache());
                                popup.add(createMenuItemRedownload());
                                popup.addSeparator();
@@ -252,6 +268,7 @@ class LocalReaderFrame extends JFrame {
 
                file.add(createMenuItemOpenBook());
                file.add(createMenuItemExport());
+               file.add(createMenuItemMove());
                file.addSeparator();
                file.add(imprt);
                file.add(imprtF);
@@ -339,9 +356,65 @@ class LocalReaderFrame extends JFrame {
 
                bar.add(authors);
 
+               JMenu options = new JMenu("Options");
+               options.setMnemonic(KeyEvent.VK_O);
+               options.add(createMenuItemConfig());
+               options.add(createMenuItemUiConfig());
+               bar.add(options);
+
                return bar;
        }
 
+       /**
+        * Create the Fanfix Configuration menu item.
+        * 
+        * @return the item
+        */
+       private JMenuItem createMenuItemConfig() {
+               final String title = "Fanfix Configuration";
+               JMenuItem item = new JMenuItem(title);
+               item.setMnemonic(KeyEvent.VK_F);
+
+               item.addActionListener(new ActionListener() {
+                       public void actionPerformed(ActionEvent e) {
+                               ConfigEditor<Config> ed = new ConfigEditor<Config>(
+                                               Config.class, Instance.getConfig(),
+                                               "This is where you configure the options of the program.");
+                               JFrame frame = new JFrame(title);
+                               frame.add(ed);
+                               frame.setSize(800, 600);
+                               frame.setVisible(true);
+                       }
+               });
+
+               return item;
+       }
+
+       /**
+        * Create the UI Configuration menu item.
+        * 
+        * @return the item
+        */
+       private JMenuItem createMenuItemUiConfig() {
+               final String title = "UI Configuration";
+               JMenuItem item = new JMenuItem(title);
+               item.setMnemonic(KeyEvent.VK_U);
+
+               item.addActionListener(new ActionListener() {
+                       public void actionPerformed(ActionEvent e) {
+                               ConfigEditor<UiConfig> ed = new ConfigEditor<UiConfig>(
+                                               UiConfig.class, Instance.getUiConfig(),
+                                               "This is where you configure the graphical appearence of the program.");
+                               JFrame frame = new JFrame(title);
+                               frame.add(ed);
+                               frame.setSize(800, 600);
+                               frame.setVisible(true);
+                       }
+               });
+
+               return item;
+       }
+
        /**
         * Create the export menu item.
         * 
@@ -458,6 +531,68 @@ class LocalReaderFrame extends JFrame {
                return refresh;
        }
 
+       /**
+        * Create the delete menu item.
+        * 
+        * @return the item
+        */
+       private JMenuItem createMenuItemMove() {
+               JMenu moveTo = new JMenu("Move to...");
+               moveTo.setMnemonic(KeyEvent.VK_M);
+
+               List<String> types = new ArrayList<String>();
+               types.add(null);
+               types.addAll(Instance.getLibrary().getTypes());
+
+               for (String type : types) {
+                       JMenuItem item = new JMenuItem(type == null ? "New type..." : type);
+
+                       moveTo.add(item);
+                       if (type == null) {
+                               moveTo.addSeparator();
+                       }
+
+                       final String ftype = type;
+                       item.addActionListener(new ActionListener() {
+                               public void actionPerformed(ActionEvent e) {
+                                       if (selectedBook != null) {
+                                               String type = ftype;
+                                               if (type == null) {
+                                                       Object rep = JOptionPane.showInputDialog(
+                                                                       LocalReaderFrame.this, "Move to:",
+                                                                       "Moving story",
+                                                                       JOptionPane.QUESTION_MESSAGE, null, null,
+                                                                       selectedBook.getMeta().getSource());
+                                                       if (rep == null) {
+                                                               return;
+                                                       } else {
+                                                               type = rep.toString();
+                                                       }
+                                               }
+
+                                               final String ftype = type;
+                                               outOfUi(null, new Runnable() {
+                                                       public void run() {
+                                                               reader.changeType(selectedBook.getMeta()
+                                                                               .getLuid(), ftype);
+
+                                                               selectedBook = null;
+
+                                                               SwingUtilities.invokeLater(new Runnable() {
+                                                                       public void run() {
+                                                                               setJMenuBar(createMenu());
+                                                                       }
+                                                               });
+                                                       }
+                                               });
+                                       }
+                               }
+                       });
+               }
+
+               return moveTo;
+       }
+
        /**
         * Create the redownload (then delete original) menu item.
         * 
@@ -579,10 +714,10 @@ class LocalReaderFrame extends JFrame {
                        public void run() {
                                run.run();
                                refreshBooks();
-                               reload.setProgress(100);
+                               reload.done();
                                if (!pg.isDone()) {
                                        // will trigger pgBar ActionListener:
-                                       pg.setProgress(pg.getMax());
+                                       pg.done();
                                }
                        }
                }, "outOfUi thread").start();
@@ -676,7 +811,7 @@ class LocalReaderFrame extends JFrame {
                                                onSuccess.run();
                                        }
                                }
-                               pgOnSuccess.setProgress(100);
+                               pgOnSuccess.done();
                        }
                });
        }
@@ -694,7 +829,10 @@ class LocalReaderFrame extends JFrame {
         */
        @Override
        public void setEnabled(boolean b) {
-               bar.setEnabled(b);
+               if (bar != null) {
+                       bar.setEnabled(b);
+               }
+
                for (LocalReaderGroup group : booksByType.keySet()) {
                        group.setEnabled(b);
                }