Class EUIDialog

    • Constructor Detail

      • EUIDialog

        public EUIDialog()
        Creates the property container without a name. The name must be set in all cases using the setPropertyAtom call.
      • EUIDialog

        public EUIDialog​(Atom propertyAtom)
        Creates the property container with the specified name. All system-reserved names for components begins with "$".
        Parameters:
        propertyAtom - the name of the component, unique within it's parent.
    • Method Detail

      • createClientStyles

        protected Styles createClientStyles()
        Creates the Client Styles container (can be overridden by Designer to create EditorStyles).
        Overrides:
        createClientStyles in class UIDialog
      • getUndoContext

        public org.eclipse.core.commands.operations.IUndoContext getUndoContext()
        Gets the undo context. For the UIPanel, this will ripple up to the editor containing this panel.
        Specified by:
        getUndoContext in interface IPropUndoContext
        Returns:
        The undo context for the Editor part(s) for this container.
      • getCNImage

        public org.eclipse.swt.graphics.Image getCNImage​(boolean isMobile)
        Gets the image for the Common Navigator.
        Specified by:
        getCNImage in interface IEUICompBase
        Parameters:
        isMobile - The mobile theme flag.
        Returns:
        Image or null if there is no image.
      • getClassReference

        public EditorClassReference getClassReference​(java.lang.String id,
                                                      boolean doCreateIfNotPresent)
        Gets or creates the ClassReference in the property container.

        Panel do not use "ID" because there is a single class connection with the name Atom.CLASS.

        Specified by:
        getClassReference in interface IClassReferenceOwner
        Specified by:
        getClassReference in interface IEUIPanel
        Specified by:
        getClassReference in interface IJavaClassLinkEnabler
        Specified by:
        getClassReference in interface IUIClassReferenceOwner
        Overrides:
        getClassReference in class UIPanelBase
        Parameters:
        id - ID for the class reference if several exist, null for default.
        doCreateIfNotPresent - Flag to create the property (this flag can only be true in Designer)!
        Returns:
        The resolved class reference instance, null if the ClassReference doesn't exist if the create flag is false. If flag is true, an orphan unresolved EditorClassReference instance (ONLY for the Designer).
      • getPossibleChildren

        public java.lang.Class<?>[] getPossibleChildren()
        Gets the acceptable children property classes that can be used in conjunction with e.g. a Paste operation.
        Specified by:
        getPossibleChildren in interface IPropCnr
        Overrides:
        getPossibleChildren in class PropCnr
        Returns:
        An array containing the classes of possible children, or null for no support.
      • validateClassInstances

        public boolean validateClassInstances​(boolean doPerform,
                                              GProp<?>[] props,
                                              boolean isMove)
        Validates the target property container classes for paste/move with additional instance testing, extra check when the possible children are verified.

        Override this method that by default returns true to provide fine-tuned testing for validity.

        Specified by:
        validateClassInstances in interface IPropCnr
        Overrides:
        validateClassInstances in class PropCnr
        Parameters:
        doPerform - The perform flag, false means just testing.
        props - Properties to move or paste.
        isMove - Flag for move if true, false means paste.
        Returns:
        true if the class instances for move or paste are valid, false otherwise.
      • getPossibleCompChildren

        public java.lang.Class<?>[] getPossibleCompChildren()
        Gets the acceptable component children property classes that can be used in conjunction with e.g. a Paste operation.
        Specified by:
        getPossibleCompChildren in interface IEUIContainer
        Returns:
        An array containing the classes of possible children, or null for no support.
      • getAcceptedLayoutMgrs

        public java.lang.Class<?>[] getAcceptedLayoutMgrs()
        Gets the possible Layout Manager classes for this component.
        Specified by:
        getAcceptedLayoutMgrs in interface IEUIContainer
        Returns:
        null To accept all.
      • getStylesName

        public java.lang.String getStylesName​(EditorStyles styles)
        The name of this styles property for the common navigator.
        Specified by:
        getStylesName in interface IStylesFilter
        Parameters:
        styles - The Styles property container.
      • getSupportedStyles

        public java.lang.String[] getSupportedStyles​(EditorStyles styles)
        Gets the groups supported by the component.
        Specified by:
        getSupportedStyles in interface IStylesFilter
        Parameters:
        styles - The Styles property container.
        Returns:
        An array of property names of the styles. Names beginning with '*' indicates it's a group.
      • getExtendsPossibleClasses

        public java.lang.Class<?>[] getExtendsPossibleClasses()
        Gets the possible classes this container supports for the Extends Framework. The default implementation is to return null.
        Specified by:
        getExtendsPossibleClasses in interface IPropCnr
        Overrides:
        getExtendsPossibleClasses in class PropCnr
        Returns:
        List of supported classes, or null for none.
      • getSelectPropViewerFilter

        public org.eclipse.jface.viewers.ViewerFilter getSelectPropViewerFilter()
        Gets the viewer filter for the tree in the dialog for selecting extends property name.
        Specified by:
        getSelectPropViewerFilter in interface IExtendsSelection
      • getDefaultValue

        public GUnit getDefaultValue​(Atom name,
                                     GUnit defaultValue)
        Gets the default value to use when a value is defined and no previous text is available.
        Specified by:
        getDefaultValue in interface IDefaultPropertyValueProvider<GUnit>
        Parameters:
        name - The edited property name.
        defaultValue - The default value as defined by the property editor information.
      • verify

        public boolean verify​(PropVerification verification)
        Verifies this property container. The check performed is the extension of classes and that no circular reference is present.
        Specified by:
        verify in interface IGProp<GProp<?>[]>
        Overrides:
        verify in class UIPanelBase
        Parameters:
        verification - The property verification class.
        Returns:
        true if verification should proceed, false if disposed of and verification should not take place.
      • getTransferProps

        public java.lang.Object[] getTransferProps()
        Returns the list of properties that are transferable between layout managers.
        Specified by:
        getTransferProps in interface ITransferContainerProps
        Returns:
        The list of String's or Atom's that are transferable, null for none.