📄 absoluteconstraints.java
字号:
/*
* AbsoluteConstraints.
*
* JavaZOOM : jlgui@javazoom.net
* http://www.javazoom.net
*
*-----------------------------------------------------------------------
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Library General Public License as published
* by the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public
* License along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*----------------------------------------------------------------------
*/
package javazoom.jlgui.player.amp.skin;
import java.awt.Dimension;
import java.awt.Point;
/**
* An object that encapsulates position and (optionally) size for
* Absolute positioning of components.
*/
public class AbsoluteConstraints implements java.io.Serializable
{
/**
* generated Serialized Version UID
*/
static final long serialVersionUID = 5261460716622152494L;
/**
* The X position of the component
*/
public int x;
/**
* The Y position of the component
*/
public int y;
/**
* The width of the component or -1 if the component's preferred width should be used
*/
public int width = -1;
/**
* The height of the component or -1 if the component's preferred height should be used
*/
public int height = -1;
/**
* Creates a new AbsoluteConstraints for specified position.
*
* @param pos The position to be represented by this AbsoluteConstraints
*/
public AbsoluteConstraints(Point pos)
{
this(pos.x, pos.y);
}
/**
* Creates a new AbsoluteConstraints for specified position.
*
* @param x The X position to be represented by this AbsoluteConstraints
* @param y The Y position to be represented by this AbsoluteConstraints
*/
public AbsoluteConstraints(int x, int y)
{
this.x = x;
this.y = y;
}
/**
* Creates a new AbsoluteConstraints for specified position and size.
*
* @param pos The position to be represented by this AbsoluteConstraints
* @param size The size to be represented by this AbsoluteConstraints or null
* if the component's preferred size should be used
*/
public AbsoluteConstraints(Point pos, Dimension size)
{
this.x = pos.x;
this.y = pos.y;
if (size != null)
{
this.width = size.width;
this.height = size.height;
}
}
/**
* Creates a new AbsoluteConstraints for specified position and size.
*
* @param x The X position to be represented by this AbsoluteConstraints
* @param y The Y position to be represented by this AbsoluteConstraints
* @param width The width to be represented by this AbsoluteConstraints or -1 if the
* component's preferred width should be used
* @param height The height to be represented by this AbsoluteConstraints or -1 if the
* component's preferred height should be used
*/
public AbsoluteConstraints(int x, int y, int width, int height)
{
this.x = x;
this.y = y;
this.width = width;
this.height = height;
}
/**
* @return The X position represented by this AbsoluteConstraints
*/
public int getX()
{
return x;
}
/**
* @return The Y position represented by this AbsoluteConstraints
*/
public int getY()
{
return y;
}
/**
* @return The width represented by this AbsoluteConstraints or -1 if the
* component's preferred width should be used
*/
public int getWidth()
{
return width;
}
/**
* @return The height represented by this AbsoluteConstraints or -1 if the
* component's preferred height should be used
*/
public int getHeight()
{
return height;
}
public String toString()
{
return super.toString() + " [x=" + x + ", y=" + y + ", width=" + width + ", height=" + height + "]";
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -