blob: c968feaf90cffce250700961ca757fb4ec2e6245 [file] [log] [blame]
/*
*
* 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.taverna.gis.ui.config;
import java.awt.event.ActionEvent;
import org.apache.taverna.services.ServiceRegistry;
import org.apache.taverna.scufl2.api.activity.Activity;
import org.apache.taverna.servicedescriptions.ServiceDescriptionRegistry;
import org.apache.taverna.workbench.activityicons.ActivityIconManager;
import org.apache.taverna.workbench.edits.EditManager;
import org.apache.taverna.workbench.file.FileManager;
import org.apache.taverna.workbench.ui.actions.activity.ActivityConfigurationAction;
import org.apache.taverna.workbench.ui.views.contextualviews.activity.ActivityConfigurationDialog;
@SuppressWarnings("serial")
public class GisConfigureAction extends ActivityConfigurationAction {
private final EditManager editManager;
private final FileManager fileManager;
private final ServiceRegistry serviceRegistry;
public GisConfigureAction(Activity activity,
EditManager editManager, FileManager fileManager,
ActivityIconManager activityIconManager,
ServiceDescriptionRegistry serviceDescriptionRegistry,
ServiceRegistry serviceRegistry) {
super(activity, activityIconManager, serviceDescriptionRegistry);
this.editManager = editManager;
this.fileManager = fileManager;
this.serviceRegistry = serviceRegistry;
}
public void actionPerformed(ActionEvent e) {
ActivityConfigurationDialog currentDialog = getDialog(getActivity());
if (currentDialog != null) {
currentDialog.toFront();
return;
}
GisConfigurationPanel panel = new GisConfigurationPanel(getActivity(), serviceRegistry);
ActivityConfigurationDialog dialog = new ActivityConfigurationDialog(getActivity(), panel, editManager);
setDialog(getActivity(), dialog, fileManager);
}
}