本文整理匯總了Java中java.awt.Adjustable.setValue方法的典型用法代碼示例。如果您正苦於以下問題:Java Adjustable.setValue方法的具體用法?Java Adjustable.setValue怎麽用?Java Adjustable.setValue使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類java.awt.Adjustable
的用法示例。
在下文中一共展示了Adjustable.setValue方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: mouseWheelMoved
import java.awt.Adjustable; //導入方法依賴的package包/類
/**
* Scrolls vertically or horizontally(if scrollable has only
* horizontal scrollbar) on mouse wheel move
*/
public void mouseWheelMoved(MouseWheelEvent e) {
int type = e.getScrollType();
int unitType = MouseWheelEvent.WHEEL_UNIT_SCROLL;
Adjustable adj = vAdj;
if (!isAdjNeeded(vAdj) && isAdjNeeded(hAdj)) {
// scroll horizontally if only horiz scrollbar
// is present
adj = hAdj;
}
int incrSize = (type == unitType ? adj.getUnitIncrement() : adj
.getBlockIncrement());
int scrollAmount = e.getUnitsToScroll() * incrSize;
adj.setValue(adj.getValue() + scrollAmount);
}
示例2: scrollAdjustable
import java.awt.Adjustable; //導入方法依賴的package包/類
public static void scrollAdjustable(Adjustable adj, int amount) {
if (log.isLoggable(PlatformLogger.Level.FINE)) {
if (adj == null) {
log.fine("Assertion (adj != null) failed");
}
if (amount == 0) {
log.fine("Assertion (amount != 0) failed");
}
}
int current = adj.getValue();
int upperLimit = adj.getMaximum() - adj.getVisibleAmount();
if (log.isLoggable(PlatformLogger.Level.FINER)) {
log.finer("doScrolling by " + amount);
}
if (amount > 0 && current < upperLimit) { // still some room to scroll
// down
if (current + amount < upperLimit) {
adj.setValue(current + amount);
return;
}
else {
adj.setValue(upperLimit);
return;
}
}
else if (amount < 0 && current > adj.getMinimum()) { // still some room
// to scroll up
if (current + amount > adj.getMinimum()) {
adj.setValue(current + amount);
return;
}
else {
adj.setValue(adj.getMinimum());
return;
}
}
}
示例3: adjustmentValueChanged
import java.awt.Adjustable; //導入方法依賴的package包/類
public void adjustmentValueChanged(AdjustmentEvent e) {
Adjustable bar = e.getAdjustable();
int currentMaximum = bar.getMaximum();
if (bar.getMaximum() == _lastMaximum) {
return; // nothing to do, the adjustable has not expanded
}
int bottom = bar.getValue() + bar.getVisibleAmount();
if (bottom + bar.getUnitIncrement() >= _lastMaximum) {
bar.setValue(bar.getMaximum()); // use the most recent maximum
}
_lastMaximum = currentMaximum;
}
示例4: scrollAdjustable
import java.awt.Adjustable; //導入方法依賴的package包/類
public static void scrollAdjustable(Adjustable adj, int amount) {
if (log.isLoggable(PlatformLogger.FINE)) {
if (adj == null) {
log.fine("Assertion (adj != null) failed");
}
if (amount == 0) {
log.fine("Assertion (amount != 0) failed");
}
}
int current = adj.getValue();
int upperLimit = adj.getMaximum() - adj.getVisibleAmount();
if (log.isLoggable(PlatformLogger.FINER)) {
log.finer("doScrolling by " + amount);
}
if (amount > 0 && current < upperLimit) { // still some room to scroll
// down
if (current + amount < upperLimit) {
adj.setValue(current + amount);
return;
}
else {
adj.setValue(upperLimit);
return;
}
}
else if (amount < 0 && current > adj.getMinimum()) { // still some room
// to scroll up
if (current + amount > adj.getMinimum()) {
adj.setValue(current + amount);
return;
}
else {
adj.setValue(adj.getMinimum());
return;
}
}
}
示例5: setAdjMinMaxValue
import java.awt.Adjustable; //導入方法依賴的package包/類
/**
* Scrolls to scrollbar maximum or minimum value
* @param max scroll to maximum if true, scroll to minimum
* otherwise
*/
void setAdjMinMaxValue(boolean max) {
Adjustable adj = state.getAdjustable();
int newVal = max ? adj.getMaximum() : adj.getMinimum();
int oldVal = adj.getValue();
adj.setValue(newVal);
if (oldVal != newVal) {
type = AdjustmentEvent.TRACK;
fireEvent();
}
}
示例6: moveAdjustable
import java.awt.Adjustable; //導入方法依賴的package包/類
protected static void moveAdjustable(int location, Adjustable scrollBar) {
if (scrollBar == null) {
return;
}
scrollBar.setValue(location);
}