com.eliad.util
Interface RulerConstants

All Known Subinterfaces:
GridSelectionModel, RulerModel
All Known Implementing Classes:
JSmartGrid, BasicGridUI

public interface RulerConstants

A collection of constants generally used for positioning, orienting and resizing rulers.

Version:
1.0 00/05/20
Author:
Stephan Szymkowicz
See Also:
SwingConstants.HORIZONTAL, SwingConstants.VERTICAL

Field Summary
static int AUTO_RESIZE_ALL
          During all resize operations, proportionately resize all items.
static int AUTO_RESIZE_LAST
          During all resize operations, apply adjustments to the last item only.
static int AUTO_RESIZE_NEXT
          When a item is adjusted in the controler, adjust the next item the opposite way.
static int AUTO_RESIZE_OFF
          Do not adjust item sizes automatically; use a scrollbar.
static int AUTO_RESIZE_SUBSEQUENT
          During interactive adjustment, change subsequent items to preserve the total width; this is the default behavior.
static int HORIZONTAL
          Horizontal orientation.
static int VERTICAL
          Vertical orientation.
 

Field Detail

AUTO_RESIZE_OFF

public static final int AUTO_RESIZE_OFF
Do not adjust item sizes automatically; use a scrollbar.

AUTO_RESIZE_NEXT

public static final int AUTO_RESIZE_NEXT
When a item is adjusted in the controler, adjust the next item the opposite way.

AUTO_RESIZE_SUBSEQUENT

public static final int AUTO_RESIZE_SUBSEQUENT
During interactive adjustment, change subsequent items to preserve the total width; this is the default behavior.

AUTO_RESIZE_LAST

public static final int AUTO_RESIZE_LAST
During all resize operations, apply adjustments to the last item only.

AUTO_RESIZE_ALL

public static final int AUTO_RESIZE_ALL
During all resize operations, proportionately resize all items.

HORIZONTAL

public static final int HORIZONTAL
Horizontal orientation. Used for scrollbars and sliders.

VERTICAL

public static final int VERTICAL
Vertical orientation. Used for scrollbars and sliders.