| de.ug2t.unifiedGui.interfaces.IUnLayouted
All known Subclasses: de.ug2t.channel.ho.client.swing.HoSwingContainer, de.ug2t.channel.markup.generic.MuGenericContainer, de.ug2t.channel.ho.server.generic.AHoSrvGenericContainer,
IUnLayouted | public interface IUnLayouted (Code) | | author: Dirk author: date: 27.01.2004 project: WiSer-Framework author: author: IUnLayouted gathers the functions for extended layout-control in a author: common interface author:
|
Method Summary | |
public int | pcmf_getCommonLayout()
Gets how the container is layouted. | public void | pcmf_setCommonLayout(int xLayout)
Sets how the container is layouted. | public void | pcmf_setFill(String xName, boolean xH, boolean xV)
Sets the fill paramter of a component. | public void | pcmf_setFill(UnComponent xObj, boolean xH, boolean xV)
Sets the gravity of a component. | public void | pcmf_setGuiObjNoLayout(boolean xLayout)
Sets whether the container is layouted or not. | public void | pcmf_setInsets(UnComponent xObj, int xIns1, int xIns2, int xIns3, int xIns4) | public void | pcmf_setInsets(String xName, int xIns1, int xIns2, int xIns3, int xIns4) | public void | pcmf_setWeights(String xName, int xW, int yW)
Sets the gravity of a component. | public void | pcmf_setWeights(UnComponent xObj, int xW, int yW)
Sets the gravity of a component. |
LAYOUT_ABSOLUTE | final public static int LAYOUT_ABSOLUTE(Code) | | |
LAYOUT_FLOW | final public static int LAYOUT_FLOW(Code) | | |
LAYOUT_GRIDBAG | final public static int LAYOUT_GRIDBAG(Code) | | |
pcmf_getCommonLayout | public int pcmf_getCommonLayout()(Code) | |
Gets how the container is layouted.
LAYOUT_GRIDBAG: Use a GridBagLayout LAYOUT_FLOW: Use a FlowLayoutLAYOUT_ABSOLUTE: Use absolute positions in pixel |
pcmf_setCommonLayout | public void pcmf_setCommonLayout(int xLayout)(Code) | |
Sets how the container is layouted.
LAYOUT_GRIDBAG: Use a GridBagLayout LAYOUT_FLOW: Use a FlowLayout
LAYOUT_ABSOLUTE: Use absolute positions in pixel
These layouts are available in Web and Swing applications and produce quite
similar outputs.
Parameters: xLayout - LAYOUT_GRIDBAG, LAYOUT_FLOW, or LAYOUT_ABSOLUTE |
pcmf_setFill | public void pcmf_setFill(String xName, boolean xH, boolean xV)(Code) | |
Sets the fill paramter of a component. The meaning is similar to Java Swing
Parameters: xName - component's name in this container Parameters: xH - fill horizontal Parameters: xV - fill vertical |
pcmf_setFill | public void pcmf_setFill(UnComponent xObj, boolean xH, boolean xV)(Code) | |
Sets the gravity of a component. The meaning is similar to Java Swing
Parameters: xObj - component in this container Parameters: xH - fill horizontal Parameters: xV - fill vertical |
pcmf_setGuiObjNoLayout | public void pcmf_setGuiObjNoLayout(boolean xLayout)(Code) | |
Sets whether the container is layouted or not. If not positions can be set
in pixels, otherwise layout cells are used
Parameters: xLayout - true activates layout-management, false disables it |
pcmf_setInsets | public void pcmf_setInsets(UnComponent xObj, int xIns1, int xIns2, int xIns3, int xIns4)(Code) | |
Sets the insets of a component in pixel according to the components
cell-borders
Parameters: xObj - component in this container Parameters: xIns1 - top inset Parameters: xIns2 - left inset Parameters: xIns3 - bottom inset Parameters: xIns4 - right inset |
pcmf_setInsets | public void pcmf_setInsets(String xName, int xIns1, int xIns2, int xIns3, int xIns4)(Code) | |
Sets the insets of a component in pixel according to the components
cell-borders
Parameters: xName - component's name in this container Parameters: xIns1 - top inset Parameters: xIns2 - left inset Parameters: xIns3 - bottom inset Parameters: xIns4 - right inset |
pcmf_setWeights | public void pcmf_setWeights(String xName, int xW, int yW)(Code) | |
Sets the gravity of a component. The meaning is similar to Java Swing
Parameters: xName - component's name in this container Parameters: xW - gravity in x-direction Parameters: yW - gravity in y-direction |
pcmf_setWeights | public void pcmf_setWeights(UnComponent xObj, int xW, int yW)(Code) | |
Sets the gravity of a component. The meaning is similar to Java Swing
Parameters: xObj - component in this container Parameters: xW - gravity in x-direction Parameters: yW - gravity in y-direction |
|
|