X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FWebserviceInfo.java;h=9dadee758da8b16b4facc59addca5edc2294a683;hb=d5b157fc64cc6e5f633a2f7ae991a29b7c557b94;hp=82350d1603ba5f8ec7c448886fe813a71078d2cd;hpb=6b908c927897408bf9c522f2d87a4cc98bed2325;p=jalview.git diff --git a/src/jalview/gui/WebserviceInfo.java b/src/jalview/gui/WebserviceInfo.java index 82350d1..9dadee7 100755 --- a/src/jalview/gui/WebserviceInfo.java +++ b/src/jalview/gui/WebserviceInfo.java @@ -1,167 +1,347 @@ +/* + * Jalview - A Sequence Alignment Editor and Viewer + * Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA + */ package jalview.gui; +import jalview.jbgui.*; + import java.awt.*; import java.awt.event.*; +import java.awt.image.*; + import javax.swing.*; -import jalview.jbgui.GWebserviceInfo; + +/** + * Base class for web service client thread and gui + * + * @author $author$ + * @version $Revision$ + */ public class WebserviceInfo extends GWebserviceInfo { + /** Job is Queued */ + public static final int STATE_QUEUING = 0; + + /** Job is Running */ + public static final int STATE_RUNNING = 1; + + /** Job has finished with no errors */ + public static final int STATE_STOPPED_OK = 2; + + /** Job has been cancelled with no errors */ + public static final int STATE_CANCELLED_OK = 3; + + /** job has stopped because of some error */ + public static final int STATE_STOPPED_ERROR = 4; + + /** job has failed because of some unavoidable service interruption */ + public static final int STATE_STOPPED_SERVERERROR = 5; + int currentStatus = STATE_QUEUING; + Image image; + int angle = 0; + String title = ""; + jalview.ws.WSClientI thisService; + boolean serviceIsCancellable; + JInternalFrame frame; + + /** + * Creates a new WebserviceInfo object. + * + * @param title short name and job type + * @param info reference or other human readable description + */ + public WebserviceInfo(String title, String info) + { + init(title, info, 520, 500); + } + + /** + * Creates a new WebserviceInfo object. + * + * @param title DOCUMENT ME! + * @param info DOCUMENT ME! + * @param width DOCUMENT ME! + * @param height DOCUMENT ME! + */ + public WebserviceInfo(String title, String info, int width, int height) + { + init(title, info, width, height); + } + + /** + * DOCUMENT ME! + * + * @return DOCUMENT ME! + */ + public jalview.ws.WSClientI getthisService() + { + return thisService; + } - public static final int STATE_QUEUING = 0; - public static final int STATE_RUNNING = 1; - public static final int STATE_STOPPED_OK = 2; - public static final int STATE_CANCELLED_OK = 3; - public static final int STATE_STOPPED_ERROR = 4; - public static final int STATE_STOPPED_SERVERERROR = 5; - int currentStatus = STATE_QUEUING; - Image image; - int angle = 0; - - String title=""; - jalview.ws.WSClientI thisService; - boolean serviceIsCancellable; - public jalview.ws.WSClientI getthisService() { - return thisService; - } - public void setthisService(jalview.ws.WSClientI newservice) { - thisService = newservice; - serviceIsCancellable = newservice.isCancellable(); - } - - public WebserviceInfo(String title, String info) - { - init(title, info, 520, 500); - } - - public WebserviceInfo(String title, String info, int width, int height) - { - init(title, info, width, height); - } - - void init(String title, String info, int width, int height) - { - JInternalFrame frame = new JInternalFrame(); - frame.setContentPane(this); - Desktop.addInternalFrame(frame, title, width, height); - - this.title = title; - setInfoText(info); - java.net.URL url = getClass().getResource("/images/logo.gif"); - image = java.awt.Toolkit.getDefaultToolkit().createImage(url); - MediaTracker mt = new MediaTracker(this); - mt.addImage(image, 0); - try + /** + * DOCUMENT ME! + * + * @param newservice DOCUMENT ME! + */ + public void setthisService(jalview.ws.WSClientI newservice) { - mt.waitForID(0); + thisService = newservice; + serviceIsCancellable = newservice.isCancellable(); } - catch (Exception ex) - {} + /** + * DOCUMENT ME! + * + * @param title DOCUMENT ME! + * @param info DOCUMENT ME! + * @param width DOCUMENT ME! + * @param height DOCUMENT ME! + */ + void init(String title, String info, int width, int height) + { + frame = new JInternalFrame(); + frame.setContentPane(this); + Desktop.addInternalFrame(frame, title, width, height); + frame.setClosable(false); + + this.title = title; + setInfoText(info); - AnimatedPanel ap = new AnimatedPanel(); - titlePanel.add(ap, BorderLayout.CENTER); - Thread thread = new Thread(ap); - thread.start(); - } + java.net.URL url = getClass().getResource("/images/logo.gif"); + image = java.awt.Toolkit.getDefaultToolkit().createImage(url); - public void setStatus(int status) - { - currentStatus = status; - } + MediaTracker mt = new MediaTracker(this); + mt.addImage(image, 0); - public String getInfoText() - { return infoText.getText(); } + try + { + mt.waitForID(0); + } + catch (Exception ex) + { + } - public void setInfoText(String text) - { infoText.setText(text); } + AnimatedPanel ap = new AnimatedPanel(); + titlePanel.add(ap, BorderLayout.CENTER); - public void appendInfoText(String text) - { infoText.append(text); } + Thread thread = new Thread(ap); + thread.start(); + } - public String getProgressText() - { return progressText.getText(); } + /** + * DOCUMENT ME! + * + * @param status integer status from state constants + */ + public void setStatus(int status) + { + currentStatus = status; + } - public void setProgressText(String text) - { progressText.setText(text); } + /** + * DOCUMENT ME! + * + * @return DOCUMENT ME! + */ + public String getInfoText() + { + return infoText.getText(); + } - public void appendProgressText(String text) - { progressText.append(text); } + /** + * DOCUMENT ME! + * + * @param text DOCUMENT ME! + */ + public void setInfoText(String text) + { + infoText.setText(text); + } - protected void cancel_actionPerformed(ActionEvent e) - { - if (!serviceIsCancellable) - JOptionPane.showInternalMessageDialog(Desktop.desktop, - "This job cannot be cancelled." , - "Cancel job" - ,JOptionPane.WARNING_MESSAGE); - else - thisService.cancelJob(); - } + /** + * DOCUMENT ME! + * + * @param text DOCUMENT ME! + */ + public void appendInfoText(String text) + { + infoText.append(text); + } + /** + * DOCUMENT ME! + * + * @return DOCUMENT ME! + */ + public String getProgressText() + { + return progressText.getText(); + } - class AnimatedPanel extends JPanel implements Runnable - { - long startTime=0; - public void run() + /** + * DOCUMENT ME! + * + * @param text DOCUMENT ME! + */ + public void setProgressText(String text) { - startTime = System.currentTimeMillis(); - while(currentStatus= STATE_STOPPED_OK) + angle = 0; + + if (image != null) + { + g.rotate(Math.toRadians(angle), 28, 28); + g.drawImage(image, 10, 10, this); + g.rotate( -Math.toRadians(angle), 28, 28); + } + + + repaint(); + } + catch (Exception ex) + { + } + } + + cancel.setEnabled(false); + } + public void paintComponent(Graphics g1) + { + g1.drawImage(offscreen, 0,0,this); + } } - } }