JAL-4045 - don't apply distribution dependent scale factor to the axis lines!
[jalview.git] / src / jalview / gui / RotatableCanvas.java
index 460a99f..ef0b2aa 100755 (executable)
-/*\r
- * Jalview - A Sequence Alignment Editor and Viewer\r
- * Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle\r
- *\r
- * This program is free software; you can redistribute it and/or\r
- * modify it under the terms of the GNU General Public License\r
- * as published by the Free Software Foundation; either version 2\r
- * of the License, or (at your option) any later version.\r
- *\r
- * This program is distributed in the hope that it will be useful,\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
- * GNU General Public License for more details.\r
- *\r
- * You should have received a copy of the GNU General Public License\r
- * along with this program; if not, write to the Free Software\r
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA\r
- */\r
-package jalview.gui;\r
-\r
-import jalview.datamodel.*;\r
-\r
-import jalview.math.*;\r
-\r
-import jalview.util.*;\r
-\r
-import java.awt.*;\r
-import java.awt.event.*;\r
-\r
-import java.util.*;\r
-\r
-import javax.swing.*;\r
-\r
-\r
-/**\r
- * DOCUMENT ME!\r
- *\r
- * @author $author$\r
- * @version $Revision$\r
- */\r
-public class RotatableCanvas extends JPanel implements MouseListener,\r
-    MouseMotionListener, KeyListener\r
-//RubberbandListener,\r
-//SequenceSelectionListener\r
-{\r
-    RotatableMatrix idmat = new RotatableMatrix(3, 3);\r
-    RotatableMatrix objmat = new RotatableMatrix(3, 3);\r
-    RotatableMatrix rotmat = new RotatableMatrix(3, 3);\r
-\r
-    //RubberbandRectangle rubberband;\r
-    boolean drawAxes = true;\r
-    int omx = 0;\r
-    int mx = 0;\r
-    int omy = 0;\r
-    int my = 0;\r
-    Image img;\r
-    Graphics ig;\r
-    Dimension prefsize;\r
-    float[] centre = new float[3];\r
-    float[] width = new float[3];\r
-    float[] max = new float[3];\r
-    float[] min = new float[3];\r
-    float maxwidth;\r
-    float scale;\r
-    int npoint;\r
-    Vector points;\r
-    float[][] orig;\r
-    float[][] axes;\r
-    int startx;\r
-    int starty;\r
-    int lastx;\r
-    int lasty;\r
-    int rectx1;\r
-    int recty1;\r
-    int rectx2;\r
-    int recty2;\r
-    float scalefactor = 1;\r
-    AlignViewport av;\r
-\r
-    //  Controller    controller;\r
-    public RotatableCanvas(AlignViewport av, Vector points, int npoint)\r
-    {\r
-        this.points = points;\r
-        this.npoint = npoint;\r
-        this.av = av;\r
-        ToolTipManager.sharedInstance().registerComponent(this);\r
-        ToolTipManager.sharedInstance().setInitialDelay(0);\r
-        ToolTipManager.sharedInstance().setDismissDelay(10000);\r
-        PaintRefresher.Register(this, av.alignment);\r
-\r
-        prefsize = getPreferredSize();\r
-        orig = new float[npoint][3];\r
-\r
-        for (int i = 0; i < npoint; i++)\r
-        {\r
-            SequencePoint sp = (SequencePoint) points.elementAt(i);\r
-\r
-            for (int j = 0; j < 3; j++)\r
-            {\r
-                orig[i][j] = sp.coord[j];\r
-            }\r
-        }\r
-\r
-        //Initialize the matrices to identity\r
-        for (int i = 0; i < 3; i++)\r
-        {\r
-            for (int j = 0; j < 3; j++)\r
-            {\r
-                if (i != j)\r
-                {\r
-                    idmat.addElement(i, j, 0);\r
-                    objmat.addElement(i, j, 0);\r
-                    rotmat.addElement(i, j, 0);\r
-                }\r
-                else\r
-                {\r
-                    idmat.addElement(i, j, 0);\r
-                    objmat.addElement(i, j, 0);\r
-                    rotmat.addElement(i, j, 0);\r
-                }\r
-            }\r
-        }\r
-\r
-        axes = new float[3][3];\r
-        initAxes();\r
-\r
-        findCentre();\r
-        findWidth();\r
-\r
-        scale = findScale();\r
-\r
-        //    System.out.println("Scale factor = " + scale);\r
-        addMouseListener(this);\r
-        addKeyListener(this);\r
-\r
-        // if (getParent() != null) {\r
-        //   getParent().addKeyListener(this);\r
-        //}\r
-        addMouseMotionListener(this);\r
-\r
-        // Add rubberband\r
-        //   rubberband  = new RubberbandRectangle(this);\r
-        //  rubberband.setActive(true);\r
-        //   rubberband.addListener(this);\r
-    }\r
-\r
-    /* public boolean handleSequenceSelectionEvent(SequenceSelectionEvent evt) {\r
-       redrawneeded = true;\r
-       repaint();\r
-       return true;\r
-     }\r
-\r
-     public void removeNotify() {\r
-       controller.removeListener(this);\r
-       super.removeNotify();\r
-     }*/\r
-    public void initAxes()\r
-    {\r
-        for (int i = 0; i < 3; i++)\r
-        {\r
-            for (int j = 0; j < 3; j++)\r
-            {\r
-                if (i != j)\r
-                {\r
-                    axes[i][j] = 0;\r
-                }\r
-                else\r
-                {\r
-                    axes[i][j] = 1;\r
-                }\r
-            }\r
-        }\r
-    }\r
-\r
-    /**\r
-     * DOCUMENT ME!\r
-     */\r
-    public void findWidth()\r
-    {\r
-        max = new float[3];\r
-        min = new float[3];\r
-\r
-        max[0] = (float) -1e30;\r
-        max[1] = (float) -1e30;\r
-        max[2] = (float) -1e30;\r
-\r
-        min[0] = (float) 1e30;\r
-        min[1] = (float) 1e30;\r
-        min[2] = (float) 1e30;\r
-\r
-        for (int i = 0; i < 3; i++)\r
-        {\r
-            for (int j = 0; j < npoint; j++)\r
-            {\r
-                SequencePoint sp = (SequencePoint) points.elementAt(j);\r
-\r
-                if (sp.coord[i] >= max[i])\r
-                {\r
-                    max[i] = sp.coord[i];\r
-                }\r
-\r
-                if (sp.coord[i] <= min[i])\r
-                {\r
-                    min[i] = sp.coord[i];\r
-                }\r
-            }\r
-        }\r
-\r
-        //    System.out.println("xmax " + max[0] + " min " + min[0]);\r
-        //System.out.println("ymax " + max[1] + " min " + min[1]);\r
-        //System.out.println("zmax " + max[2] + " min " + min[2]);\r
-        width[0] = Math.abs(max[0] - min[0]);\r
-        width[1] = Math.abs(max[1] - min[1]);\r
-        width[2] = Math.abs(max[2] - min[2]);\r
-\r
-        maxwidth = width[0];\r
-\r
-        if (width[1] > width[0])\r
-        {\r
-            maxwidth = width[1];\r
-        }\r
-\r
-        if (width[2] > width[1])\r
-        {\r
-            maxwidth = width[2];\r
-        }\r
-\r
-        //System.out.println("Maxwidth = " + maxwidth);\r
-    }\r
-\r
-    /**\r
-     * DOCUMENT ME!\r
-     *\r
-     * @return DOCUMENT ME!\r
-     */\r
-    public float findScale()\r
-    {\r
-        int dim;\r
-        int width;\r
-        int height;\r
-\r
-        if (getWidth() != 0)\r
-        {\r
-            width = getWidth();\r
-            height = getHeight();\r
-        }\r
-        else\r
-        {\r
-            width = prefsize.width;\r
-            height = prefsize.height;\r
-        }\r
-\r
-        if (width < height)\r
-        {\r
-            dim = width;\r
-        }\r
-        else\r
-        {\r
-            dim = height;\r
-        }\r
-\r
-        return (float) ((dim * scalefactor) / (2 * maxwidth));\r
-    }\r
-\r
-    /**\r
-     * DOCUMENT ME!\r
-     */\r
-    public void findCentre()\r
-    {\r
-        //Find centre coordinate\r
-        findWidth();\r
-\r
-        centre[0] = (max[0] + min[0]) / 2;\r
-        centre[1] = (max[1] + min[1]) / 2;\r
-        centre[2] = (max[2] + min[2]) / 2;\r
-\r
-        //    System.out.println("Centre x " + centre[0]);\r
-        //System.out.println("Centre y " + centre[1]);\r
-        //System.out.println("Centre z " + centre[2]);\r
-    }\r
-\r
-    /**\r
-     * DOCUMENT ME!\r
-     *\r
-     * @return DOCUMENT ME!\r
-     */\r
-    public Dimension getPreferredSize()\r
-    {\r
-        if (prefsize != null)\r
-        {\r
-            return prefsize;\r
-        }\r
-        else\r
-        {\r
-            return new Dimension(400, 400);\r
-        }\r
-    }\r
-\r
-    /**\r
-     * DOCUMENT ME!\r
-     *\r
-     * @return DOCUMENT ME!\r
-     */\r
-    public Dimension getMinimumSize()\r
-    {\r
-        return getPreferredSize();\r
-    }\r
-\r
-    /**\r
-     * DOCUMENT ME!\r
-     *\r
-     * @param g DOCUMENT ME!\r
-     */\r
-    public void paintComponent(Graphics g)\r
-    {\r
-        //Only create the image at the beginning -\r
-        if ((img == null) || (prefsize.width != getWidth()) ||\r
-                (prefsize.height != getHeight()))\r
-        {\r
-            prefsize.width = getWidth();\r
-            prefsize.height = getHeight();\r
-\r
-            scale = findScale();\r
-\r
-            //      System.out.println("New scale = " + scale);\r
-            img = createImage(getWidth(), getHeight());\r
-            ig = img.getGraphics();\r
-        }\r
-\r
-        drawBackground(ig, Color.black);\r
-        drawScene(ig);\r
-\r
-        if (drawAxes == true)\r
-        {\r
-            drawAxes(ig);\r
-        }\r
-\r
-        g.drawImage(img, 0, 0, this);\r
-    }\r
-\r
-    /**\r
-     * DOCUMENT ME!\r
-     *\r
-     * @param g DOCUMENT ME!\r
-     */\r
-    public void drawAxes(Graphics g)\r
-    {\r
-        g.setColor(Color.yellow);\r
-\r
-        for (int i = 0; i < 3; i++)\r
-        {\r
-            g.drawLine(getWidth() / 2, getHeight() / 2,\r
-                (int) ((axes[i][0] * scale * max[0]) + (getWidth() / 2)),\r
-                (int) ((axes[i][1] * scale * max[1]) + (getHeight() / 2)));\r
-        }\r
-    }\r
-\r
-    /**\r
-     * DOCUMENT ME!\r
-     *\r
-     * @param g DOCUMENT ME!\r
-     * @param col DOCUMENT ME!\r
-     */\r
-    public void drawBackground(Graphics g, Color col)\r
-    {\r
-        g.setColor(col);\r
-        g.fillRect(0, 0, prefsize.width, prefsize.height);\r
-    }\r
-\r
-    /**\r
-     * DOCUMENT ME!\r
-     *\r
-     * @param g DOCUMENT ME!\r
-     */\r
-    public void drawScene(Graphics g)\r
-    {\r
-        boolean darker = false;\r
-\r
-        int halfwidth = getWidth() / 2;\r
-        int halfheight = getHeight() / 2;\r
-\r
-        for (int i = 0; i < npoint; i++)\r
-        {\r
-            SequencePoint sp = (SequencePoint) points.elementAt(i);\r
-            int x = (int) ((float) (sp.coord[0] - centre[0]) * scale) +\r
-                halfwidth;\r
-            int y = (int) ((float) (sp.coord[1] - centre[1]) * scale) +\r
-                halfheight;\r
-            float z = sp.coord[1] - centre[2];\r
-\r
-            if (sp.sequence.getColor() == Color.black)\r
-            {\r
-                g.setColor(Color.white);\r
-            }\r
-            else\r
-            {\r
-                g.setColor(sp.sequence.getColor());\r
-            }\r
-\r
-            if (av.getSelectionGroup() != null)\r
-            {\r
-                if (av.getSelectionGroup().sequences.contains(\r
-                            ((SequencePoint) points.elementAt(i)).sequence))\r
-                {\r
-                    g.setColor(Color.gray);\r
-                }\r
-            }\r
-\r
-            if (z < 0)\r
-            {\r
-                g.setColor(g.getColor().darker());\r
-            }\r
-\r
-            g.fillRect(x - 3, y - 3, 6, 6);\r
-            g.setColor(Color.red);\r
-        }\r
-\r
-        //    //Now the rectangle\r
-        //    if (rectx2 != -1 && recty2 != -1) {\r
-        //      g.setColor(Color.white);\r
-        //\r
-        //      g.drawRect(rectx1,recty1,rectx2-rectx1,recty2-recty1);\r
-        //    }\r
-    }\r
-\r
-    /**\r
-     * DOCUMENT ME!\r
-     *\r
-     * @return DOCUMENT ME!\r
-     */\r
-    public Dimension minimumsize()\r
-    {\r
-        return prefsize;\r
-    }\r
-\r
-    /**\r
-     * DOCUMENT ME!\r
-     *\r
-     * @return DOCUMENT ME!\r
-     */\r
-    public Dimension preferredsize()\r
-    {\r
-        return prefsize;\r
-    }\r
-\r
-    /**\r
-     * DOCUMENT ME!\r
-     *\r
-     * @param evt DOCUMENT ME!\r
-     */\r
-    public void keyTyped(KeyEvent evt)\r
-    {\r
-    }\r
-\r
-    /**\r
-     * DOCUMENT ME!\r
-     *\r
-     * @param evt DOCUMENT ME!\r
-     */\r
-    public void keyReleased(KeyEvent evt)\r
-    {\r
-    }\r
-\r
-    /**\r
-     * DOCUMENT ME!\r
-     *\r
-     * @param evt DOCUMENT ME!\r
-     */\r
-    public void keyPressed(KeyEvent evt)\r
-    {\r
-        requestFocus();\r
-\r
-        if (evt.getKeyCode() == KeyEvent.VK_UP)\r
-        {\r
-            scalefactor = (float) (scalefactor * 1.1);\r
-            scale = findScale();\r
-        }\r
-        else if (evt.getKeyCode() == KeyEvent.VK_DOWN)\r
-        {\r
-            scalefactor = (float) (scalefactor * 0.9);\r
-            scale = findScale();\r
-        }\r
-        else if (evt.getKeyChar() == 's')\r
-        {\r
-            System.err.println("DEBUG: Rectangle selection"); // log.debug\r
-\r
-            if ((rectx2 != -1) && (recty2 != -1))\r
-            {\r
-                rectSelect(rectx1, recty1, rectx2, recty2);\r
-            }\r
-        }\r
-\r
-        repaint();\r
-    }\r
-\r
-    /**\r
-     * DOCUMENT ME!\r
-     */\r
-    public void printPoints()\r
-    {\r
-        for (int i = 0; i < npoint; i++)\r
-        {\r
-            SequencePoint sp = (SequencePoint) points.elementAt(i);\r
-            Format.print(System.out, "%5d ", i);\r
-\r
-            for (int j = 0; j < 3; j++)\r
-            {\r
-                Format.print(System.out, "%13.3f  ", sp.coord[j]);\r
-            }\r
-\r
-            System.out.println();\r
-        }\r
-    }\r
-\r
-    /**\r
-     * DOCUMENT ME!\r
-     *\r
-     * @param evt DOCUMENT ME!\r
-     */\r
-    public void mouseClicked(MouseEvent evt)\r
-    {\r
-    }\r
-\r
-    /**\r
-     * DOCUMENT ME!\r
-     *\r
-     * @param evt DOCUMENT ME!\r
-     */\r
-    public void mouseEntered(MouseEvent evt)\r
-    {\r
-    }\r
-\r
-    /**\r
-     * DOCUMENT ME!\r
-     *\r
-     * @param evt DOCUMENT ME!\r
-     */\r
-    public void mouseExited(MouseEvent evt)\r
-    {\r
-    }\r
-\r
-    /**\r
-     * DOCUMENT ME!\r
-     *\r
-     * @param evt DOCUMENT ME!\r
-     */\r
-    public void mouseReleased(MouseEvent evt)\r
-    {\r
-    }\r
-\r
-    /**\r
-     * DOCUMENT ME!\r
-     *\r
-     * @param evt DOCUMENT ME!\r
-     */\r
-    public void mousePressed(MouseEvent evt)\r
-    {\r
-        int x = evt.getX();\r
-        int y = evt.getY();\r
-\r
-        mx = x;\r
-        my = y;\r
-\r
-        omx = mx;\r
-        omy = my;\r
-\r
-        startx = x;\r
-        starty = y;\r
-\r
-        rectx1 = x;\r
-        recty1 = y;\r
-\r
-        rectx2 = -1;\r
-        recty2 = -1;\r
-\r
-        SequenceI found = findPoint(x, y);\r
-\r
-        if (found != null)\r
-        {\r
-            if (av.getSelectionGroup() != null)\r
-            {\r
-                av.getSelectionGroup().addOrRemove(found, true);\r
-                PaintRefresher.Refresh(this, av.alignment);\r
-            }\r
-            else\r
-            {\r
-                av.setSelectionGroup(new SequenceGroup());\r
-                av.getSelectionGroup().addOrRemove(found, true);\r
-                av.getSelectionGroup().setEndRes(av.alignment.getWidth()-1);\r
-            }\r
-        }\r
-\r
-        repaint();\r
-    }\r
-\r
-    // private void fireSequenceSelectionEvent(Selection sel) {\r
-    //   controller.handleSequenceSelectionEvent(new SequenceSelectionEvent(this,sel));\r
-    //}\r
-    public void mouseMoved(MouseEvent evt)\r
-    {\r
-        SequenceI found = findPoint(evt.getX(), evt.getY());\r
-\r
-        if (found != null)\r
-        {\r
-            this.setToolTipText(found.getName());\r
-        }\r
-        else\r
-        {\r
-            this.setToolTipText(null);\r
-        }\r
-    }\r
-\r
-    /**\r
-     * DOCUMENT ME!\r
-     *\r
-     * @param evt DOCUMENT ME!\r
-     */\r
-    public void mouseDragged(MouseEvent evt)\r
-    {\r
-        mx = evt.getX();\r
-        my = evt.getY();\r
-\r
-        //Check if this is a rectangle drawing drag\r
-        if ((evt.getModifiers() & InputEvent.BUTTON2_MASK) != 0)\r
-        {\r
-            //      rectx2 = evt.getX();\r
-            //      recty2 = evt.getY();\r
-        }\r
-        else\r
-        {\r
-            rotmat.setIdentity();\r
-\r
-            rotmat.rotate((float) (my - omy), 'x');\r
-            rotmat.rotate((float) (mx - omx), 'y');\r
-\r
-            for (int i = 0; i < npoint; i++)\r
-            {\r
-                SequencePoint sp = (SequencePoint) points.elementAt(i);\r
-                sp.coord[0] -= centre[0];\r
-                sp.coord[1] -= centre[1];\r
-                sp.coord[2] -= centre[2];\r
-\r
-                //Now apply the rotation matrix\r
-                sp.coord = rotmat.vectorMultiply(sp.coord);\r
-\r
-                //Now translate back again\r
-                sp.coord[0] += centre[0];\r
-                sp.coord[1] += centre[1];\r
-                sp.coord[2] += centre[2];\r
-            }\r
-\r
-            for (int i = 0; i < 3; i++)\r
-            {\r
-                axes[i] = rotmat.vectorMultiply(axes[i]);\r
-            }\r
-\r
-            omx = mx;\r
-            omy = my;\r
-\r
-            paint(this.getGraphics());\r
-        }\r
-    }\r
-\r
-    /**\r
-     * DOCUMENT ME!\r
-     *\r
-     * @param x1 DOCUMENT ME!\r
-     * @param y1 DOCUMENT ME!\r
-     * @param x2 DOCUMENT ME!\r
-     * @param y2 DOCUMENT ME!\r
-     */\r
-    public void rectSelect(int x1, int y1, int x2, int y2)\r
-    {\r
-        boolean changedSel = false;\r
-\r
-        for (int i = 0; i < npoint; i++)\r
-        {\r
-            SequencePoint sp = (SequencePoint) points.elementAt(i);\r
-            int tmp1 = (int) (((sp.coord[0] - centre[0]) * scale) +\r
-                ((float) getWidth() / 2.0));\r
-            int tmp2 = (int) (((sp.coord[1] - centre[1]) * scale) +\r
-                ((float) getHeight() / 2.0));\r
-\r
-            if ((tmp1 > x1) && (tmp1 < x2) && (tmp2 > y1) && (tmp2 < y2))\r
-            {\r
-                if (av != null)\r
-                {\r
-                    if (!av.getSelectionGroup().sequences.contains(sp.sequence))\r
-                    {\r
-                        changedSel = true;\r
-                        av.getSelectionGroup().addSequence(sp.sequence, true);\r
-                    }\r
-                }\r
-            }\r
-        }\r
-\r
-        // if (changedSel) {\r
-        //    fireSequenceSelectionEvent(av.getSelection());\r
-        // }\r
-    }\r
-\r
-    /**\r
-     * DOCUMENT ME!\r
-     *\r
-     * @param x DOCUMENT ME!\r
-     * @param y DOCUMENT ME!\r
-     *\r
-     * @return DOCUMENT ME!\r
-     */\r
-    public SequenceI findPoint(int x, int y)\r
-    {\r
-        int halfwidth = getWidth() / 2;\r
-        int halfheight = getHeight() / 2;\r
-\r
-        int found = -1;\r
-\r
-        for (int i = 0; i < npoint; i++)\r
-        {\r
-            SequencePoint sp = (SequencePoint) points.elementAt(i);\r
-            int px = (int) ((float) (sp.coord[0] - centre[0]) * scale) +\r
-                halfwidth;\r
-            int py = (int) ((float) (sp.coord[1] - centre[1]) * scale) +\r
-                halfheight;\r
-\r
-            if ((Math.abs(px - x) < 3) && (Math.abs(py - y) < 3))\r
-            {\r
-                found = i;\r
-            }\r
-        }\r
-\r
-        if (found != -1)\r
-        {\r
-            return ((SequencePoint) points.elementAt(found)).sequence;\r
-        }\r
-        else\r
-        {\r
-            return null;\r
-        }\r
-    }\r
-\r
-    /*  public boolean handleRubberbandEvent(RubberbandEvent evt) {\r
-        System.out.println("Rubberband handler called in RotatableCanvas with " +\r
-                           evt.getBounds());\r
-\r
-        Rubberband rb = (Rubberband)evt.getSource();\r
-\r
-        // Clear the current selection (instance variable)\r
-        //if ((rb.getModifiers() & Event.SHIFT_MASK) == 0) {\r
-        //   clearSelection();\r
-        //}\r
-\r
-        if (rb.getComponent() == this) {\r
-          Rectangle bounds = evt.getBounds();\r
-     rectSelect(bounds.x,bounds.y,bounds.x+bounds.width,bounds.y+bounds.height);\r
-        }\r
-\r
-        redrawneeded = true;\r
-        paint(this.getGraphics());\r
-\r
-        return true;\r
-      }*/\r
-}\r
+/*
+ * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
+ * Copyright (C) $$Year-Rel$$ The Jalview Authors
+ * 
+ * This file is part of Jalview.
+ * 
+ * Jalview is free software: you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License 
+ * as published by the Free Software Foundation, either version 3
+ * of the License, or (at your option) any later version.
+ *  
+ * Jalview is distributed in the hope that it will be useful, but 
+ * WITHOUT ANY WARRANTY; without even the implied warranty 
+ * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
+ * PURPOSE.  See the GNU General Public License for more details.
+ * 
+ * You should have received a copy of the GNU General Public License
+ * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
+ * The Jalview Authors are detailed in the 'AUTHORS' file.
+ */
+package jalview.gui;
+
+import java.awt.Color;
+import java.awt.Dimension;
+import java.awt.Font;
+import java.awt.Graphics;
+import java.awt.Graphics2D;
+import java.awt.Image;
+import java.awt.RenderingHints;
+import java.awt.event.InputEvent;
+import java.awt.event.KeyEvent;
+import java.awt.event.KeyListener;
+import java.awt.event.MouseEvent;
+import java.awt.event.MouseListener;
+import java.awt.event.MouseMotionListener;
+import java.awt.event.MouseWheelEvent;
+import java.awt.event.MouseWheelListener;
+import java.util.Arrays;
+import java.util.Iterator;
+import java.util.List;
+
+import javax.swing.JPanel;
+import javax.swing.ToolTipManager;
+
+import jalview.api.RotatableCanvasI;
+import jalview.datamodel.Point;
+import jalview.datamodel.SequenceGroup;
+import jalview.datamodel.SequenceI;
+import jalview.datamodel.SequencePoint;
+import jalview.math.RotatableMatrix;
+import jalview.math.RotatableMatrix.Axis;
+import jalview.util.ColorUtils;
+import jalview.util.MessageManager;
+import jalview.viewmodel.AlignmentViewport;
+
+/**
+ * Models a Panel on which a set of points, and optionally x/y/z axes, can be
+ * drawn, and rotated or zoomed with the mouse
+ */
+public class RotatableCanvas extends JPanel
+        implements MouseListener, MouseMotionListener, KeyListener,
+        RotatableCanvasI, MouseWheelListener
+{
+  private static final float ZOOM_OUT = 0.9f;
+
+  private static final float ZOOM_IN = 1.1f;
+
+  /*
+   * pixels distance within which tooltip shows sequence name
+   */
+  private static final int NEARBY = 3;
+
+  private static final List<String> AXES = Arrays.asList("x", "y", "z");
+
+  private static final Color AXIS_COLOUR = Color.yellow;
+
+  private static final int DIMS = 3;
+
+  boolean drawAxes = true;
+
+  int mouseX;
+
+  int mouseY;
+
+  Image img;
+
+  Graphics ig;
+
+  Dimension prefSize;
+
+  /*
+   * the min-max [x, y, z] values of sequence points when the points
+   * were set on the object, or when the view is reset; 
+   * x and y ranges are not recomputed as points are rotated, as this
+   * would make scaling (zoom) unstable, but z ranges are (for correct
+   * graduated colour brightness based on z-coordinate)
+   */
+  float[] seqMin;
+
+  float[] seqMax;
+
+  /*
+   * a scale factor used in drawing; when equal to 1, the points span
+   * half the available width or height (whichever is less); increase this
+   * factor to zoom in, decrease it to zoom out
+   */
+  private float scaleFactor;
+
+  int npoint;
+
+  /*
+   * sequences and their (x, y, z) PCA dimension values
+   */
+  List<SequencePoint> sequencePoints;
+
+  /*
+   * x, y, z axis end points (PCA dimension values)
+   */
+  private Point[] axisEndPoints;
+
+  // fields for 'select rectangle' (JAL-1124)
+  // int rectx1;
+  // int recty1;
+  // int rectx2;
+  // int recty2;
+
+  AlignmentViewport av;
+
+  AlignmentPanel ap;
+
+  private boolean showLabels;
+
+  private Color bgColour;
+
+  private boolean applyToAllViews;
+
+  /**
+   * Constructor
+   * 
+   * @param panel
+   */
+  public RotatableCanvas(AlignmentPanel panel)
+  {
+    this.av = panel.av;
+    this.ap = panel;
+    setAxisEndPoints(new Point[DIMS]);
+    setShowLabels(false);
+    setApplyToAllViews(false);
+    setBgColour(Color.BLACK);
+    resetAxes();
+
+    ToolTipManager.sharedInstance().registerComponent(this);
+
+    addMouseListener(this);
+    addMouseMotionListener(this);
+    addMouseWheelListener(this);
+  }
+
+  /**
+   * Refreshes the display with labels shown (or not)
+   * 
+   * @param show
+   */
+  public void showLabels(boolean show)
+  {
+    setShowLabels(show);
+    repaint();
+  }
+
+  @Override
+  public void setPoints(List<SequencePoint> points, int np)
+  {
+    this.sequencePoints = points;
+    this.npoint = np;
+    prefSize = getPreferredSize();
+
+    findWidths();
+
+    setScaleFactor(1f);
+  }
+
+  /**
+   * Resets axes to the initial state: x-axis to the right, y-axis up, z-axis to
+   * back (so obscured in a 2-D display)
+   */
+  protected void resetAxes()
+  {
+    getAxisEndPoints()[0] = new Point(1f, 0f, 0f);
+    getAxisEndPoints()[1] = new Point(0f, 1f, 0f);
+    getAxisEndPoints()[2] = new Point(0f, 0f, 1f);
+  }
+
+  /**
+   * Computes and saves the min-max ranges of x/y/z positions of the sequence
+   * points
+   */
+  protected void findWidths()
+  {
+    float[] max = new float[DIMS];
+    float[] min = new float[DIMS];
+
+    max[0] = -Float.MAX_VALUE;
+    max[1] = -Float.MAX_VALUE;
+    max[2] = -Float.MAX_VALUE;
+
+    min[0] = Float.MAX_VALUE;
+    min[1] = Float.MAX_VALUE;
+    min[2] = Float.MAX_VALUE;
+
+    for (SequencePoint sp : sequencePoints)
+    {
+      max[0] = Math.max(max[0], sp.coord.x);
+      max[1] = Math.max(max[1], sp.coord.y);
+      max[2] = Math.max(max[2], sp.coord.z);
+      min[0] = Math.min(min[0], sp.coord.x);
+      min[1] = Math.min(min[1], sp.coord.y);
+      min[2] = Math.min(min[2], sp.coord.z);
+    }
+
+    seqMin = min;
+    seqMax = max;
+  }
+
+  /**
+   * Answers the preferred size if it has been set, else 400 x 400
+   * 
+   * @return
+   */
+  @Override
+  public Dimension getPreferredSize()
+  {
+    if (prefSize != null)
+    {
+      return prefSize;
+    }
+    else
+    {
+      return new Dimension(400, 400);
+    }
+  }
+
+  /**
+   * Answers the preferred size
+   * 
+   * @return
+   * @see RotatableCanvas#getPreferredSize()
+   */
+  @Override
+  public Dimension getMinimumSize()
+  {
+    return getPreferredSize();
+  }
+
+  /**
+   * Repaints the panel
+   * 
+   * @param g
+   */
+  @Override
+  public void paintComponent(Graphics g1)
+  {
+
+    Graphics2D g = (Graphics2D) g1;
+
+    g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
+            RenderingHints.VALUE_ANTIALIAS_ON);
+    if (sequencePoints == null)
+    {
+      g.setFont(new Font("Verdana", Font.PLAIN, 18));
+      g.drawString(
+              MessageManager.getString("label.calculating_pca") + "....",
+              20, getHeight() / 2);
+    }
+    else
+    {
+      /*
+       * create the image at the beginning or after a resize
+       */
+      boolean resized = prefSize.width != getWidth()
+              || prefSize.height != getHeight();
+      if (img == null || resized)
+      {
+        prefSize.width = getWidth();
+        prefSize.height = getHeight();
+
+        img = createImage(getWidth(), getHeight());
+        ig = img.getGraphics();
+      }
+
+      drawBackground(ig);
+      drawScene(ig);
+
+      if (drawAxes)
+      {
+        drawAxes(ig);
+      }
+
+      g.drawImage(img, 0, 0, this);
+    }
+  }
+
+  /**
+   * Resets the rotation and choice of axes to the initial state (without change
+   * of scale factor)
+   */
+  public void resetView()
+  {
+    img = null;
+    findWidths();
+    resetAxes();
+    repaint();
+  }
+
+  /**
+   * Draws lines for the x, y, z axes
+   * 
+   * @param g
+   */
+  public void drawAxes(Graphics g)
+  {
+    g.setColor(AXIS_COLOUR);
+
+    int midX = getWidth() / 2;
+    int midY = getHeight() / 2;
+    // float maxWidth = Math.max(Math.abs(seqMax[0] - seqMin[0]),
+    // Math.abs(seqMax[1] - seqMin[1]));
+    int pix = Math.min(getWidth(), getHeight());
+    float scaleBy = pix * getScaleFactor() / (2f);
+
+    for (int i = 0; i < DIMS; i++)
+    {
+      g.drawLine(midX, midY,
+              midX + (int) (getAxisEndPoints()[i].x * scaleBy * 0.25),
+              midY + (int) (getAxisEndPoints()[i].y * scaleBy * 0.25));
+    }
+  }
+
+  /**
+   * Fills the background with the currently configured background colour
+   * 
+   * @param g
+   */
+  public void drawBackground(Graphics g)
+  {
+    g.setColor(getBgColour());
+    g.fillRect(0, 0, prefSize.width, prefSize.height);
+  }
+
+  /**
+   * Draws points (6x6 squares) for the sequences of the PCA, and labels
+   * (sequence names) if configured to do so. The sequence points colours are
+   * taken from the sequence ids in the alignment (converting black to white).
+   * Sequences 'at the back' (z-coordinate is negative) are shaded slightly
+   * darker to help give a 3-D sensation.
+   * 
+   * @param g
+   */
+  public void drawScene(Graphics g1)
+  {
+    Graphics2D g = (Graphics2D) g1;
+
+    g.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
+            RenderingHints.VALUE_ANTIALIAS_ON);
+    int pix = Math.min(getWidth(), getHeight());
+    float xWidth = Math.abs(seqMax[0] - seqMin[0]);
+    float yWidth = Math.abs(seqMax[1] - seqMin[1]);
+    float maxWidth = Math.max(xWidth, yWidth);
+    float scaleBy = pix * getScaleFactor() / (2f * maxWidth);
+
+    float[] centre = getCentre();
+
+    for (int i = 0; i < npoint; i++)
+    {
+      /*
+       * sequence point colour as sequence id, but
+       * gray if sequence is currently selected
+       */
+      SequencePoint sp = sequencePoints.get(i);
+      Color sequenceColour = getSequencePointColour(sp);
+      g.setColor(sequenceColour);
+
+      int halfwidth = getWidth() / 2;
+      int halfheight = getHeight() / 2;
+      int x = (int) ((sp.coord.x - centre[0]) * scaleBy) + halfwidth;
+      int y = (int) ((sp.coord.y - centre[1]) * scaleBy) + halfheight;
+      g.fillRect(x - 3, y - 3, 6, 6);
+
+      if (isShowLabels())
+      {
+        g.setColor(Color.red);
+        g.drawString(sp.getSequence().getName(), x - 3, y - 4);
+      }
+    }
+    if (isShowLabels())
+    {
+      g.setColor(AXIS_COLOUR);
+      int midX = getWidth() / 2;
+      int midY = getHeight() / 2;
+      Iterator<String> axes = AXES.iterator();
+      for (Point p : getAxisEndPoints())
+      {
+        int x = midX + (int) (p.x * scaleBy * seqMax[0]);
+        int y = midY + (int) (p.y * scaleBy * seqMax[1]);
+        g.drawString(axes.next(), x - 3, y - 4);
+      }
+    }
+    // //Now the rectangle
+    // if (rectx2 != -1 && recty2 != -1) {
+    // g.setColor(Color.white);
+    //
+    // g.drawRect(rectx1,recty1,rectx2-rectx1,recty2-recty1);
+    // }
+  }
+
+  /**
+   * Determines the colour to use when drawing a sequence point. The colour is
+   * taken from the sequence id, with black converted to white, and then
+   * graduated from darker (at the back) to brighter (at the front) based on the
+   * z-axis coordinate of the point.
+   * 
+   * @param sp
+   * @return
+   */
+  protected Color getSequencePointColour(SequencePoint sp)
+  {
+    SequenceI sequence = sp.getSequence();
+    Color sequenceColour = av.getSequenceColour(sequence);
+    if (sequenceColour == Color.black)
+    {
+      sequenceColour = Color.white;
+    }
+    if (av.getSelectionGroup() != null)
+    {
+      if (av.getSelectionGroup().getSequences(null).contains(sequence))
+      {
+        sequenceColour = Color.gray;
+      }
+    }
+
+    /*
+     * graduate brighter for point in front of centre, darker if behind centre
+     */
+    float zCentre = (seqMin[2] + seqMax[2]) / 2f;
+    if (sp.coord.z > zCentre)
+    {
+      sequenceColour = ColorUtils.getGraduatedColour(sp.coord.z, 0,
+              sequenceColour, seqMax[2], sequenceColour.brighter());
+    }
+    else if (sp.coord.z < zCentre)
+    {
+      sequenceColour = ColorUtils.getGraduatedColour(sp.coord.z, seqMin[2],
+              sequenceColour.darker(), 0, sequenceColour);
+    }
+
+    return sequenceColour;
+  }
+
+  @Override
+  public void keyTyped(KeyEvent evt)
+  {
+  }
+
+  @Override
+  public void keyReleased(KeyEvent evt)
+  {
+  }
+
+  /**
+   * Responds to up or down arrow key by zooming in or out, respectively
+   * 
+   * @param evt
+   */
+  @Override
+  public void keyPressed(KeyEvent evt)
+  {
+    int keyCode = evt.getKeyCode();
+    boolean shiftDown = evt.isShiftDown();
+
+    if (keyCode == KeyEvent.VK_UP)
+    {
+      if (shiftDown)
+      {
+        rotate(0f, -1f);
+      }
+      else
+      {
+        zoom(ZOOM_IN);
+      }
+    }
+    else if (keyCode == KeyEvent.VK_DOWN)
+    {
+      if (shiftDown)
+      {
+        rotate(0f, 1f);
+      }
+      else
+      {
+        zoom(ZOOM_OUT);
+      }
+    }
+    else if (shiftDown && keyCode == KeyEvent.VK_LEFT)
+    {
+      rotate(1f, 0f);
+    }
+    else if (shiftDown && keyCode == KeyEvent.VK_RIGHT)
+    {
+      rotate(-1f, 0f);
+    }
+    else if (evt.getKeyChar() == 's')
+    {
+      // Cache.warn("DEBUG: Rectangle selection");
+      // todo not yet enabled as rectx2, recty2 are always -1
+      // need to set them in mouseDragged; JAL-1124
+      // if ((rectx2 != -1) && (recty2 != -1))
+      // {
+      // rectSelect(rectx1, recty1, rectx2, recty2);
+      // }
+    }
+
+    repaint();
+  }
+
+  @Override
+  public void zoom(float factor)
+  {
+    if (factor > 0f)
+    {
+      setScaleFactor(getScaleFactor() * factor);
+    }
+  }
+
+  @Override
+  public void mouseClicked(MouseEvent evt)
+  {
+  }
+
+  @Override
+  public void mouseEntered(MouseEvent evt)
+  {
+  }
+
+  @Override
+  public void mouseExited(MouseEvent evt)
+  {
+  }
+
+  @Override
+  public void mouseReleased(MouseEvent evt)
+  {
+  }
+
+  /**
+   * If the mouse press is at (within 2 pixels of) a sequence point, toggles
+   * (adds or removes) the corresponding sequence as a member of the viewport
+   * selection group. This supports configuring a group in the alignment by
+   * clicking on points in the PCA display.
+   */
+  @Override
+  public void mousePressed(MouseEvent evt)
+  {
+    int x = evt.getX();
+    int y = evt.getY();
+
+    mouseX = x;
+    mouseY = y;
+
+    // rectx1 = x;
+    // recty1 = y;
+    // rectx2 = -1;
+    // recty2 = -1;
+
+    SequenceI found = findSequenceAtPoint(x, y);
+
+    if (found != null)
+    {
+      AlignmentPanel[] aps = getAssociatedPanels();
+
+      for (int a = 0; a < aps.length; a++)
+      {
+        if (aps[a].av.getSelectionGroup() != null)
+        {
+          aps[a].av.getSelectionGroup().addOrRemove(found, true);
+        }
+        else
+        {
+          aps[a].av.setSelectionGroup(new SequenceGroup());
+          aps[a].av.getSelectionGroup().addOrRemove(found, true);
+          aps[a].av.getSelectionGroup()
+                  .setEndRes(aps[a].av.getAlignment().getWidth() - 1);
+        }
+      }
+      PaintRefresher.Refresh(this, av.getSequenceSetId());
+      // canonical selection is sent to other listeners
+      av.sendSelection();
+    }
+
+    repaint();
+  }
+
+  /**
+   * Sets the tooltip to the name of the sequence within 2 pixels of the mouse
+   * position, or clears the tooltip if none found
+   */
+  @Override
+  public void mouseMoved(MouseEvent evt)
+  {
+    SequenceI found = findSequenceAtPoint(evt.getX(), evt.getY());
+
+    this.setToolTipText(found == null ? null : found.getName());
+  }
+
+  /**
+   * Action handler for a mouse drag. Rotates the display around the X axis (for
+   * up/down mouse movement) and/or the Y axis (for left/right mouse movement).
+   * 
+   * @param evt
+   */
+  @Override
+  public void mouseDragged(MouseEvent evt)
+  {
+    int xPos = evt.getX();
+    int yPos = evt.getY();
+
+    if (xPos == mouseX && yPos == mouseY)
+    {
+      return;
+    }
+
+    int xDelta = xPos - mouseX;
+    int yDelta = yPos - mouseY;
+
+    // Check if this is a rectangle drawing drag
+    if ((evt.getModifiersEx() & InputEvent.BUTTON2_DOWN_MASK) != 0)
+    {
+      // rectx2 = evt.getX();
+      // recty2 = evt.getY();
+    }
+    else
+    {
+      rotate(xDelta, yDelta);
+
+      mouseX = xPos;
+      mouseY = yPos;
+
+      // findWidths();
+
+      repaint();
+    }
+  }
+
+  @Override
+  public void rotate(float x, float y)
+  {
+    if (x == 0f && y == 0f)
+    {
+      return;
+    }
+
+    /*
+     * get the identity transformation...
+     */
+    RotatableMatrix rotmat = new RotatableMatrix();
+
+    /*
+     * rotate around the X axis for change in Y
+     * (mouse movement up/down); note we are equating a
+     * number of pixels with degrees of rotation here!
+     */
+    if (y != 0)
+    {
+      rotmat.rotate(y, Axis.X);
+    }
+
+    /*
+     * rotate around the Y axis for change in X
+     * (mouse movement left/right)
+     */
+    if (x != 0)
+    {
+      rotmat.rotate(x, Axis.Y);
+    }
+
+    /*
+     * apply the composite transformation to sequence points;
+     * update z min-max range (affects colour graduation), but not
+     * x or y min-max (as this would affect axis scaling)
+     */
+    float[] centre = getCentre();
+    float zMin = Float.MAX_VALUE;
+    float zMax = -Float.MAX_VALUE;
+
+    for (int i = 0; i < npoint; i++)
+    {
+      SequencePoint sp = sequencePoints.get(i);
+      sp.translate(-centre[0], -centre[1], -centre[2]);
+
+      // Now apply the rotation matrix
+      sp.coord = rotmat.vectorMultiply(sp.coord);
+
+      // Now translate back again
+      sp.translate(centre[0], centre[1], centre[2]);
+
+      zMin = Math.min(zMin, sp.coord.z);
+      zMax = Math.max(zMax, sp.coord.z);
+    }
+
+    seqMin[2] = zMin;
+    seqMax[2] = zMax;
+
+    /*
+     * rotate the x/y/z axis positions
+     */
+    for (int i = 0; i < DIMS; i++)
+    {
+      getAxisEndPoints()[i] = rotmat.vectorMultiply(getAxisEndPoints()[i]);
+    }
+  }
+
+  /**
+   * Answers the x/y/z coordinates that are midway between the maximum and
+   * minimum sequence point values
+   * 
+   * @return
+   */
+  private float[] getCentre()
+  {
+    float xCentre = (seqMin[0] + seqMax[0]) / 2f;
+    float yCentre = (seqMin[1] + seqMax[1]) / 2f;
+    float zCentre = (seqMin[2] + seqMax[2]) / 2f;
+
+    return new float[] { xCentre, yCentre, zCentre };
+  }
+
+  /**
+   * Adds any sequences whose displayed points are within the given rectangle to
+   * the viewport's current selection. Intended for key 's' after dragging to
+   * select a region of the PCA.
+   * 
+   * @param x1
+   * @param y1
+   * @param x2
+   * @param y2
+   */
+  protected void rectSelect(int x1, int y1, int x2, int y2)
+  {
+    float[] centre = getCentre();
+
+    for (int i = 0; i < npoint; i++)
+    {
+      SequencePoint sp = sequencePoints.get(i);
+      int tmp1 = (int) (((sp.coord.x - centre[0]) * getScaleFactor())
+              + (getWidth() / 2.0));
+      int tmp2 = (int) (((sp.coord.y - centre[1]) * getScaleFactor())
+              + (getHeight() / 2.0));
+
+      if ((tmp1 > x1) && (tmp1 < x2) && (tmp2 > y1) && (tmp2 < y2))
+      {
+        if (av != null)
+        {
+          SequenceI sequence = sp.getSequence();
+          if (!av.getSelectionGroup().getSequences(null).contains(sequence))
+          {
+            av.getSelectionGroup().addSequence(sequence, true);
+          }
+        }
+      }
+    }
+  }
+
+  /**
+   * Answers the first sequence found whose point on the display is within 2
+   * pixels of the given coordinates, or null if none is found
+   * 
+   * @param x
+   * @param y
+   * 
+   * @return
+   */
+  protected SequenceI findSequenceAtPoint(int x, int y)
+  {
+    int halfwidth = getWidth() / 2;
+    int halfheight = getHeight() / 2;
+
+    int found = -1;
+    int pix = Math.min(getWidth(), getHeight());
+    float xWidth = Math.abs(seqMax[0] - seqMin[0]);
+    float yWidth = Math.abs(seqMax[1] - seqMin[1]);
+    float maxWidth = Math.max(xWidth, yWidth);
+    float scaleBy = pix * getScaleFactor() / (2f * maxWidth);
+
+    float[] centre = getCentre();
+
+    for (int i = 0; i < npoint; i++)
+    {
+      SequencePoint sp = sequencePoints.get(i);
+      int px = (int) ((sp.coord.x - centre[0]) * scaleBy) + halfwidth;
+      int py = (int) ((sp.coord.y - centre[1]) * scaleBy) + halfheight;
+
+      if ((Math.abs(px - x) < NEARBY) && (Math.abs(py - y) < NEARBY))
+      {
+        found = i;
+        break;
+      }
+    }
+
+    if (found != -1)
+    {
+      return sequencePoints.get(found).getSequence();
+    }
+    else
+    {
+      return null;
+    }
+  }
+
+  /**
+   * Answers the panel the PCA is associated with (all panels for this alignment
+   * if 'associate with all panels' is selected).
+   * 
+   * @return
+   */
+  AlignmentPanel[] getAssociatedPanels()
+  {
+    if (isApplyToAllViews())
+    {
+      return PaintRefresher.getAssociatedPanels(av.getSequenceSetId());
+    }
+    else
+    {
+      return new AlignmentPanel[] { ap };
+    }
+  }
+
+  public Color getBackgroundColour()
+  {
+    return getBgColour();
+  }
+
+  /**
+   * Zooms in or out in response to mouse wheel movement
+   */
+  @Override
+  public void mouseWheelMoved(MouseWheelEvent e)
+  {
+    double wheelRotation = e.getPreciseWheelRotation();
+    if (wheelRotation > 0)
+    {
+      zoom(ZOOM_IN);
+      repaint();
+    }
+    else if (wheelRotation < 0)
+    {
+      zoom(ZOOM_OUT);
+      repaint();
+    }
+  }
+
+  /**
+   * Answers the sequence point minimum [x, y, z] values. Note these are derived
+   * when sequence points are set, but x and y values are not updated on
+   * rotation (because this would result in changes to scaling).
+   * 
+   * @return
+   */
+  public float[] getSeqMin()
+  {
+    return seqMin;
+  }
+
+  /**
+   * Answers the sequence point maximum [x, y, z] values. Note these are derived
+   * when sequence points are set, but x and y values are not updated on
+   * rotation (because this would result in changes to scaling).
+   * 
+   * @return
+   */
+  public float[] getSeqMax()
+  {
+    return seqMax;
+  }
+
+  /**
+   * Sets the minimum and maximum [x, y, z] positions for sequence points. For
+   * use when restoring a saved PCA from state data.
+   * 
+   * @param min
+   * @param max
+   */
+  public void setSeqMinMax(float[] min, float[] max)
+  {
+    seqMin = min;
+    seqMax = max;
+  }
+
+  public float getScaleFactor()
+  {
+    return scaleFactor;
+  }
+
+  public void setScaleFactor(float scaleFactor)
+  {
+    this.scaleFactor = scaleFactor;
+  }
+
+  public boolean isShowLabels()
+  {
+    return showLabels;
+  }
+
+  public void setShowLabels(boolean showLabels)
+  {
+    this.showLabels = showLabels;
+  }
+
+  public boolean isApplyToAllViews()
+  {
+    return applyToAllViews;
+  }
+
+  public void setApplyToAllViews(boolean applyToAllViews)
+  {
+    this.applyToAllViews = applyToAllViews;
+  }
+
+  public Point[] getAxisEndPoints()
+  {
+    return axisEndPoints;
+  }
+
+  public void setAxisEndPoints(Point[] axisEndPoints)
+  {
+    this.axisEndPoints = axisEndPoints;
+  }
+
+  public Color getBgColour()
+  {
+    return bgColour;
+  }
+
+  public void setBgColour(Color bgColour)
+  {
+    this.bgColour = bgColour;
+  }
+}