X-Git-Url: http://git.nikiroo.be/?p=fanfix.git;a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Freader%2Fui%2FGuiReaderGroup.java;h=8d766f22c0a5366028753e5f92382d76ed11c3e4;hp=c96b02df266e0ef307a023600a6085dd2caa83ad;hb=79a9950614d3bea63b0daafb7b7365f6ae3cbeb9;hpb=c956ff52ac789f80c9b694a8f74ca8f1f47db67c diff --git a/src/be/nikiroo/fanfix/reader/ui/GuiReaderGroup.java b/src/be/nikiroo/fanfix/reader/ui/GuiReaderGroup.java index c96b02d..8d766f2 100644 --- a/src/be/nikiroo/fanfix/reader/ui/GuiReaderGroup.java +++ b/src/be/nikiroo/fanfix/reader/ui/GuiReaderGroup.java @@ -7,11 +7,9 @@ import java.awt.event.MouseEvent; import java.util.ArrayList; import java.util.List; -import javax.management.RuntimeErrorException; import javax.swing.JLabel; import javax.swing.JPanel; -import be.nikiroo.fanfix.data.MetaData; import be.nikiroo.fanfix.reader.ui.GuiReaderBook.BookActionListener; import be.nikiroo.utils.ui.WrapLayout; @@ -25,7 +23,7 @@ public class GuiReaderGroup extends JPanel { private BookActionListener action; private Color backgroundColor; private GuiReader reader; - private List stories; + private List infos; private List books; private JPanel pane; private boolean words; // words or authors (secondary info on books) @@ -79,7 +77,7 @@ public class GuiReaderGroup extends JPanel { */ public void setActionListener(BookActionListener action) { this.action = action; - refreshBooks(stories, words); + refreshBooks(infos, words); } /** @@ -90,8 +88,9 @@ public class GuiReaderGroup extends JPanel { * @param seeWordcount * TRUE to see word counts, FALSE to see authors */ - public void refreshBooks(List stories, boolean seeWordcount) { - this.stories = stories; + public void refreshBooks(List stories, + boolean seeWordcount) { + this.infos = stories; this.words = seeWordcount; books = new ArrayList(); @@ -100,9 +99,14 @@ public class GuiReaderGroup extends JPanel { pane.removeAll(); if (stories != null) { - for (MetaData meta : stories) { - GuiReaderBook book = new GuiReaderBook(reader, meta, - reader.isCached(meta.getLuid()), seeWordcount); + for (GuiReaderBookInfo info : stories) { + boolean isCached = false; + if (info.getMeta() != null) { + isCached = reader.isCached(info.getMeta().getLuid()); + } + + GuiReaderBook book = new GuiReaderBook(reader, info, isCached, + seeWordcount); if (backgroundColor != null) { book.setBackground(backgroundColor); }