| de.ug2t.unifiedGui.interfaces.IUnPanel
IUnPanel | public interface IUnPanel (Code) | | author: Dirk author: date: 07.12.2003 project: WiSer-Framework author: author: IUnPanel is a common interface to all panels. A panel is a scrollable area of author: the screen which displays other widgets author:
|
Method Summary | |
public IUnImage | pcmf_getBgImage() | public boolean | pcmf_getScroll() | public void | pcmf_setBgImage(IUnImage xImg) | public void | pcmf_setGuiObjPosition(UnComponent xObj, int xPos, int yPos, int xWi, int xHi, String xAlign)
Sets the position of a child-widget either in a layout or in absolute pixel coordinates,
depending on the layout settings.
Parameters: xObj - child object to reposition Parameters: xPos - position in x-direction Parameters: yPos - position in y-direction Parameters: xWi - width of the object Parameters: xHi - height of the object Parameters: xAlign - alignment of the object as string "WEST", "EAST", "NORTH","SOUTH", "CENTER". | public void | pcmf_setGuiObjPosition(IUnComponent xObj, int xPos, int yPos, int xWi, int xHi, String xAlign)
Sets the position of a child-widget either in a layout or in absolute pixel coordinates,
depending on the layout settings.
Parameters: xObj - child object to reposition Parameters: xPos - position in x-direction Parameters: yPos - position in y-direction Parameters: xWi - width of the object Parameters: xHi - height of the object Parameters: xAlign - alignment of the object as string "WEST", "EAST", "NORTH","SOUTH", "CENTER". | public void | pcmf_setGuiObjPosition(String xName, int xPos, int yPos, int xWi, int xHi, String xAlign)
Sets the position of a child-widget either in a layout or in absolute pixel coordinates
depending on the layout settings.
Parameters: xName - child object to reposition, referenced by its name within theparent Parameters: xPos - position in x-direction Parameters: yPos - position in y-direction Parameters: xWi - width of the object Parameters: xHi - height of the object Parameters: xAlign - alignment of the object as string "WEST", "EAST", "NORTH","SOUTH", "CENTER". | public void | pcmf_setScroll(boolean xScroll) |
pcmf_getBgImage | public IUnImage pcmf_getBgImage()(Code) | |
Gets the background-image of the panle
interface to the background-image of the panel or null if nobackground-image has been set |
pcmf_getScroll | public boolean pcmf_getScroll()(Code) | |
Gets the scroll capability of the panel
|
pcmf_setBgImage | public void pcmf_setBgImage(IUnImage xImg)(Code) | |
Sets the background-image of the panel
Parameters: xImg - interface to an image-object |
pcmf_setGuiObjPosition | public void pcmf_setGuiObjPosition(UnComponent xObj, int xPos, int yPos, int xWi, int xHi, String xAlign)(Code) | |
Sets the position of a child-widget either in a layout or in absolute pixel coordinates,
depending on the layout settings.
Parameters: xObj - child object to reposition Parameters: xPos - position in x-direction Parameters: yPos - position in y-direction Parameters: xWi - width of the object Parameters: xHi - height of the object Parameters: xAlign - alignment of the object as string "WEST", "EAST", "NORTH","SOUTH", "CENTER". For absolute positioning the parameter is not used. |
pcmf_setGuiObjPosition | public void pcmf_setGuiObjPosition(IUnComponent xObj, int xPos, int yPos, int xWi, int xHi, String xAlign)(Code) | |
Sets the position of a child-widget either in a layout or in absolute pixel coordinates,
depending on the layout settings.
Parameters: xObj - child object to reposition Parameters: xPos - position in x-direction Parameters: yPos - position in y-direction Parameters: xWi - width of the object Parameters: xHi - height of the object Parameters: xAlign - alignment of the object as string "WEST", "EAST", "NORTH","SOUTH", "CENTER". For absolute positioning the parameter is not used. |
pcmf_setGuiObjPosition | public void pcmf_setGuiObjPosition(String xName, int xPos, int yPos, int xWi, int xHi, String xAlign)(Code) | |
Sets the position of a child-widget either in a layout or in absolute pixel coordinates
depending on the layout settings.
Parameters: xName - child object to reposition, referenced by its name within theparent Parameters: xPos - position in x-direction Parameters: yPos - position in y-direction Parameters: xWi - width of the object Parameters: xHi - height of the object Parameters: xAlign - alignment of the object as string "WEST", "EAST", "NORTH","SOUTH", "CENTER". For absolute positioning the parameter is not used. |
pcmf_setScroll | public void pcmf_setScroll(boolean xScroll)(Code) | |
Enables or disables the scroll capability of the panel
Parameters: xScroll - true enables scrolling, false disables scrolling |
|
|