當前位置: 首頁>>代碼示例>>Java>>正文


Java Adjustable.setValue方法代碼示例

本文整理匯總了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);
}
 
開發者ID:shannah,項目名稱:cn1,代碼行數:20,代碼來源:ScrollStateController.java

示例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;
        }
    }
}
 
開發者ID:SunburstApps,項目名稱:OpenJSharp,代碼行數:40,代碼來源:ScrollPaneWheelScroller.java

示例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;
}
 
開發者ID:DiamondLightSource,項目名稱:daq-eclipse,代碼行數:14,代碼來源:TrackingAdjustmentListener.java

示例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;
        }
    }
}
 
開發者ID:openjdk,項目名稱:jdk7-jdk,代碼行數:40,代碼來源:ScrollPaneWheelScroller.java

示例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();
    }
}
 
開發者ID:shannah,項目名稱:cn1,代碼行數:16,代碼來源:ScrollbarStateController.java

示例6: moveAdjustable

import java.awt.Adjustable; //導入方法依賴的package包/類
protected static void moveAdjustable(int location, Adjustable scrollBar) {
  if (scrollBar == null) {
    return;
  }
  scrollBar.setValue(location);
}
 
開發者ID:DiamondLightSource,項目名稱:daq-eclipse,代碼行數:7,代碼來源:LF5SwingUtils.java


注:本文中的java.awt.Adjustable.setValue方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。