Searched defs:isAdjusting (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/event/
H A DListSelectionEvent.java57 private boolean isAdjusting; field in class:ListSelectionEvent
67 * @param isAdjusting whether or not this is one in a series of
71 boolean isAdjusting)
76 this.isAdjusting = isAdjusting;
106 public boolean getValueIsAdjusting() { return isAdjusting; }
119 " isAdjusting= " + isAdjusting +
70 ListSelectionEvent(Object source, int firstIndex, int lastIndex, boolean isAdjusting) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXScrollbarClient.java35 public void notifyValue(XScrollbar obj, int type, int value, boolean isAdjusting); argument
H A DXScrollbarPeer.java117 public void notifyValue(XScrollbar obj, int type, int value, boolean isAdjusting) { argument
120 postEvent( new AdjustmentEvent(sb, AdjustmentEvent.ADJUSTMENT_VALUE_CHANGED, type, value, isAdjusting));
H A DXScrollPanePeer.java526 public void notifyValue(XScrollbar obj, int type, int v, boolean isAdjusting) { argument
H A DListHelper.java441 public void notifyValue(XScrollbar obj, int type, int v, boolean isAdjusting) { argument
H A DXScrollbar.java101 void notifyValue(int v, final boolean isAdjusting) { argument
112 sb.notifyValue(XScrollbar.this, mode, value, isAdjusting);
522 private void handleTrackEvent(int x, int y, boolean isAdjusting){ argument
524 notifyValue(calculateCursorOffset(x, y), isAdjusting);
H A DXListPeer.java994 public void notifyValue(XScrollbar obj, int type, int v, boolean isAdjusting) { argument
/openjdk7/jdk/src/share/classes/java/awt/event/
H A DAdjustmentEvent.java131 * The <code>isAdjusting</code> is true if the event is one
138 boolean isAdjusting; field in class:AdjustmentEvent
190 * @param isAdjusting A boolean that equals <code>true</code> if the event is one
201 public AdjustmentEvent(Adjustable source, int id, int type, int value, boolean isAdjusting) { argument
206 this.isAdjusting = isAdjusting;
252 return isAdjusting;
287 + ",isAdjusting="+isAdjusting;
/openjdk7/jdk/src/share/classes/javax/swing/
H A DDefaultBoundedRangeModel.java64 private boolean isAdjusting = false; field in class:DefaultBoundedRangeModel
168 setRangeProperties(newValue, extent, min, max, isAdjusting);
186 setRangeProperties(value, newExtent, min, max, isAdjusting);
203 setRangeProperties(newValue, newExtent, n, newMax, isAdjusting);
219 setRangeProperties(newValue, newExtent, newMin, n, isAdjusting);
244 return isAdjusting;
293 (adjusting != isAdjusting);
300 isAdjusting = adjusting;
H A DDefaultListSelectionModel.java64 private boolean isAdjusting = false; field in class:DefaultListSelectionModel
81 public boolean getValueIsAdjusting() { return isAdjusting; }
142 protected void fireValueChanged(boolean isAdjusting) { argument
154 fireValueChanged(oldFirstChangedIndex, oldLastChangedIndex, isAdjusting);
170 * @param isAdjusting true if this is the final change in a series of
174 protected void fireValueChanged(int firstIndex, int lastIndex, boolean isAdjusting) argument
182 e = new ListSelectionEvent(this, firstIndex, lastIndex, isAdjusting);
682 public void setValueIsAdjusting(boolean isAdjusting) { argument
683 if (isAdjusting != this.isAdjusting) {
[all...]
H A DJScrollBar.java683 boolean isAdjusting) {
689 e = new AdjustmentEvent(this, id, type, value, isAdjusting);
712 boolean isAdjusting = model.getValueIsAdjusting();
713 fireAdjustmentValueChanged(id, type, value, isAdjusting);
682 fireAdjustmentValueChanged(int id, int type, int value, boolean isAdjusting) argument
H A DJList.java1778 * @param isAdjusting whether or not this is one in a series of
1787 boolean isAdjusting)
1796 isAdjusting);
2147 * Returns the value of the selection model's {@code isAdjusting} property.
2152 * @return the value of the selection model's {@code isAdjusting} property.
1786 fireSelectionValueChanged(int firstIndex, int lastIndex, boolean isAdjusting) argument
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWScrollbarPeer.java76 final boolean isAdjusting)
81 sb.setValueIsAdjusting(isAdjusting);
85 type, value, isAdjusting));
75 postAdjustmentEvent(final int type, final int value, final boolean isAdjusting) argument
H A DWScrollPanePeer.java145 int pos, boolean isAdjusting)
147 Runnable adjustor = new Adjustor(orient, type, pos, isAdjusting);
181 boolean isAdjusting; // isAdjusting status field in class:WScrollPanePeer.Adjustor
183 Adjustor(int orient, int type, int pos, boolean isAdjusting) { argument
187 this.isAdjusting = isAdjusting;
245 adj.setValueIsAdjusting(isAdjusting);
144 postScrollEvent(int orient, int type, int pos, boolean isAdjusting) argument
/openjdk7/jdk/src/share/classes/java/awt/
H A DScrollPaneAdjustable.java117 private transient boolean isAdjusting; field in class:ScrollPaneAdjustable
297 if (isAdjusting != b) {
298 isAdjusting = b;
315 return isAdjusting;
354 type, value, isAdjusting);
452 + ",isAdjusting=" + isAdjusting);
H A DScrollbar.java269 transient boolean isAdjusting; field in class:Scrollbar
928 return isAdjusting;
942 oldValue = isAdjusting;
943 isAdjusting = b;
1140 ",isAdjusting=" + isAdjusting;
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DOptionListModel.java59 private boolean isAdjusting = false; field in class:OptionListModel
70 public boolean getValueIsAdjusting() { return isAdjusting; }
118 protected void fireValueChanged(boolean isAdjusting) { argument
119 fireValueChanged(getMinSelectionIndex(), getMaxSelectionIndex(), isAdjusting);
134 * @param isAdjusting True if this is the final change in a series of them.
137 protected void fireValueChanged(int firstIndex, int lastIndex, boolean isAdjusting) argument
145 e = new ListSelectionEvent(this, firstIndex, lastIndex, isAdjusting);
450 public void setValueIsAdjusting(boolean isAdjusting) { argument
451 if (isAdjusting != this.isAdjusting) {
[all...]

Completed in 1069 milliseconds