ScrollCanvas.java
     1: //========================================================================================
     2: //  ScrollCanvas.java
     3: //    en:Scroll canvas
     4: //    ja:スクロールキャンバス
     5: //  Copyright (C) 2003-2023 Makoto Kamada
     6: //
     7: //  This file is part of the XEiJ (X68000 Emulator in Java).
     8: //  You can use, modify and redistribute the XEiJ if the conditions are met.
     9: //  Read the XEiJ License for more details.
    10: //  https://stdkmd.net/xeij/
    11: //========================================================================================
    12: 
    13: //----------------------------------------------------------------------------------------
    14: //  BufferedImageで与えられた画像をスケーリングしてスクロールバーを付けて表示する
    15: //  スケーリングされたキャンバスとマージンを合わせたサイズがビューポートよりも小さいとき
    16: //    ビューポートのサイズがビューと一致する
    17: //    スケーリングされたキャンバスの全体がビューポートの中央に表示される
    18: //                   origin(>margin)
    19: //                    ┌──┴──┐view(=viewport)
    20: //                  ┌┌─────────┴─────────┐
    21: //                  ││                                      │
    22: //  origin(>margin) ┤│                                      │
    23: //                  ││                scaled                │
    24: //                  └│          ┏━━━┷━━━┓          │
    25: //                    │          ┃              ┃          │
    26: //                    │          ┃              ┃          │
    27: //                    │          ┃              ┃          │
    28: //                    │          ┃              ┃          │
    29: //                    │          ┗━━━━━━━┛          │
    30: //                    │                                      │
    31: //                    │                                      │
    32: //                    │                                      │
    33: //                    └───────────────────┘
    34: //  スケーリングされたキャンバスとマージンを合わせたサイズがビューポートよりも大きいとき
    35: //    スケーリングされたキャンバスとマージンを合わせたサイズがビューと一致する
    36: //    スケーリングされたキャンバスの一部分がビューポートの全体に表示される
    37: //               origin(=margin)
    38: //                    ┌┴┐     view(=margin*2+scaled)
    39: //                  ┌┌─────────┴─────────┐
    40: //  origin(=margin) ┤│                scaled                │
    41: //                  └│  ┏━━━━━━━┷━━━━━━━┓  │
    42: //                    │  ┃                              ┃  │
    43: //                    │  ┃                              ┃  │
    44: //                    │  ┃   viewport                   ┃  │
    45: //                    │┌╂───┴────┐            ┃  │
    46: //                    ││┃                │            ┃  │
    47: //                    ││┃                │            ┃  │
    48: //                    ││┃                │            ┃  │
    49: //                    ││┗━━━━━━━━┿━━━━━━┛  │
    50: //                    │└─────────┘                │
    51: //                    └───────────────────┘
    52: //  縦と横の条件が独立していることに注意
    53: //----------------------------------------------------------------------------------------
    54: 
    55: package xeij;
    56: 
    57: import java.awt.*;  //BasicStroke,BorderLayout,BoxLayout,Color,Component,Container,Cursor,Desktop,Dimension,Font,Frame,Graphics,Graphics2D,GraphicsDevice,GraphicsEnvironment,GridLayout,Image,Insets,Paint,Point,Rectangle,RenderingHints,Robot,Shape,Stroke,TexturePaint,Toolkit
    58: import java.awt.event.*;  //ActionEvent,ActionListener,ComponentAdapter,ComponentEvent,ComponentListener,FocusAdapter,FocusEvent,FocusListener,InputEvent,KeyAdapter,KeyEvent,KeyListener,MouseAdapter,MouseEvent,MouseListener,MouseMotionAdapter,MouseWheelEvent,WindowAdapter,WindowEvent,WindowListener,WindowStateListener
    59: import java.awt.geom.*;  //AffineTransform,GeneralPath,Point2D,Rectangle2D
    60: import java.awt.image.*;  //BufferedImage,DataBuffer,DataBufferByte,DataBufferInt,IndexColorModel
    61: import java.util.*;  //ArrayList,Arrays,Calendar,GregorianCalendar,HashMap,Map,Map.Entry,Timer,TimerTask,TreeMap
    62: import javax.swing.*;  //AbstractSpinnerModel,Box,ButtonGroup,DefaultListModel,ImageIcon,JApplet,JButton,JCheckBox,JCheckBoxMenuItem,JDialog,JFileChooser,JFrame,JLabel,JList,JMenu,JMenuBar,JMenuItem,JPanel,JRadioButton,JScrollPane,JSpinner,JTextArea,JTextField,JTextPane,JViewport,ScrollPaneConstants,SpinnerListModel,SpinnerNumberModel,SwingConstants,SwingUtilities,UIManager,UIDefaults,UnsupportedLookAndFeelException
    63: import javax.swing.event.*;  //CaretListener,ChangeEvent,ChangeListener,DocumentEvent,DocumentListener,ListSelectionListener
    64: 
    65: public class ScrollCanvas extends JScrollPane implements MouseListener, MouseMotionListener, MouseWheelListener {
    66: 
    67:   public static final int MIN_SCALE_SHIFT = -4;
    68:   public static final int MAX_SCALE_SHIFT = 4;
    69: 
    70:   //キャンバス
    71:   protected BufferedImage canvasImage;  //キャンバスのイメージ
    72:   protected int canvasWidth;  //キャンバスのサイズ
    73:   protected int canvasHeight;
    74: 
    75:   //ビューポート
    76:   protected int viewportWidth;  //ビューポートのサイズ
    77:   protected int viewportHeight;
    78:   protected int marginX;  //マージン
    79:   protected int marginY;
    80:   protected int scaleShift;  //スケーリングのシフトカウント(0=等倍,正=拡大,負=縮小)
    81:   protected float scaleFactor;  //スケーリングの係数(pow(2,scaleShift);1=等倍,1より大きい=拡大,1より小さい=縮小)
    82:   protected int direction;  //方向。0=0deg,1=90deg,2=180deg,3=270deg
    83:   protected int scaledWidth;  //スケーリングされたキャンバスのサイズ
    84:   protected int scaledHeight;
    85:   protected int rotatedScaledWidth;  //スケーリングおよび回転させたキャンバスのサイズ
    86:   protected int rotatedScaledHeight;
    87:   protected int viewWidth;  //ビューのサイズ
    88:   protected int viewHeight;
    89:   protected int originX;  //スケーリングされたキャンバスのビュー座標
    90:   protected int originY;
    91: 
    92:   //マウス
    93:   protected ArrayList<MouseListener> mouseListeners;  //マウスリスナー
    94:   protected ArrayList<MouseMotionListener> mouseMotionListeners;  //マウスモーションリスナー
    95:   protected ArrayList<MouseWheelListener> mouseWheelListeners;  //マウスホイールリスナー
    96:   protected boolean dragStarted;  //ドラッグ中か
    97:   protected int pressedX;  //ドラッグ開始時のマウスのビュー座標
    98:   protected int pressedY;
    99: 
   100:   //スケールシフトリスナー
   101:   protected ArrayList<ScaleShiftListener> scaleShiftListeners;  //スケールシフトリスナー
   102: 
   103:   //ビュー
   104:   protected JPanel view;  //ビュー
   105: 
   106:   //new ScrollCanvas ()
   107:   //new ScrollCanvas (image)
   108:   //new ScrollCanvas (width, height)
   109:   //  コンストラクタ
   110:   public ScrollCanvas () {
   111:     this (480, 360);
   112:   }
   113:   public ScrollCanvas (int width, int height) {
   114:     this (new BufferedImage (width, height, BufferedImage.TYPE_INT_ARGB));
   115:   }
   116:   @SuppressWarnings ("this-escape") public ScrollCanvas (BufferedImage image) {
   117:     //マウス
   118:     mouseListeners = new ArrayList<MouseListener> ();  //マウスリスナー
   119:     mouseMotionListeners = new ArrayList<MouseMotionListener> ();  //マウスモーションリスナー
   120:     mouseWheelListeners = new ArrayList<MouseWheelListener> ();  //マウスホイールリスナー
   121:     dragStarted = false;  //ドラッグ中か
   122:     pressedX = 0;  //ドラッグ開始時のマウスのビュー座標
   123:     pressedY = 0;
   124:     //スケールシフトリスナー
   125:     scaleShiftListeners = new ArrayList<ScaleShiftListener> ();  //スケールシフトリスナー
   126:     //キャンバス
   127:     canvasImage = image;
   128:     canvasWidth = image == null ? 1 : image.getWidth ();
   129:     canvasHeight = image == null ? 1 : image.getHeight ();
   130:     //ビューポート
   131:     viewportWidth = canvasWidth;  //ビューポートのサイズ
   132:     viewportHeight = canvasHeight;
   133:     marginX = 0;  //マージン
   134:     marginY = 0;
   135:     scaleShift = 0;  //スケーリングのシフトカウント(0=等倍,正=拡大,負=縮小)
   136:     scaleFactor = 1.0F;  //スケーリングの係数(pow(2,scaleShift);1=等倍,1より大きい=拡大,1より小さい=縮小)
   137:     direction = 0; //方向。0=0deg,1=90deg,2=180deg,3=270deg
   138:     calcScaledSize ();  //スケーリングされたキャンバスのサイズを計算する
   139:     calcViewSize ();  //ビューのサイズを計算する
   140:     //ビュー
   141:     view = new JPanel () {
   142:       public void paintComponent (Graphics g) {
   143:         super.paintComponent (g);
   144:         paintView (g);
   145:       }
   146:     };
   147:     view.setOpaque (true);  //不透明
   148:     view.setBackground (Color.lightGray);  //背景色(明るいグレー)
   149:     view.setPreferredSize (new Dimension (viewWidth, viewHeight));  //サイズ
   150:     view.addMouseListener (this);  //[this-escape]マウスイベント
   151:     view.addMouseMotionListener (this);  //マウスモーションイベント
   152:     view.addMouseWheelListener (this);  //マウスホイールイベント
   153:     //ビューポート
   154:     viewport.setScrollMode (JViewport.BLIT_SCROLL_MODE);
   155:     viewport.setPreferredSize (new Dimension (viewportWidth, viewportHeight));
   156:     viewport.setMinimumSize (new Dimension (64, 64));
   157:     viewport.setView (view);
   158:     viewport.addChangeListener (new ChangeListener () {
   159:       public void stateChanged (ChangeEvent e) {
   160:         int width = viewport.getWidth ();  //新しいビューポートのサイズ
   161:         int height = viewport.getHeight ();
   162:         if (viewportWidth != width || viewportHeight != height) {  //ビューポートのサイズが変化した
   163:           Point2D p = getCenterPoint ();
   164:           viewportWidth = width;
   165:           viewportHeight = height;
   166:           calcViewSize ();  //ビューのサイズを計算する
   167:           calcAdditionalSize ();  //追加のサイズ計算
   168:           view.setPreferredSize (new Dimension (viewWidth, viewHeight));  //ビューのサイズを更新する
   169:           setCenterPoint (p);
   170:         }
   171:       }
   172:     });
   173:     setWheelScrollingEnabled (false);  //デフォルトのホイールスクロールを禁止する
   174:     setHorizontalScrollBarPolicy (ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS);  //スクロールバーを常に表示する。イメージがスクロールバーのサイズよりも小さいときスクロールバーが点滅してしまわないようにする
   175:     setVerticalScrollBarPolicy (ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
   176:   }
   177: 
   178:   //scrollCanvas.paintView (g)
   179:   //  ビューを描画する
   180:   //  スケーリングしたキャンバスは巨大化することがあるので保持しない
   181:   protected void paintView (Graphics g) {
   182:     if (canvasImage != null) {
   183:       Graphics2D g2 = (Graphics2D) g;
   184:       AffineTransform saveAT = g2.getTransform ();
   185:       g2.translate ((double) originX, (double) originY);
   186:       if (direction == 0) {  //0deg
   187:       } else if (direction == 1) {  //90deg
   188:         g2.translate ((double) rotatedScaledWidth, 0.0);
   189:         g2.rotate (Math.PI / 2.0);
   190:       } else if (direction == 2) {  //180deg
   191:         g2.translate ((double) rotatedScaledWidth, (double) rotatedScaledHeight);
   192:         g2.rotate (Math.PI);
   193:       } else {  //270deg
   194:         g2.translate (0.0, (double) rotatedScaledHeight);
   195:         g2.rotate (Math.PI * 3.0 / 2.0);
   196:       }
   197:       g2.translate ((double) (-originX), (double) (-originY));
   198:       //
   199:       if (scaleShift == 0) {  //スケーリングなし
   200:         g2.drawImage (canvasImage, originX, originY, null);
   201:       } else {  //スケーリングあり
   202:         g2.setRenderingHint (RenderingHints.KEY_INTERPOLATION, RenderingHints.VALUE_INTERPOLATION_BILINEAR);  //BICUBICにしても大差ない
   203:         g2.drawImage (canvasImage, originX, originY, scaledWidth, scaledHeight, null);
   204:       }
   205:       //
   206:       g2.setTransform (saveAT);
   207:     }
   208:   }
   209: 
   210:   //マウスリスナーの操作
   211:   @Override public void addMouseListener (MouseListener ml) {
   212:     if (ml != null && !mouseListeners.contains (ml)) {
   213:       mouseListeners.add (ml);
   214:     }
   215:   }
   216:   @Override public void removeMouseListener (MouseListener ml) {
   217:     mouseListeners.remove (ml);
   218:   }
   219:   @Override public MouseListener[] getMouseListeners () {
   220:     return mouseListeners.toArray (new MouseListener[mouseListeners.size ()]);
   221:   }
   222:   //マウスモーションリスナーの操作
   223:   @Override public void addMouseMotionListener (MouseMotionListener mml) {
   224:     if (mml != null && !mouseMotionListeners.contains (mml)) {
   225:       mouseMotionListeners.add (mml);
   226:     }
   227:   }
   228:   @Override public void removeMouseMotionListener (MouseMotionListener mml) {
   229:     mouseMotionListeners.remove (mml);
   230:   }
   231:   @Override public MouseMotionListener[] getMouseMotionListeners () {
   232:     return mouseMotionListeners.toArray (new MouseMotionListener[mouseMotionListeners.size ()]);
   233:   }
   234:   //マウスホイールリスナーの操作
   235:   @Override public void addMouseWheelListener (MouseWheelListener mml) {
   236:     if (mouseWheelListeners != null) {  //スーパークラスのコンストラクタから呼ばれたとき初期化されていない
   237:       if (mml != null && !mouseWheelListeners.contains (mml)) {
   238:         mouseWheelListeners.add (mml);
   239:       }
   240:     }
   241:   }
   242:   @Override public void removeMouseWheelListener (MouseWheelListener mml) {
   243:     mouseWheelListeners.remove (mml);
   244:   }
   245:   @Override public MouseWheelListener[] getMouseWheelListeners () {
   246:     return mouseWheelListeners.toArray (new MouseWheelListener[mouseWheelListeners.size ()]);
   247:   }
   248: 
   249:   //マウスイベントの処理
   250:   //  マウスイベントの座標をビュー座標からキャンバス座標に変換してからリスナーに配布する
   251:   //  Javaのイベントモデルのルールにより、複数のリスナーが登録されているとき、
   252:   //  どのリスナーがイベントを消費してもすべてのリスナーにイベントが配布されなければならない
   253:   //  どのリスナーもイベントを消費しなかったときだけスクロールキャンバスはドラッグを処理する
   254:   @Override public void mouseClicked (MouseEvent me) {
   255:     MouseEvent2D me2D = adjustMouseEvent (me);
   256:     for (MouseListener ml : mouseListeners) {
   257:       ml.mouseClicked (me2D);
   258:     }
   259:     if (!me2D.isConsumed ()) {
   260:       if (isFocusable () && !isFocusOwner ()) {
   261:         requestFocus ();
   262:       }
   263:     }
   264:   }
   265:   @Override public void mouseEntered (MouseEvent me) {
   266:     MouseEvent2D me2D = adjustMouseEvent (me);
   267:     for (MouseListener ml : mouseListeners) {
   268:       ml.mouseEntered (me2D);
   269:     }
   270:   }
   271:   @Override public void mouseExited (MouseEvent me) {
   272:     MouseEvent2D me2D = adjustMouseEvent (me);
   273:     for (MouseListener ml : mouseListeners) {
   274:       ml.mouseExited (me2D);
   275:     }
   276:   }
   277:   @Override public void mousePressed (MouseEvent me) {
   278:     int x = me.getX ();
   279:     int y = me.getY ();
   280:     MouseEvent2D me2D = adjustMouseEvent (me);
   281:     for (MouseListener ml : mouseListeners) {
   282:       ml.mousePressed (me2D);
   283:     }
   284:     if (!me2D.isConsumed ()) {
   285:       dragStarted = true;
   286:       pressedX = x;
   287:       pressedY = y;
   288:     }
   289:   }
   290:   @Override public void mouseReleased (MouseEvent me) {
   291:     MouseEvent2D me2D = adjustMouseEvent (me);
   292:     for (MouseListener ml : mouseListeners) {
   293:       ml.mouseReleased (me2D);
   294:     }
   295:     if (!me2D.isConsumed ()) {
   296:       dragStarted = false;
   297:     }
   298:   }
   299:   //マウスモーションイベントの処理
   300:   //  マウスモーションイベントの座標をビュー座標からキャンバス座標に変換してからリスナーに配布する
   301:   //  Javaのイベントモデルのルールにより、複数のリスナーが登録されているとき、
   302:   //  どのリスナーがイベントを消費してもすべてのリスナーにイベントが配布されなければならない
   303:   //  どのリスナーもイベントを消費しなかったときだけスクロールキャンバスはドラッグを処理する
   304:   @Override public void mouseDragged (MouseEvent me) {
   305:     int x = me.getX ();
   306:     int y = me.getY ();
   307:     MouseEvent2D me2D = adjustMouseEvent (me);
   308:     for (MouseMotionListener ml : mouseMotionListeners) {
   309:       ml.mouseDragged (me2D);
   310:     }
   311:     if (!me2D.isConsumed ()) {
   312:       if (dragStarted) {
   313:         Point p = viewport.getViewPosition ();
   314:         updateViewPosition (p.x - (x - pressedX), p.y - (y - pressedY));
   315:       }
   316:     }
   317:   }
   318:   @Override public void mouseMoved (MouseEvent me) {
   319:     MouseEvent2D me2D = adjustMouseEvent (me);
   320:     for (MouseMotionListener ml : mouseMotionListeners) {
   321:       ml.mouseMoved (me2D);
   322:     }
   323:   }
   324:   //マウスホイールイベントの処理
   325:   //  マウスホイールイベントの座標をビュー座標からキャンバス座標に変換してからリスナーに配布する
   326:   //  Javaのイベントモデルのルールにより、複数のリスナーが登録されているとき、
   327:   //  どのリスナーがイベントを消費してもすべてのリスナーにイベントが配布されなければならない
   328:   @Override public void mouseWheelMoved (MouseWheelEvent mwe) {
   329:     MouseWheelEvent2D mwe2D = adjustMouseWheelEvent (mwe);
   330:     for (MouseWheelListener mwl : mouseWheelListeners) {
   331:       mwl.mouseWheelMoved (mwe2D);
   332:     }
   333:     if (!mwe2D.isConsumed ()) {
   334:       int n = mwe2D.getWheelRotation ();
   335:       if (n < 0) {
   336:         setScaleShift (scaleShift + 1, mwe2D.getPoint2D ());
   337:       } else if (n > 0) {
   338:         setScaleShift (scaleShift - 1, mwe2D.getPoint2D ());
   339:       }
   340:     }
   341:   }
   342: 
   343:   //width = scrollCanvas.getCanvasWidth ()
   344:   //  キャンバスの幅を取得する
   345:   public int getCanvasWidth () {
   346:     return canvasWidth;
   347:   }
   348: 
   349:   //height = scrollCanvas.getCanvasHeight ()
   350:   //  キャンバスの高さを取得する
   351:   public int getCanvasHeight () {
   352:     return canvasHeight;
   353:   }
   354: 
   355:   //image = scrollCanvas.getImage (image)
   356:   //  キャンバスのイメージを取得する
   357:   public BufferedImage getImage () {
   358:     return canvasImage;
   359:   }
   360: 
   361:   //scrollCanvas.setImage (image)
   362:   //  キャンバスのイメージを設定する
   363:   public void setImage (BufferedImage image) {
   364:     canvasImage = image;  //新しいキャンバスのイメージ
   365:     int width = image == null ? 1 : image.getWidth ();  //新しいキャンバスのサイズ
   366:     int height = image == null ? 1 : image.getHeight ();
   367:     if (width != canvasWidth || height != canvasHeight) {  //キャンバスのサイズが変わった
   368:       canvasWidth = width;
   369:       canvasHeight = height;
   370:       updateView ();  //ビューを更新する
   371:     } else {
   372:       view.repaint ();
   373:     }
   374:   }
   375: 
   376:   //marginX = scrollCanvas.getMarginX ()
   377:   //  左右のマージンを取得する
   378:   public int getMarginX () {
   379:     return marginX;
   380:   }
   381: 
   382:   //marginY = scrollCanvas.getMarginY ()
   383:   //  上下のマージンを取得する
   384:   public int getMarginY () {
   385:     return marginY;
   386:   }
   387: 
   388:   //scrollCanvas.setMargin (x, y)
   389:   //  マージンを設定する
   390:   public void setMargin (int x, int y) {
   391:     if (marginX != x || marginY != y) {
   392:       marginX = x;
   393:       marginY = y;
   394:       updateView ();  //ビューを更新する
   395:     }
   396:   }
   397: 
   398:   //color = scrollCanvas.getMatColor ()
   399:   //  マットの色を取得する
   400:   public Color getMatColor () {
   401:     return view.getBackground ();
   402:   }
   403: 
   404:   //scrollCanvas.setMatColor (color)
   405:   //  マットの色を設定する
   406:   public void setMatColor (Color color) {
   407:     view.setBackground (color);
   408:     view.repaint ();
   409:   }
   410: 
   411:   //scaleShift = scrollCanvas.getScaleShift ()
   412:   //  スケーリングのシフトカウントを取得する
   413:   public int getScaleShift () {
   414:     return scaleShift;
   415:   }
   416: 
   417:   //scrollCanvas.setScaleShift (shift)
   418:   //  スケーリングのシフトカウントを設定する
   419:   public void setScaleShift (int shift) {
   420:     setScaleShift (shift, getCenterPoint ());
   421:   }
   422:   public void setScaleShift (int shift, Point2D p) {
   423:     shift = Math.max (MIN_SCALE_SHIFT, Math.min (MAX_SCALE_SHIFT, shift));
   424:     if (scaleShift != shift) {  //スケーリングのシフトカウントが変わった
   425:       Point2D c = getCenterPoint ();
   426:       double dx = (c.getX () - p.getX ()) * scaleFactor;  //pからcまでのピクセル数
   427:       double dy = (c.getY () - p.getY ()) * scaleFactor;
   428:       scaleShift = shift;
   429:       scaleFactor = shift >= 0 ? (float) (1 << shift) : 1.0F / (float) (1 << -shift);  //スケーリングの係数
   430:       updateView ();  //ビューを更新する
   431:       setCenterPoint (new Point2D.Double (p.getX () + dx / scaleFactor, p.getY () + dy / scaleFactor));
   432:       for (ScaleShiftListener listener : scaleShiftListeners) {
   433:         listener.scaleShiftChanged (scaleShift);
   434:       }
   435:     }
   436:   }
   437: 
   438:   //スケールシフトリスナー
   439:   public static class ScaleShiftListener {
   440:     public void scaleShiftChanged (int scaleShift) {
   441:     }
   442:   }
   443:   public void addScaleShiftListener (ScaleShiftListener listener) {
   444:     if (listener != null) {
   445:       scaleShiftListeners.add (listener);
   446:     }
   447:   }
   448:   public void removeScaleShiftListener (ScaleShiftListener listener) {
   449:     scaleShiftListeners.remove (listener);
   450:   }
   451:   public ScaleShiftListener[] getScaleShiftListeners () {
   452:     return scaleShiftListeners.toArray (new ScaleShiftListener[scaleShiftListeners.size ()]);
   453:   }
   454: 
   455:   //direction = scrollCanvas.getDirection ()
   456:   //  方向を取得する
   457:   public int getDirection () {
   458:     return direction;
   459:   }
   460: 
   461:   //scrollCanvas.setDirection (direction)
   462:   //  方向を設定する
   463:   public void setDirection (int direction) {
   464:     this.direction = direction;
   465:     updateView ();
   466:   }
   467: 
   468:   //p = scrollCanvas.getCenterPoint ()
   469:   //  ビューポートの中央のイメージ座標を取得する
   470:   public Point2D getCenterPoint () {
   471:     Point p = viewport.getViewPosition ();
   472:     return new Point2D.Float ((p.x + (viewportWidth >> 1) - originX) / scaleFactor,
   473:                               (p.y + (viewportHeight >> 1) - originY) / scaleFactor);
   474:   }
   475: 
   476:   //scrollCanvas.setCenterPoint (p)
   477:   //  ビューポートの中央のイメージ座標を設定する
   478:   public void setCenterPoint (Point2D p) {
   479:     updateViewPosition ((int) (p.getX () * scaleFactor) + originX - (viewportWidth >> 1),
   480:                         (int) (p.getY () * scaleFactor) + originY - (viewportHeight >> 1));
   481:   }
   482: 
   483:   //me = scrollCanvas.adjustMouseEvent (me)
   484:   //me = scrollCanvas.adjustMouseWheelEvent (me)
   485:   //  マウスイベントを調節する
   486:   //  ソースをビューではなくキャンバス自身にする
   487:   //  座標をビュー座標ではなくイメージの座標にする
   488:   //  スケーリングされたキャンバスがビューポートよりも小さいときキャンバスの範囲外の座標が設定されることがある
   489:   protected MouseEvent2D adjustMouseEvent (MouseEvent me) {
   490:     return new MouseEvent2D (this, me.getID (), me.getWhen (), me.getModifiersEx (),
   491:                              (float) (me.getX () - originX) / scaleFactor,
   492:                              (float) (me.getY () - originY) / scaleFactor,
   493:                              me.getClickCount (), me.isPopupTrigger (),
   494:                              me.getButton ());
   495:   }
   496:   protected MouseWheelEvent2D adjustMouseWheelEvent (MouseWheelEvent mwe) {
   497:     return new MouseWheelEvent2D (this, mwe.getID (), mwe.getWhen (), mwe.getModifiersEx (),
   498:                                   (float) (mwe.getX () - originX) / scaleFactor,
   499:                                   (float) (mwe.getY () - originY) / scaleFactor,
   500:                                   mwe.getClickCount (), mwe.isPopupTrigger (),
   501:                                   mwe.getScrollType (), mwe.getScrollAmount (), mwe.getWheelRotation ());
   502:   }
   503: 
   504:   //scrollCanvas.updateView ()
   505:   //  ビューを更新する
   506:   protected void updateView () {
   507:     calcScaledSize ();  //スケーリングされたキャンバスのサイズを計算する
   508:     calcViewSize ();  //ビューのサイズを計算する
   509:     calcAdditionalSize ();  //追加のサイズ計算
   510:     Dimension d = new Dimension (viewWidth, viewHeight);
   511:     view.setPreferredSize (d);  //ビューのサイズを更新する
   512:     //view.revalidate()ではなくviewport.setViewSize()を使わないと
   513:     //viewport.setViewPosition()がy方向のスクロール位置の更新に失敗する
   514:     viewport.setViewSize (d);
   515:     view.repaint ();  //ビューがビューポートに収まっている状態からさらに小さくなるとき必要
   516:   }
   517: 
   518:   //scrollCanvas.calcScaledSize ()
   519:   //  スケーリングされたキャンバスのサイズを計算する
   520:   protected final void calcScaledSize () {
   521:     if (scaleShift >= 0) {
   522:       scaledWidth = canvasWidth << scaleShift;
   523:       scaledHeight = canvasHeight << scaleShift;
   524:     } else {
   525:       scaledWidth = canvasWidth >> -scaleShift;
   526:       scaledHeight = canvasHeight >> -scaleShift;
   527:       if (scaledWidth < 1) {
   528:         scaledWidth = 1;
   529:       }
   530:       if (scaledHeight < 1) {
   531:         scaledHeight = 1;
   532:       }
   533:     }
   534:     if ((direction & 1) == 0) {  //0deg,180deg
   535:       rotatedScaledWidth = scaledWidth;
   536:       rotatedScaledHeight = scaledHeight;
   537:     } else {  //90deg,270deg
   538:       rotatedScaledWidth = scaledHeight;
   539:       rotatedScaledHeight = scaledWidth;
   540:     }
   541:   }
   542: 
   543:   //scrollCanvas.calcViewSize ()
   544:   //  ビューのサイズを計算する
   545:   protected final void calcViewSize () {
   546:     if (viewportWidth < (marginX << 1) + rotatedScaledWidth) {
   547:       viewWidth = (marginX << 1) + rotatedScaledWidth;
   548:       originX = marginX;
   549:     } else {
   550:       viewWidth = viewportWidth;
   551:       originX = (viewportWidth - rotatedScaledWidth) >> 1;
   552:     }
   553:     if (viewportHeight < (marginY << 1) + rotatedScaledHeight) {
   554:       viewHeight = (marginY << 1) + rotatedScaledHeight;
   555:       originY = marginY;
   556:     } else {
   557:       viewHeight = viewportHeight;
   558:       originY = (viewportHeight - rotatedScaledHeight) >> 1;
   559:     }
   560:   }
   561: 
   562:   //scrollCanvas.calcAdditionalSize ()
   563:   //  追加のサイズ計算
   564:   protected void calcAdditionalSize () {
   565:   }
   566: 
   567:   //scrollCanvas.updateViewPosition (x, y)
   568:   //  ビューポートの位置を更新する
   569:   protected void updateViewPosition (int x, int y) {
   570:     if (originX > marginX || x < 0) {
   571:       x = 0;
   572:     } else if (x > (marginX << 1) + rotatedScaledWidth - viewportWidth) {
   573:       x = (marginX << 1) + rotatedScaledWidth - viewportWidth;
   574:     }
   575:     if (originY > marginY || y < 0) {
   576:       y = 0;
   577:     } else if (y > (marginY << 1) + rotatedScaledHeight - viewportHeight) {
   578:       y = (marginY << 1) + rotatedScaledHeight - viewportHeight;
   579:     }
   580:     viewport.setViewPosition (new Point (x, y));
   581:   }
   582: 
   583:   //scrollCanvas.repaint ()
   584:   //  キャンバスを再描画する
   585:   @Override public void repaint () {
   586:     super.repaint ();
   587:     if (view != null) {
   588:       view.repaint ();
   589:     }
   590:   }
   591: 
   592: }  //class ScrollCanvas
   593: 
   594: 
   595: