| de.ug2t.unifiedGui.interfaces.IUnPage
All known Subclasses: de.ug2t.channel.markup.generic.MuGenericPage, de.ug2t.channel.ho.server.generic.HoSrvGenericPage, de.ug2t.channel.ho.client.swing.HoSwingPage,
IUnPage | public interface IUnPage extends IUnIconView,IUnContainer,IUnLayouted,IUnComponent,IUnGuiEventListener,IUnPanel(Code) | | author: Dirk author: date: 25.01.2004 project: WiSer-Framework author: author: IUnPage is the common interface to gui pages. A gui page is one of probably author: several pages of an application. Each page is an container which consists of author: different widgets. In MDI mode an application can show more than one page at author: one time. In SDI mode only one page is showed by an application window at one author: time. author:
|
Inner Class :public static class Factory | |
Method Summary | |
public String | pcmf_getExternalCss() | public boolean | pcmf_getGenerateReshapeEvents() | public boolean | pcmf_getOwnsMenu() | public String | pcmf_getTitle()
Gets the title of the page. | public boolean | pcmf_isCssSupported() | public boolean | pcmf_isMaximized() | public void | pcmf_maximize(boolean xMax)
Return whether a MDI window is maximized or not. | public void | pcmf_ownsMenu(boolean xOwns)
If a page owns its menu the menu is rendererd on top of the page in an MDI
interface. | public void | pcmf_setDefaultFocusWdg(UnComponent xWdg) | public void | pcmf_setExternalCss(String xCss) | public void | pcmf_setGenerateReshapeEvents(boolean xReshapes)
If a page is used within a mdi environment it may be reshaped. | public void | pcmf_setInnerPosition(int xPos, int yPos, int xWidth, int xHeigth) | public UnComponent | pcmf_setPosition(String xName, int xPos, int yPos, int xWidth, int xHeight, int xAlign)
Sets the position of a child-widget. | public UnComponent | pcmf_setPosition(UnComponent xObj, int xPos, int yPos, int xWidth, int xHeight, int xAlign)
Sets the position of a child-widget. | public void | pcmf_setTitle(String xTitle)
Sets the title of the page. |
PAGE_ACTIVATED | final public static String PAGE_ACTIVATED(Code) | | |
PAGE_DEACTIVATED | final public static String PAGE_DEACTIVATED(Code) | | |
PAGE_DEICONIFIED | final public static String PAGE_DEICONIFIED(Code) | | |
PAGE_ICONIFIED | final public static String PAGE_ICONIFIED(Code) | | |
PAGE_MAXIMIZED | final public static String PAGE_MAXIMIZED(Code) | | |
pcmf_getExternalCss | public String pcmf_getExternalCss()(Code) | |
Gets the external CSS stylesheet reference
|
pcmf_getGenerateReshapeEvents | public boolean pcmf_getGenerateReshapeEvents()(Code) | |
Returns whether reshape events are generated or not
Parameters: xReshapes - true or false |
pcmf_getOwnsMenu | public boolean pcmf_getOwnsMenu()(Code) | |
Return whether the page owns the menu or not
owns |
pcmf_getTitle | public String pcmf_getTitle()(Code) | |
Gets the title of the page.
Title |
pcmf_isCssSupported | public boolean pcmf_isCssSupported()(Code) | |
Return whether css is supported or not
css supported |
pcmf_isMaximized | public boolean pcmf_isMaximized()(Code) | |
Sets an MDI window to full screen mode and back
Parameters: xMax - true or false |
pcmf_maximize | public void pcmf_maximize(boolean xMax)(Code) | |
Return whether a MDI window is maximized or not.
css supported |
pcmf_ownsMenu | public void pcmf_ownsMenu(boolean xOwns)(Code) | |
If a page owns its menu the menu is rendererd on top of the page in an MDI
interface. If a page does not own the menu the menu is rendered on top of
the desktoppane if the page is active.
Parameters: xOwns - true or false |
pcmf_setDefaultFocusWdg | public void pcmf_setDefaultFocusWdg(UnComponent xWdg)(Code) | |
After activating a page the focus is set to the widget which is defined
with this function
Parameters: xWdg - widget which requests the focus after the page has been activated |
pcmf_setExternalCss | public void pcmf_setExternalCss(String xCss)(Code) | |
Sets an external CSS stylesheet reference
|
pcmf_setGenerateReshapeEvents | public void pcmf_setGenerateReshapeEvents(boolean xReshapes)(Code) | |
If a page is used within a mdi environment it may be reshaped. Because the
corresponding events lead to massive network traffic, they can be enabled
and disabled separately.
Parameters: xReshapes - true or false |
pcmf_setInnerPosition | public void pcmf_setInnerPosition(int xPos, int yPos, int xWidth, int xHeigth)(Code) | |
If the page is displayed within an MDI Client this method sets the inner
position of the page
Parameters: xPos - position in x-direction Parameters: yPos - position in y-direction Parameters: xWidth - width of the object Parameters: xHeight - height of the object |
pcmf_setPosition | public UnComponent pcmf_setPosition(String xName, int xPos, int yPos, int xWidth, int xHeight, int xAlign)(Code) | |
Sets the position of a child-widget. This function is only for internal
use, please use 'pcmf_setGuiObjPosition'
Parameters: xName - child object name to reposition Parameters: xPos - position in x-direction Parameters: yPos - position in y-direction Parameters: xWidth - width of the object Parameters: xHeight - height of the object Parameters: xAlign - alignment of the object as integer. Values of Java-SwingGridBagLayout are valid |
pcmf_setPosition | public UnComponent pcmf_setPosition(UnComponent xObj, int xPos, int yPos, int xWidth, int xHeight, int xAlign)(Code) | |
Sets the position of a child-widget. This function is only for internal
use, please use 'pcmf_setGuiObjPosition'
Parameters: xObj - child object to reposition Parameters: xPos - position in x-direction Parameters: yPos - position in y-direction Parameters: xWidth - width of the object Parameters: xHeight - height of the object Parameters: xAlign - alignment of the object as integer. Values of Java-SwingGridBagLayout are valid |
pcmf_setTitle | public void pcmf_setTitle(String xTitle)(Code) | |
Sets the title of the page. This can only be done while the dialog is not
connected to a component tree
Parameters: xTitle - title of the page |
|
|