Examples of ColorRegistry


Examples of org.eclipse.jface.resource.ColorRegistry

                return "Pane (" + getElement().getAttributeValue("name") + ")";
            }

            public ColorRegistry getColorRegistry() {
                if(colorRegistry==null) {
                    colorRegistry = new ColorRegistry();
                }
                return colorRegistry;
            }
        };
        GridData data = new GridData(GridData.FILL_BOTH);
View Full Code Here

Examples of org.eclipse.jface.resource.ColorRegistry

   *
   * @see org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer#initializeDefaultPreferences()
   */
  public void initializeDefaultPreferences() {
    IPreferenceStore store = JSPUIPlugin.getDefault().getPreferenceStore();
    ColorRegistry registry = PlatformUI.getWorkbench().getThemeManager().getCurrentTheme().getColorRegistry();

    // setting the same as HTML
    store.setDefault(JSPUIPreferenceNames.AUTO_PROPOSE, true);
    store.setDefault(JSPUIPreferenceNames.AUTO_PROPOSE_CODE, "<=");//$NON-NLS-1$

View Full Code Here

Examples of org.eclipse.jface.resource.ColorRegistry

   *
   * @see org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer#initializeDefaultPreferences()
   */
  public void initializeDefaultPreferences() {
    IPreferenceStore store = JSPUIPlugin.getDefault().getPreferenceStore();
    ColorRegistry registry = PlatformUI.getWorkbench().getThemeManager().getCurrentTheme().getColorRegistry();

    // setting the same as HTML
    store.setDefault(JSPUIPreferenceNames.AUTO_PROPOSE, true);
    store.setDefault(JSPUIPreferenceNames.AUTO_PROPOSE_CODE, "<=");//$NON-NLS-1$

View Full Code Here

Examples of org.eclipse.jface.resource.ColorRegistry

  /* (non-Javadoc)
   * @see org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer#initializeDefaultPreferences()
   */
  public void initializeDefaultPreferences() {
    IPreferenceStore store = SSEUIPlugin.getDefault().getPreferenceStore();
    ColorRegistry registry = PlatformUI.getWorkbench().getThemeManager().getCurrentTheme().getColorRegistry();
   
    // use the base annotation & quick diff preference page
    EditorsUI.useAnnotationsPreferencePage(store);
    EditorsUI.useQuickDiffPreferencePage(store);

View Full Code Here

Examples of org.eclipse.jface.resource.ColorRegistry

            fontRegistry = new FontRegistry( getWorkbench().getDisplay() );
        }

        if ( colorRegistry == null )
        {
            colorRegistry = new ColorRegistry( getWorkbench().getDisplay() );
        }

        if ( exceptionHandler == null )
        {
            exceptionHandler = new ExceptionHandler();
View Full Code Here

Examples of org.eclipse.jface.resource.ColorRegistry

    {
        super.start( context );

        if ( colorRegistry == null )
        {
            colorRegistry = new ColorRegistry( getWorkbench().getDisplay() );
        }

        if ( ldifTemplateContextTypeRegistry == null )
        {
            ldifTemplateContextTypeRegistry = new ContributionContextTypeRegistry();
View Full Code Here

Examples of org.eclipse.jface.resource.ColorRegistry

            fontRegistry = new FontRegistry( getWorkbench().getDisplay() );
        }

        if ( colorRegistry == null )
        {
            colorRegistry = new ColorRegistry( getWorkbench().getDisplay() );
        }

        if ( exceptionHandler == null )
        {
            exceptionHandler = new ExceptionHandler();
View Full Code Here

Examples of org.eclipse.jface.resource.ColorRegistry

            fontRegistry = new FontRegistry( getWorkbench().getDisplay() );
        }

        if ( colorRegistry == null )
        {
            colorRegistry = new ColorRegistry( getWorkbench().getDisplay() );
        }

        valueEditorPreferences = new ValueEditorsPreferences();

        if ( filterTemplateContextTypeRegistry == null )
View Full Code Here

Examples of org.eclipse.jface.resource.ColorRegistry

   *
   * @see org.eclipse.core.runtime.preferences.AbstractPreferenceInitializer#initializeDefaultPreferences()
   */
  public void initializeDefaultPreferences() {
    IPreferenceStore store = XMLUIPlugin.getDefault().getPreferenceStore();
    ColorRegistry registry = PlatformUI.getWorkbench().getThemeManager().getCurrentTheme().getColorRegistry();

    store.setDefault(XMLUIPreferenceNames.INSERT_SINGLE_SUGGESTION, true);
    store.setDefault(XMLUIPreferenceNames.AUTO_PROPOSE, true);
    store.setDefault(XMLUIPreferenceNames.AUTO_PROPOSE_CODE, "<=:"); //$NON-NLS-1$
    store.setDefault(XMLUIPreferenceNames.AUTO_PROPOSE_DELAY, 500);
View Full Code Here

Examples of org.eclipse.jface.resource.ColorRegistry

    {
        super.start( context );

        if ( colorRegistry == null )
        {
            colorRegistry = new ColorRegistry( getWorkbench().getDisplay() );
        }

        if ( ldifTemplateContextTypeRegistry == null )
        {
            ldifTemplateContextTypeRegistry = new ContributionContextTypeRegistry();
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.