blob: f047e8091bb0c787d6499acb3c004379abf1595d [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.workbench.file.impl;
import static java.awt.BorderLayout.CENTER;
import static org.apache.taverna.workbench.MainWindow.getMainWindow;
import static org.apache.taverna.workbench.icons.WorkbenchIcons.workingIcon;
import java.awt.BorderLayout;
import java.awt.Dimension;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import org.apache.taverna.workbench.helper.HelpEnabledDialog;
/**
* Dialog that is popped up while we are opening a workflow.
*
* @author Alex Nenadic
* @author Alan R Williams
*/
@SuppressWarnings("serial")
public class OpenDataflowInProgressDialog extends HelpEnabledDialog {
private boolean userCancelled = false;
public OpenDataflowInProgressDialog() {
super(getMainWindow(), "Opening workflow", true);
setResizable(false);
setDefaultCloseOperation(DO_NOTHING_ON_CLOSE);
JPanel panel = new JPanel(new BorderLayout());
panel.setBorder(new EmptyBorder(10,10,10,10));
JPanel textPanel = new JPanel();
JLabel text = new JLabel(workingIcon);
text.setText("Opening workflow...");
text.setBorder(new EmptyBorder(10,0,10,0));
textPanel.add(text);
panel.add(textPanel, CENTER);
/*
* Cancellation does not work when opening
// Cancel button
JButton cancelButton = new JButton("Cancel");
cancelButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
userCancelled = true;
setVisible(false);
dispose();
}
});
JPanel cancelButtonPanel = new JPanel();
cancelButtonPanel.add(cancelButton);
panel.add(cancelButtonPanel, BorderLayout.SOUTH);
*/
setContentPane(panel);
setPreferredSize(new Dimension(300, 100));
pack();
}
public boolean hasUserCancelled() {
return userCancelled;
}
}