Package org.apache.felix.sigil.eclipse.ui.internal.preferences.repository

Source Code of org.apache.felix.sigil.eclipse.ui.internal.preferences.repository.RepositoriesPreferencePage

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied.  See the License for the
* specific language governing permissions and limitations
* under the License.
*/

package org.apache.felix.sigil.eclipse.ui.internal.preferences.repository;

import org.apache.felix.sigil.eclipse.SigilCore;
import org.apache.felix.sigil.eclipse.model.repository.IRepositoryPreferences;
import org.apache.felix.sigil.eclipse.ui.internal.preferences.ProjectDependentPreferencesPage;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.jface.preference.IPreferenceStore;
import org.eclipse.swt.SWT;
import org.eclipse.swt.layout.GridData;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.TabFolder;
import org.eclipse.swt.widgets.TabItem;
import org.eclipse.ui.IWorkbench;
import org.eclipse.ui.IWorkbenchPreferencePage;

public class RepositoriesPreferencePage extends ProjectDependentPreferencesPage implements IWorkbenchPreferencePage
{

    private boolean changed;
    private RepositoriesView viewPage;

    public RepositoriesPreferencePage()
    {
        super("Repository Preferences");
    }

    @Override
    protected Control createContents(Composite parent)
    {
        Control control = initContents(parent);
        return control;
    }

    @Override
    protected IPreferenceStore doGetPreferenceStore()
    {
        return SigilCore.getDefault().getPreferenceStore();
    }

    protected void changed()
    {
        changed = true;
        updateApplyButton();
    }

    private Control initContents(Composite parent)
    {
        viewPage = new RepositoriesView(this);

        Composite control = new Composite(parent, SWT.NONE);

        TabFolder folder = new TabFolder(control, SWT.TOP);

        TabItem view = new TabItem(folder, SWT.NONE);
        view.setText("Repositories");
        view.setControl(viewPage.createContents(folder));

        control.setLayout(new GridLayout(1, true));
        folder.setLayoutData(new GridData(SWT.FILL, SWT.FILL, true, true));

        return control;
    }

    public void init(IWorkbench workbench)
    {
        // TODO Auto-generated method stub

    }

    @Override
    protected void doSave()
    {
        try
        {
            IRepositoryPreferences config = SigilCore.getRepositoryPreferences();
            config.saveRepositories(viewPage.getRepositories());

            setErrorMessage(null);
            getApplyButton().setEnabled(false);
            changed = false;
        }
        catch (CoreException e)
        {
            setErrorMessage("Failed to save repositories:" + e.getStatus().getMessage());
            SigilCore.error("Failed to save repositories", e);
        }
    }

    @Override
    protected boolean isDirty()
    {
        return changed;
    }
}
TOP

Related Classes of org.apache.felix.sigil.eclipse.ui.internal.preferences.repository.RepositoriesPreferencePage

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.