Package org.eclipse.sapphire.ui.assist

Examples of org.eclipse.sapphire.ui.assist.PropertyEditorAssistContext


            return;
        }
       
        if( this.property.enabled() )
        {
            this.assistContext = new PropertyEditorAssistContext( this.part, shell() );
            this.problem = this.part.validation();
           
            for( PropertyEditorAssistContributor c : this.contributors )
            {
                c.contribute( this.assistContext );
View Full Code Here


    });   
  }
 
  private void openAssistDialog()
  {
    PropertyEditorAssistContext assistContext = getAssistContext();
        if( assistContext != null && ! assistContext.isEmpty() )
        {
          // hide the context menu pad
          getConfigurationManager().getDiagramEditor().getContextButtonManager().hideContextButtonsInstantly();
                   
            final org.eclipse.draw2d.geometry.Rectangle decoratorControlBounds = getFigure().getBounds().getCopy();
View Full Code Here

  {
    if (this.assistContext == null)
    {
        SapphirePart parentPart = getContainerPart();
     
          this.assistContext = new PropertyEditorAssistContext( parentPart, page().getSite().getShell() );
          this.problem = part().content();
            for( PropertyEditorAssistContributor c : this.contributors )
            {
                c.contribute( this.assistContext );
            }             
View Full Code Here

TOP

Related Classes of org.eclipse.sapphire.ui.assist.PropertyEditorAssistContext

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.