X-Git-Url: http://git.nikiroo.be/?p=fanfix.git;a=blobdiff_plain;f=src%2Fbe%2Fnikiroo%2Ffanfix%2Freader%2Fui%2FGuiReaderBook.java;fp=src%2Fbe%2Fnikiroo%2Ffanfix%2Freader%2Fui%2FGuiReaderBook.java;h=47b462360eeb7e6f5cc634c2957866e0dde25a7b;hp=728964baa3faa82676f3b7a6fb6c875b6529bebf;hb=484a31aadf54746222f9f35fb607a2ebee4e5e58;hpb=17fafa56087ec04ff386c6e56d38c51c98d71511 diff --git a/src/be/nikiroo/fanfix/reader/ui/GuiReaderBook.java b/src/be/nikiroo/fanfix/reader/ui/GuiReaderBook.java index 728964b..47b4623 100644 --- a/src/be/nikiroo/fanfix/reader/ui/GuiReaderBook.java +++ b/src/be/nikiroo/fanfix/reader/ui/GuiReaderBook.java @@ -1,6 +1,7 @@ package be.nikiroo.fanfix.reader.ui; import java.awt.BorderLayout; +import java.awt.Component; import java.awt.Graphics; import java.awt.event.MouseEvent; import java.awt.event.MouseListener; @@ -48,10 +49,19 @@ class GuiReaderBook extends JPanel { * * @param book * the {@link GuiReaderBook} itself - * @param e - * the {@link MouseEvent} that generated this call + * @param target + * the target component for the popup + * @param x + * the X position of the click/request (in case of popup + * request from the keyboard, the center of the target is + * selected as point of reference) + * @param y + * the Y position of the click/request (in case of popup + * request from the keyboard, the center of the target is + * selected as point of reference) */ - public void popupRequested(GuiReaderBook book, MouseEvent e); + public void popupRequested(GuiReaderBook book, Component target, int x, + int y); } private static final long serialVersionUID = 1L; @@ -135,7 +145,7 @@ class GuiReaderBook extends JPanel { * * @return TRUE if it is mouse-hovered */ - private boolean isHovered() { + public boolean isHovered() { return this.hovered; } @@ -145,7 +155,7 @@ class GuiReaderBook extends JPanel { * @param hovered * TRUE if it is mouse-hovered */ - private void setHovered(boolean hovered) { + public void setHovered(boolean hovered) { if (this.hovered != hovered) { this.hovered = hovered; repaint(); @@ -208,11 +218,8 @@ class GuiReaderBook extends JPanel { } private void popup(MouseEvent e) { - for (BookActionListener listener : listeners) { - listener.select((GuiReaderBook.this)); - listener.popupRequested(GuiReaderBook.this, e); - } - + GuiReaderBook.this + .popup(GuiReaderBook.this, e.getX(), e.getY()); e.consume(); } }); @@ -239,6 +246,8 @@ class GuiReaderBook extends JPanel { /** * Cause a select event on this {@link GuiReaderBook}. + *

+ * Have a look at {@link GuiReaderBook#setSelected(boolean)}. */ private void select() { for (BookActionListener listener : listeners) { @@ -246,6 +255,27 @@ class GuiReaderBook extends JPanel { } } + /** + * Request a popup. + * + * @param target + * the target component for the popup + * @param x + * the X position of the click/request (in case of popup request + * from the keyboard, the center of the target should be selected + * as point of reference) + * @param y + * the Y position of the click/request (in case of popup request + * from the keyboard, the center of the target should be selected + * as point of reference) + */ + public void popup(Component target, int x, int y) { + for (BookActionListener listener : listeners) { + listener.select((GuiReaderBook.this)); + listener.popupRequested(GuiReaderBook.this, target, x, y); + } + } + /** * The information about the book represented by this item. *