Methods Summary |
---|
protected int | getInnerBounds(int dimension)Overrides ItemLFImpl's getInnerBounds so that extra padding is not
added
return bounds[dimension];
|
protected int | getLockedHeight()Returns the locked height of the Spacer, or -1 if it's not locked.
Overrides Item's getLockedHeight which returns lockedHeight plus
padding
return spacer.lockedHeight;
|
protected int | getLockedWidth()Returns the locked width of the Spacer, or -1 if it's not locked.
Overrides Item's getLockedWidth which returns lockedWidth plus
padding
return spacer.lockedWidth;
|
void | lCallPaint(Graphics g, int w, int h)Paint the content of this Item
/*
* There's no reason to erase anything because Form will erase
* any dirty region for us
*/
|
int | lGetAdornedMinimumHeight()Used by the Form Layout to set the size of this Item
return lGetMinimumHeight();
|
int | lGetAdornedMinimumWidth()Used by the Form Layout to set the size of this Item
return lGetMinimumWidth();
|
int | lGetAdornedPreferredHeight(int width)Used by the Form Layout to set the size of Items.
Spacer should add no padding around itself
return lGetPreferredHeight(width);
|
int | lGetAdornedPreferredWidth(int height)Used by the Form Layout to set the size of Items.
Spacer should add no padding around itself
return lGetPreferredWidth(height);
|
public int | lGetMinimumHeight()Get the minimum height of this Item
return spacer.height;
|
public int | lGetMinimumWidth()Get the minimum width of this Item
return spacer.width;
|
public int | lGetPreferredHeight(int w)Get the preferred height of this Item
return spacer.height;
|
public int | lGetPreferredWidth(int h)Get the preferred width of this Item
return spacer.width;
|
public void | lSetMinimumSize(int minWidth, int minHeight)Notifies Look & Feel of a minimum size change in the Spacer.
lRequestInvalidate(true, true);
|