Renames and jDo
[fanfix.git] / src / be / nikiroo / fanfix / reader / GuiReaderBook.java
CommitLineData
333f0e7b
NR
1package be.nikiroo.fanfix.reader;
2
3import java.awt.BorderLayout;
4import java.awt.Color;
d3c84ac3 5import java.awt.Graphics;
333f0e7b 6import java.awt.Graphics2D;
b4dc6ab5 7import java.awt.Polygon;
d3c84ac3 8import java.awt.Rectangle;
333f0e7b
NR
9import java.awt.event.MouseEvent;
10import java.awt.event.MouseListener;
11import java.awt.image.BufferedImage;
57f02339
NR
12import java.io.ByteArrayInputStream;
13import java.io.ByteArrayOutputStream;
14import java.io.IOException;
15import java.io.InputStream;
16import java.net.MalformedURLException;
333f0e7b
NR
17import java.util.ArrayList;
18import java.util.Date;
19import java.util.EventListener;
20import java.util.List;
21
57f02339 22import javax.imageio.ImageIO;
333f0e7b
NR
23import javax.swing.ImageIcon;
24import javax.swing.JLabel;
25import javax.swing.JPanel;
26
57f02339 27import be.nikiroo.fanfix.Instance;
333f0e7b 28import be.nikiroo.fanfix.data.MetaData;
4d205683 29import be.nikiroo.fanfix.data.Story;
57f02339 30import be.nikiroo.utils.IOUtils;
c39a3e30 31import be.nikiroo.utils.ui.UIUtils;
333f0e7b
NR
32
33/**
5dd985cf 34 * A book item presented in a {@link GuiReaderFrame}.
333f0e7b
NR
35 *
36 * @author niki
37 */
5dd985cf 38class GuiReaderBook extends JPanel {
333f0e7b
NR
39 /**
40 * Action on a book item.
41 *
42 * @author niki
43 */
92fb0719 44 interface BookActionListener extends EventListener {
333f0e7b
NR
45 /**
46 * The book was selected (single click).
47 *
48 * @param book
5dd985cf 49 * the {@link GuiReaderBook} itself
333f0e7b 50 */
5dd985cf 51 public void select(GuiReaderBook book);
333f0e7b
NR
52
53 /**
54 * The book was double-clicked.
55 *
56 * @param book
5dd985cf 57 * the {@link GuiReaderBook} itself
333f0e7b 58 */
5dd985cf 59 public void action(GuiReaderBook book);
9843a5e5
NR
60
61 /**
5dd985cf 62 * A popup menu was requested for this {@link GuiReaderBook}.
9843a5e5
NR
63 *
64 * @param book
5dd985cf 65 * the {@link GuiReaderBook} itself
9843a5e5
NR
66 * @param e
67 * the {@link MouseEvent} that generated this call
68 */
5dd985cf 69 public void popupRequested(GuiReaderBook book, MouseEvent e);
333f0e7b
NR
70 }
71
4d205683
NR
72 private static final long serialVersionUID = 1L;
73
74 // TODO: export some of the configuration options?
b4dc6ab5
NR
75 private static final int COVER_WIDTH = 100;
76 private static final int COVER_HEIGHT = 150;
77 private static final int SPINE_WIDTH = 5;
78 private static final int SPINE_HEIGHT = 5;
79 private static final int HOFFSET = 20;
80 private static final Color SPINE_COLOR_BOTTOM = new Color(180, 180, 180);
81 private static final Color SPINE_COLOR_RIGHT = new Color(100, 100, 100);
82 private static final int TEXT_WIDTH = COVER_WIDTH + 40;
83 private static final int TEXT_HEIGHT = 50;
84 private static final String AUTHOR_COLOR = "#888888";
4d205683
NR
85 private static final Color BORDER = Color.black;
86 private static final long doubleClickDelay = 200; // in ms
87 //
3b2b638f 88
333f0e7b 89 private JLabel icon;
3b2b638f 90 private JLabel title;
333f0e7b
NR
91 private boolean selected;
92 private boolean hovered;
93 private Date lastClick;
4d205683 94
92fb0719 95 private List<BookActionListener> listeners;
22848428 96 private MetaData meta;
10d558d2
NR
97 private boolean cached;
98
4d205683 99 /**
5dd985cf 100 * Create a new {@link GuiReaderBook} item for the given {@link Story}.
4d205683
NR
101 *
102 * @param meta
5dd985cf 103 * the story {@link MetaData}
4d205683
NR
104 * @param cached
105 * TRUE if it is locally cached
5dd985cf 106 * @param seeWordCount
793f1071 107 * TRUE to see word counts, FALSE to see authors
4d205683 108 */
5dd985cf 109 public GuiReaderBook(MetaData meta, boolean cached, boolean seeWordCount) {
10d558d2 110 this.cached = cached;
22848428 111 this.meta = meta;
333f0e7b 112
793f1071
NR
113 String optSecondary = meta.getAuthor();
114 if (seeWordCount) {
115 if (meta.getWords() >= 4000) {
116 optSecondary = (meta.getWords() / 1000) + "k words";
117 } else if (meta.getWords() > 0) {
118 optSecondary = meta.getWords() + " words";
119 } else {
a3641e4b 120 optSecondary = "";
793f1071
NR
121 }
122 }
123
124 if (optSecondary != null && !optSecondary.isEmpty()) {
125 optSecondary = "(" + optSecondary + ")";
b4dc6ab5 126 }
4d205683 127
57f02339 128 icon = new JLabel(generateCoverIcon(meta));
3b2b638f 129 title = new JLabel(
b4dc6ab5
NR
130 String.format(
131 "<html>"
132 + "<body style='width: %d px; height: %d px; text-align: center'>"
133 + "%s" + "<br>" + "<span style='color: %s;'>"
134 + "%s" + "</span>" + "</body>" + "</html>",
135 TEXT_WIDTH, TEXT_HEIGHT, meta.getTitle(), AUTHOR_COLOR,
793f1071 136 optSecondary));
b4dc6ab5 137
edd46289
NR
138 setLayout(new BorderLayout(10, 10));
139 add(icon, BorderLayout.CENTER);
140 add(title, BorderLayout.SOUTH);
333f0e7b
NR
141
142 setupListeners();
333f0e7b
NR
143 }
144
145 /**
146 * The book current selection state.
147 *
4d205683 148 * @return the selection state
333f0e7b
NR
149 */
150 public boolean isSelected() {
151 return selected;
152 }
153
154 /**
155 * The book current selection state.
156 *
157 * @param selected
4d205683 158 * TRUE if it is selected
333f0e7b
NR
159 */
160 public void setSelected(boolean selected) {
edd46289
NR
161 if (this.selected != selected) {
162 this.selected = selected;
163 repaint();
164 }
333f0e7b
NR
165 }
166
4d205683
NR
167 /**
168 * The item mouse-hover state.
169 *
170 * @param hovered
171 * TRUE if it is mouse-hovered
172 */
333f0e7b 173 private void setHovered(boolean hovered) {
edd46289
NR
174 if (this.hovered != hovered) {
175 this.hovered = hovered;
176 repaint();
177 }
333f0e7b
NR
178 }
179
4d205683
NR
180 /**
181 * Setup the mouse listener that will activate {@link BookActionListener}
182 * events.
183 */
333f0e7b 184 private void setupListeners() {
5dd985cf 185 listeners = new ArrayList<GuiReaderBook.BookActionListener>();
333f0e7b
NR
186 addMouseListener(new MouseListener() {
187 public void mouseReleased(MouseEvent e) {
9843a5e5
NR
188 if (e.isPopupTrigger()) {
189 popup(e);
190 }
333f0e7b
NR
191 }
192
193 public void mousePressed(MouseEvent e) {
9843a5e5
NR
194 if (e.isPopupTrigger()) {
195 popup(e);
196 }
333f0e7b
NR
197 }
198
199 public void mouseExited(MouseEvent e) {
200 setHovered(false);
201 }
202
203 public void mouseEntered(MouseEvent e) {
204 setHovered(true);
205 }
206
207 public void mouseClicked(MouseEvent e) {
3b2b638f
NR
208 if (isEnabled()) {
209 Date now = new Date();
210 if (lastClick != null
211 && now.getTime() - lastClick.getTime() < doubleClickDelay) {
212 click(true);
213 } else {
214 click(false);
215 }
9843a5e5 216
3b2b638f 217 lastClick = now;
333f0e7b 218 }
333f0e7b 219 }
333f0e7b 220
9843a5e5
NR
221 private void click(boolean doubleClick) {
222 for (BookActionListener listener : listeners) {
223 if (doubleClick) {
5dd985cf 224 listener.action(GuiReaderBook.this);
9843a5e5 225 } else {
5dd985cf 226 listener.select(GuiReaderBook.this);
9843a5e5
NR
227 }
228 }
333f0e7b 229 }
9843a5e5
NR
230
231 private void popup(MouseEvent e) {
232 for (BookActionListener listener : listeners) {
5dd985cf
NR
233 listener.select((GuiReaderBook.this));
234 listener.popupRequested(GuiReaderBook.this, e);
9843a5e5
NR
235 }
236 }
237 });
333f0e7b
NR
238 }
239
4d205683
NR
240 /**
241 * Add a new {@link BookActionListener} on this item.
242 *
243 * @param listener
244 * the listener
245 */
92fb0719 246 public void addActionListener(BookActionListener listener) {
333f0e7b
NR
247 listeners.add(listener);
248 }
d3c84ac3 249
4d205683 250 /**
5dd985cf 251 * The Library {@link MetaData} of the book represented by this item.
4d205683 252 *
22848428 253 * @return the meta
4d205683 254 */
22848428
NR
255 public MetaData getMeta() {
256 return meta;
10d558d2
NR
257 }
258
259 /**
5dd985cf 260 * This item {@link GuiReader} library cache state.
10d558d2 261 *
5dd985cf 262 * @return TRUE if it is present in the {@link GuiReader} cache
10d558d2
NR
263 */
264 public boolean isCached() {
265 return cached;
266 }
267
268 /**
5dd985cf 269 * This item {@link GuiReader} library cache state.
10d558d2
NR
270 *
271 * @param cached
5dd985cf 272 * TRUE if it is present in the {@link GuiReader} cache
10d558d2
NR
273 */
274 public void setCached(boolean cached) {
f977d05b
NR
275 if (this.cached != cached) {
276 this.cached = cached;
edd46289 277 repaint();
f977d05b 278 }
10d558d2
NR
279 }
280
4d205683 281 /**
5dd985cf 282 * Paint the item, then call {@link GuiReaderBook#paintOverlay(Graphics)}.
4d205683 283 */
d3c84ac3
NR
284 @Override
285 public void paint(Graphics g) {
286 super.paint(g);
edd46289
NR
287 paintOverlay(g);
288 }
d3c84ac3 289
edd46289
NR
290 /**
291 * Draw a partially transparent overlay if needed depending upon the
292 * selection and mouse-hover states on top of the normal component, as well
293 * as a possible "cached" icon if the item is cached.
5dd985cf
NR
294 *
295 * @param g
296 * the {@link Graphics} to paint onto
edd46289
NR
297 */
298 public void paintOverlay(Graphics g) {
4d205683
NR
299 Rectangle clip = g.getClipBounds();
300 if (clip.getWidth() <= 0 || clip.getHeight() <= 0) {
301 return;
302 }
303
b4dc6ab5
NR
304 int h = COVER_HEIGHT;
305 int w = COVER_WIDTH;
4d205683
NR
306 int xOffset = (TEXT_WIDTH - COVER_WIDTH) - 1;
307 int yOffset = HOFFSET;
308
309 if (BORDER != null) {
310 if (BORDER != null) {
311 g.setColor(BORDER);
312 g.drawRect(xOffset, yOffset, COVER_WIDTH, COVER_HEIGHT);
313 }
314
315 xOffset++;
316 yOffset++;
317 }
b4dc6ab5
NR
318
319 int[] xs = new int[] { xOffset, xOffset + SPINE_WIDTH,
320 xOffset + w + SPINE_WIDTH, xOffset + w };
4d205683
NR
321 int[] ys = new int[] { yOffset + h, yOffset + h + SPINE_HEIGHT,
322 yOffset + h + SPINE_HEIGHT, yOffset + h };
b4dc6ab5
NR
323 g.setColor(SPINE_COLOR_BOTTOM);
324 g.fillPolygon(new Polygon(xs, ys, xs.length));
325 xs = new int[] { xOffset + w, xOffset + w + SPINE_WIDTH,
326 xOffset + w + SPINE_WIDTH, xOffset + w };
4d205683
NR
327 ys = new int[] { yOffset, yOffset + SPINE_HEIGHT,
328 yOffset + h + SPINE_HEIGHT, yOffset + h };
b4dc6ab5
NR
329 g.setColor(SPINE_COLOR_RIGHT);
330 g.fillPolygon(new Polygon(xs, ys, xs.length));
331
d3c84ac3 332 Color color = new Color(255, 255, 255, 0);
3b2b638f
NR
333 if (!isEnabled()) {
334 } else if (selected && !hovered) {
d3c84ac3
NR
335 color = new Color(80, 80, 100, 40);
336 } else if (!selected && hovered) {
337 color = new Color(230, 230, 255, 100);
338 } else if (selected && hovered) {
339 color = new Color(200, 200, 255, 100);
340 }
341
4d205683
NR
342 g.setColor(color);
343 g.fillRect(clip.x, clip.y, clip.width, clip.height);
344
10d558d2 345 if (cached) {
c39a3e30
NR
346 UIUtils.drawEllipse3D(g, Color.green.darker(), COVER_WIDTH
347 + HOFFSET + 30, 10, 20, 20);
10d558d2 348 }
d3c84ac3 349 }
edd46289
NR
350
351 /**
57f02339 352 * Generate a cover icon based upon the given {@link MetaData}.
edd46289 353 *
57f02339
NR
354 * @param meta
355 * the {@link MetaData} about the target {@link Story}
edd46289
NR
356 *
357 * @return the icon
358 */
57f02339
NR
359 private ImageIcon generateCoverIcon(MetaData meta) {
360 String id = meta.getUuid() + ".thumb_" + SPINE_WIDTH + "x"
361 + COVER_WIDTH + "+" + SPINE_HEIGHT + "+" + COVER_HEIGHT + "@"
362 + HOFFSET;
363 BufferedImage resizedImage = null;
364
365 InputStream in = Instance.getCache().getFromCache(id);
366 if (in != null) {
367 try {
368 resizedImage = IOUtils.toImage(in);
369 in.close();
370 in = null;
371 } catch (IOException e) {
372 Instance.syserr(e);
373 }
374 }
375
376 if (resizedImage == null) {
377 try {
378 BufferedImage cover = Instance.getLibrary().getCover(
379 meta.getLuid());
380
381 resizedImage = new BufferedImage(SPINE_WIDTH + COVER_WIDTH,
382 SPINE_HEIGHT + COVER_HEIGHT + HOFFSET,
383 BufferedImage.TYPE_4BYTE_ABGR);
384 Graphics2D g = resizedImage.createGraphics();
385 g.setColor(Color.white);
386 g.fillRect(0, HOFFSET, COVER_WIDTH, COVER_HEIGHT);
387 if (cover != null) {
388 g.drawImage(cover, 0, HOFFSET, COVER_WIDTH, COVER_HEIGHT,
389 null);
390 } else {
391 g.setColor(Color.black);
392 g.drawLine(0, HOFFSET, COVER_WIDTH, HOFFSET + COVER_HEIGHT);
393 g.drawLine(COVER_WIDTH, HOFFSET, 0, HOFFSET + COVER_HEIGHT);
394 }
395 g.dispose();
396
397 ByteArrayOutputStream out = new ByteArrayOutputStream();
398 ImageIO.write(resizedImage, "png", out);
399 byte[] imageBytes = out.toByteArray();
400 in = new ByteArrayInputStream(imageBytes);
401 Instance.getCache().addToCache(in, id);
402 in.close();
403 in = null;
404 } catch (MalformedURLException e) {
405 Instance.syserr(e);
406 } catch (IOException e) {
407 Instance.syserr(e);
408 }
edd46289 409 }
edd46289
NR
410
411 return new ImageIcon(resizedImage);
412 }
333f0e7b 413}