Examples of IVerticalRulerExtension


Examples of org.eclipse.jface.text.source.IVerticalRulerExtension

      parent.setRedraw(false);

      styledText.setFont(font);

      if (fVerticalRuler instanceof IVerticalRulerExtension) {
        IVerticalRulerExtension e= (IVerticalRulerExtension) fVerticalRuler;
        e.setFont(font);
      }

      sourceViewer.setSelectedRange(selection.x , selection.y);
      sourceViewer.setTopIndex(topIndex);

      if (parent instanceof Composite) {
        Composite composite= (Composite) parent;
        composite.layout(true);
      }

      parent.setRedraw(true);


    } else {

      StyledText styledText= sourceViewer.getTextWidget();
      styledText.setFont(font);

      if (fVerticalRuler instanceof IVerticalRulerExtension) {
        IVerticalRulerExtension e= (IVerticalRulerExtension) fVerticalRuler;
        e.setFont(font);
      }
    }
  }
View Full Code Here

Examples of org.eclipse.jface.text.source.IVerticalRulerExtension

      parent.setRedraw(false);

      styledText.setFont(font);

      if (fVerticalRuler instanceof IVerticalRulerExtension) {
        IVerticalRulerExtension e= (IVerticalRulerExtension) fVerticalRuler;
        e.setFont(font);
      }

      provider.setSelection(selection);
      sourceViewer.setTopIndex(topIndex);

      if (parent instanceof Composite) {
        Composite composite= (Composite) parent;
        composite.layout(true);
      }

      parent.setRedraw(true);


    } else {

      StyledText styledText= sourceViewer.getTextWidget();
      styledText.setFont(font);

      if (fVerticalRuler instanceof IVerticalRulerExtension) {
        IVerticalRulerExtension e= (IVerticalRulerExtension) fVerticalRuler;
        e.setFont(font);
      }
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.