Swing/AutoScroll のバックアップ(No.3)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Swing/AutoScroll へ行く。
- 1 (2004-11-22 (月) 01:00:20)
- 2 (2005-02-03 (木) 02:03:49)
- 3 (2005-02-04 (金) 09:39:40)
- 4 (2005-04-28 (木) 04:33:03)
- 5 (2005-05-31 (火) 07:39:18)
- 6 (2005-09-22 (木) 21:57:05)
- 7 (2005-10-06 (木) 10:43:59)
- 8 (2006-02-05 (日) 04:36:32)
- 9 (2006-02-27 (月) 15:26:18)
- 10 (2006-04-12 (水) 19:33:18)
- 11 (2007-05-24 (木) 19:15:50)
- 12 (2008-01-25 (金) 16:19:46)
- 13 (2010-12-12 (日) 23:21:50)
- 14 (2011-03-20 (日) 16:59:32)
- 15 (2011-12-22 (木) 18:36:14)
- 16 (2011-12-31 (土) 02:11:57)
- 17 (2013-04-14 (日) 00:29:20)
- 18 (2014-02-17 (月) 18:33:03)
- 19 (2014-04-08 (火) 19:17:40)
- 20 (2014-06-27 (金) 15:49:06)
- 21 (2014-10-31 (金) 01:48:55)
- 22 (2014-11-28 (金) 16:07:30)
- 23 (2015-02-17 (火) 22:26:26)
- 24 (2016-09-02 (金) 12:32:40)
- 25 (2017-10-12 (木) 13:36:31)
- 26 (2018-02-24 (土) 19:51:30)
- 27 (2019-04-04 (木) 14:28:34)
- 28 (2021-01-13 (水) 17:59:02)
- 29 (2023-07-15 (土) 22:14:03)
Terai Atsuhiro 2023-07-15 (土) 22:14:03
private void autoScroll(Point ptLabel) { Point ptScroll = SwingUtilities.convertPoint(label, ptLabel, scroll); int iv = (int) scroll.getPreferredSize().getHeight(); if(ptScroll.y < iv/2) { rect.setRect(0, ptLabel.y-ptScroll.y-SCROLL, 0, SCROLL); flg = true; }else{ rect.setRect(0, ptLabel.y-ptScroll.y+iv+SCROLL, 0, SCROLL); flg = false; } scroller.start(); }