public class FFrameText extends FFrame
Modifier and Type | Field and Description |
---|---|
static int |
CENTER |
static int |
LEFT
Localización del texto.
|
static String |
PERSISTENCE_DEFINITION_NAME |
static int |
RIGTH |
e, frameFactory, lastAT, layoutManager, LOG, m_BoundBox, m_Selected, n, ne, no, num, o, observers, s, se, so
Constructor and Description |
---|
FFrameText()
Crea un nuevo FFrameText.
|
Modifier and Type | Method and Description |
---|---|
void |
addText(String s)
Rellenar el texto que se quiere añadir al Layout.
|
void |
clearText()
Use this method if you want the text in the FFrameText to be removed.
|
Object |
clone()
Creates a copy of the object.
|
void |
draw(Graphics2D g,
AffineTransform at,
Rectangle2D rv,
BufferedImage imgBase)
Método que dibuja sobre el graphics que se le pasa como parámetro, según
la transformada afin que se debe de aplicar y el rectángulo que se debe
de dibujar.
|
double |
getCellPadding()
Obtiene el cellPadding
|
Font |
getFont()
Devuelve la fuente del texto.
|
int |
getFontSize()
Obtiene el fontSize
|
double |
getFrameBorderSize()
Devuelve el tamaño del borde.
|
Color |
getFrameColor()
DOCUMENT ME!
|
String |
getName()
Devuelve el nombre que representa al fframe.
|
String |
getNameFFrame()
Devuelve el nombre que representa al tipo de FFrame.
|
int |
getPos()
Devuelve la posición izquierda, centro o derecha del texto.
|
ArrayList |
getText()
Devuelve el ArrayList que contiene las líneas de texto.
|
Color |
getTextColor()
Devuelve el color del texto del FFrameText.
|
String |
getTitle()
Devuelve un string con el título.
|
Color |
getTitleColor()
DOCUMENT ME!
|
int |
getTitleSize()
Devuelve el tamaño del título.
|
boolean |
hasTitle()
Devuelve true si tiene un título.
|
void |
initialize() |
boolean |
isFontSizeFixed()
Obtiene el fixedFontSize
|
boolean |
isSizeFixed()
Devuelve si está fijado el tamaño.
|
boolean |
isSurrounded()
True if the FFrameText is set to draw an involving rectangle, or false
if not.
|
void |
loadFromState(PersistentState state)
Set the state of the object from the state passed as parameter.
|
void |
print(Graphics2D g,
AffineTransform at,
Geometry geom,
PrintAttributes properties) |
static void |
registerPersistent() |
void |
saveToState(PersistentState state)
Saves the internal state of the object on the provided
PersistentState object.
|
void |
setCellPadding(double i)
Sets the gap between the involving rectangle and the text
|
void |
setFixedFontSize(boolean fixedFontSize)
Establece fixedFontSize
|
void |
setFont(Font f)
Inserta la fuente del texto.
|
void |
setFontSize(int fontSize)
Establece fontSize
|
void |
setFrameBorderSize(double size)
Inserta el tamaño del borde.
|
void |
setFrameColor(Color frameColor)
DOCUMENT ME!
|
void |
setHasTitle(boolean b)
Inserta true si tiene título
|
void |
setPos(int p)
Pone la posición izquierda, centro o derecha del texto.
|
void |
setSizeFixed(boolean b)
Seleccionar si se quiere un tamaño fijo o adecuado a la escala.
|
void |
setSurrounded(boolean b)
Sets FFrameText to draw an involving rectangle
|
void |
setTextColor(Color color)
Inserta el color del texto a escribir.
|
void |
setTitle(String text)
Inserta un string con el título.
|
void |
setTitleColor(Color titleColor)
DOCUMENT ME!
|
void |
setTitleSize(int size)
Inserta el tamaño del título.
|
addObserver, contains, deleteObserver, deleteObservers, dispose, doSetSelected, drawDraft, drawEmpty, drawHandlers, drawSymbolTag, frameAdded, frameRemoved, getBoundBox, getBoundingBox, getContains, getDocument, getFrameFactory, getLastMoveRect, getLayoutContext, getLevel, getMapCursor, getMovieRect, getRotation, getRotationAT, getSelected, getTag, getVisibleRect, initializeIcons, intersects, isSelected, setBoundBox, setDocument, setFrameFactory, setLayoutContext, setLevel, setNum, setRotation, setSelected, setSelected, setTag, updateRect
public static final String PERSISTENCE_DEFINITION_NAME
public static final int LEFT
public static final int CENTER
public static final int RIGTH
public void setFont(Font f)
f
- Fuente del texto.public Color getTextColor()
public boolean isFontSizeFixed()
public void setFixedFontSize(boolean fixedFontSize)
fixedFontSize
- public int getFontSize()
public void setFontSize(int fontSize)
fontSize
- public double getCellPadding()
public void setTextColor(Color color)
color
- Color del texto.public Font getFont()
public int getPos()
public void setPos(int p)
p
- 0=LEFT,1=CENTER,2=RIGTH.public void draw(Graphics2D g, AffineTransform at, Rectangle2D rv, BufferedImage imgBase)
public void print(Graphics2D g, AffineTransform at, Geometry geom, PrintAttributes properties)
public void addText(String s)
s
- String a añadir.public ArrayList getText()
public void setSizeFixed(boolean b)
b
- true si se quiere tamaño fijo.public boolean isSizeFixed()
public String getNameFFrame()
IFFrame
IFFrame.getNameFFrame()
public String getName()
IFFrame
public void setSurrounded(boolean b)
b
- public boolean isSurrounded()
public void setCellPadding(double i)
i
- public boolean hasTitle()
public String getTitle()
public void setHasTitle(boolean b)
b
- public void setTitle(String text)
text
- public int getTitleSize()
public void setTitleSize(int size)
size
- DOCUMENT ME!public void setFrameBorderSize(double size)
size
- public double getFrameBorderSize()
public void setFrameColor(Color frameColor)
frameColor
- public void setTitleColor(Color titleColor)
titleColor
- DOCUMENT ME!public Color getFrameColor()
public Color getTitleColor()
public void clearText()
public void initialize()
public static void registerPersistent()
public void loadFromState(PersistentState state) throws PersistenceException
Persistent
loadFromState
in interface Persistent
loadFromState
in class FFrame
PersistenceException
public void saveToState(PersistentState state) throws PersistenceException
Persistent
saveToState
in interface Persistent
saveToState
in class FFrame
PersistenceException
public Object clone() throws CloneNotSupportedException
Cloneable
clone
in class FFrame
CloneNotSupportedException
- if the instance of the object cannot
be cloned. As this is extending Cloneable
so
its sure it implements it, so this exception may be used for problems
on specific object instances.Object#clone()}.