1 21 22 package org.armedbear.j; 23 24 import javax.swing.JScrollBar ; 25 26 public final class HorizontalScrollBar extends JScrollBar  27 { 28 private Editor editor; 29 30 public HorizontalScrollBar(Editor editor) 31 { 32 super(HORIZONTAL); 33 this.editor = editor; 34 } 35 36 public int getUnitIncrement(int direction) 37 { 38 return editor.getDisplay().getCharWidth(); 39 } 40 41 public int getBlockIncrement(int direction) 42 { 43 return editor.getDisplay().getWidth(); 44 } 45 } 46 | Popular Tags |