Version 1.1.0
[fanfix.git] / src / be / nikiroo / fanfix / reader / LocalReaderBook.java
index 7fc8171c3c17cbe155f4653e2a1ef5470d3f8493..e7bea6aa5c80736661cc7a852000c57743030b8a 100644 (file)
@@ -2,7 +2,10 @@ package be.nikiroo.fanfix.reader;
 
 import java.awt.BorderLayout;
 import java.awt.Color;
+import java.awt.Graphics;
 import java.awt.Graphics2D;
+import java.awt.Polygon;
+import java.awt.Rectangle;
 import java.awt.event.MouseEvent;
 import java.awt.event.MouseListener;
 import java.awt.image.BufferedImage;
@@ -28,7 +31,7 @@ class LocalReaderBook extends JPanel {
         * 
         * @author niki
         */
-       interface BookActionListner extends EventListener {
+       interface BookActionListener extends EventListener {
                /**
                 * The book was selected (single click).
                 * 
@@ -46,35 +49,60 @@ class LocalReaderBook extends JPanel {
                public void action(LocalReaderBook book);
        }
 
+       private static final int COVER_WIDTH = 100;
+       private static final int COVER_HEIGHT = 150;
+       private static final int SPINE_WIDTH = 5;
+       private static final int SPINE_HEIGHT = 5;
+       private static final int HOFFSET = 20;
+       private static final Color SPINE_COLOR_BOTTOM = new Color(180, 180, 180);
+       private static final Color SPINE_COLOR_RIGHT = new Color(100, 100, 100);
+       private static final int TEXT_WIDTH = COVER_WIDTH + 40;
+       private static final int TEXT_HEIGHT = 50;
+       private static final String AUTHOR_COLOR = "#888888";
+
        private static final long serialVersionUID = 1L;
        private JLabel icon;
-       private JLabel title;
-       private JLabel author;
+       private JLabel tt;
        private boolean selected;
        private boolean hovered;
        private Date lastClick;
        private long doubleClickDelay = 200; // in ms
-       private List<BookActionListner> listeners;
+       private List<BookActionListener> listeners;
 
        public LocalReaderBook(MetaData meta) {
                if (meta.getCover() != null) {
-                       BufferedImage resizedImage = new BufferedImage(100, 150,
+                       BufferedImage resizedImage = new BufferedImage(SPINE_WIDTH
+                                       + COVER_WIDTH, SPINE_HEIGHT + COVER_HEIGHT + HOFFSET,
                                        BufferedImage.TYPE_4BYTE_ABGR);
                        Graphics2D g = resizedImage.createGraphics();
-                       g.drawImage(meta.getCover(), 0, 0, 100, 150, null);
+                       g.setColor(Color.white);
+                       g.fillRect(0, HOFFSET, COVER_WIDTH, COVER_HEIGHT);
+                       g.drawImage(meta.getCover(), 0, HOFFSET, COVER_WIDTH, COVER_HEIGHT,
+                                       null);
                        g.dispose();
 
                        icon = new JLabel(new ImageIcon(resizedImage));
                } else {
+                       // TODO: a big black "X" ?
                        icon = new JLabel(" [ no cover ] ");
                }
 
-               title = new JLabel(meta.getTitle());
-               author = new JLabel("by " + meta.getAuthor());
-
-               this.setLayout(new BorderLayout());
+               String optAuthor = meta.getAuthor();
+               if (optAuthor != null && !optAuthor.isEmpty()) {
+                       optAuthor = "(" + optAuthor + ")";
+               }
+               tt = new JLabel(
+                               String.format(
+                                               "<html>"
+                                                               + "<body style='width: %d px; height: %d px; text-align: center'>"
+                                                               + "%s" + "<br>" + "<span style='color: %s;'>"
+                                                               + "%s" + "</span>" + "</body>" + "</html>",
+                                               TEXT_WIDTH, TEXT_HEIGHT, meta.getTitle(), AUTHOR_COLOR,
+                                               optAuthor));
+
+               this.setLayout(new BorderLayout(10, 10));
                this.add(icon, BorderLayout.CENTER);
-               this.add(title, BorderLayout.SOUTH);
+               this.add(tt, BorderLayout.SOUTH);
 
                setupListeners();
                setSelected(false);
@@ -97,28 +125,16 @@ class LocalReaderBook extends JPanel {
         */
        public void setSelected(boolean selected) {
                this.selected = selected;
-               fixColor();
+               repaint();
        }
 
        private void setHovered(boolean hovered) {
                this.hovered = hovered;
-               fixColor();
-       }
-
-       private void fixColor() {
-               if (selected && !hovered) {
-                       setBackground(new Color(180, 180, 255));
-               } else if (!selected && hovered) {
-                       setBackground(new Color(230, 230, 255));
-               } else if (selected && hovered) {
-                       setBackground(new Color(200, 200, 255));
-               } else {
-                       setBackground(new Color(255, 255, 255));
-               }
+               repaint();
        }
 
        private void setupListeners() {
-               listeners = new ArrayList<LocalReaderBook.BookActionListner>();
+               listeners = new ArrayList<LocalReaderBook.BookActionListener>();
                addMouseListener(new MouseListener() {
                        public void mouseReleased(MouseEvent e) {
                        }
@@ -148,7 +164,7 @@ class LocalReaderBook extends JPanel {
        }
 
        private void click(boolean doubleClick) {
-               for (BookActionListner listener : listeners) {
+               for (BookActionListener listener : listeners) {
                        if (doubleClick) {
                                listener.action(this);
                        } else {
@@ -157,7 +173,42 @@ class LocalReaderBook extends JPanel {
                }
        }
 
-       public void addActionListener(BookActionListner listener) {
+       public void addActionListener(BookActionListener listener) {
                listeners.add(listener);
        }
+
+       @Override
+       public void paint(Graphics g) {
+               super.paint(g);
+
+               int h = COVER_HEIGHT;
+               int w = COVER_WIDTH;
+               int xOffset = (TEXT_WIDTH - COVER_WIDTH) - 4;
+
+               int[] xs = new int[] { xOffset, xOffset + SPINE_WIDTH,
+                               xOffset + w + SPINE_WIDTH, xOffset + w };
+               int[] ys = new int[] { HOFFSET + h, HOFFSET + h + SPINE_HEIGHT,
+                               HOFFSET + h + SPINE_HEIGHT, HOFFSET + h };
+               g.setColor(SPINE_COLOR_BOTTOM);
+               g.fillPolygon(new Polygon(xs, ys, xs.length));
+               xs = new int[] { xOffset + w, xOffset + w + SPINE_WIDTH,
+                               xOffset + w + SPINE_WIDTH, xOffset + w };
+               ys = new int[] { HOFFSET, HOFFSET + SPINE_HEIGHT,
+                               HOFFSET + h + SPINE_HEIGHT, HOFFSET + h };
+               g.setColor(SPINE_COLOR_RIGHT);
+               g.fillPolygon(new Polygon(xs, ys, xs.length));
+
+               Color color = new Color(255, 255, 255, 0);
+               if (selected && !hovered) {
+                       color = new Color(80, 80, 100, 40);
+               } else if (!selected && hovered) {
+                       color = new Color(230, 230, 255, 100);
+               } else if (selected && hovered) {
+                       color = new Color(200, 200, 255, 100);
+               }
+
+               Rectangle clip = g.getClipBounds();
+               g.setColor(color);
+               g.fillRect(clip.x, clip.y, clip.width, clip.height);
+       }
 }