X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FPreferences.java;h=32aad84a7a2aad655b385849eb38ed3245f1b6b2;hb=f24dacb1da56fccf05d684e2f4899facec2aecf7;hp=7e05eed270f42d60f017c66eb7bf039fbd55a43a;hpb=863f92d688429d50ac290e0f31639ed17d72390e;p=jalview.git diff --git a/src/jalview/gui/Preferences.java b/src/jalview/gui/Preferences.java index 7e05eed..32aad84 100755 --- a/src/jalview/gui/Preferences.java +++ b/src/jalview/gui/Preferences.java @@ -1,176 +1,430 @@ +/* + * 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.io.*; + import jalview.jbgui.*; + import jalview.schemes.*; -import jalview.bin.Cache; -import javax.swing.*; -import java.awt.event.ActionEvent; import java.awt.*; +import java.awt.event.*; -public class Preferences extends GPreferences -{ - static boolean preferencesLoaded=false; - - public static boolean showFullscreen=false; - public static boolean showFullId=true; - public static boolean showAnnotation=true; - public static boolean showConservation=true; - public static boolean showQuality=true; - public static boolean showIdentity=true; - public static String fontName; - public static String fontSize; - public static String fontStyle; - public static char gapSymbol='-'; - public static String defaultColour=null; - - JInternalFrame frame; - - public static void initPreferences() - { - String string = Cache.getProperty("SHOW_FULL_ID"); - if(string!=null) - showFullId = Boolean.valueOf(string).booleanValue(); - - string = Cache.getProperty("SHOW_FULLSCREEN"); - if(string!=null) - showFullscreen = Boolean.valueOf(string).booleanValue(); - - - string = Cache.getProperty("SHOW_ANNOTATIONS"); - if(string!=null) - showAnnotation = Boolean.valueOf(string).booleanValue(); - - string = Cache.getProperty("SHOW_CONSERVATION"); - if(string!=null) - showConservation = Boolean.valueOf(string).booleanValue(); - string = Cache.getProperty("SHOW_QUALITY"); - if(string!=null) - showQuality = Boolean.valueOf(string).booleanValue(); - string = Cache.getProperty("SHOW_IDENTITY"); - if(string!=null) - showIdentity = Boolean.valueOf(string).booleanValue(); - - string = Cache.getProperty("SHOW_FULL_ID"); - if(string!=null) - showFullId = Boolean.valueOf(string).booleanValue(); - - fontName = Cache.getProperty("FONT_NAME"); - fontStyle = Cache.getProperty("FONT_STYLE"); - fontSize = Cache.getProperty("FONT_SIZE"); - - string = Cache.getProperty("DEFAULT_COLOUR"); - if(string!=null) - defaultColour = string; - - - preferencesLoaded = true; - } - - public Preferences() - { - if(!preferencesLoaded) - initPreferences(); - - frame = new JInternalFrame(); - frame.setContentPane(this); - Desktop.addInternalFrame(frame, "Preferences", 480,350 ); - - fullID.setSelected(showFullId); - String string = Cache.getProperty("SHOW_FULLSCREEN"); - boolean value = false; - if(string!=null) - value = Boolean.valueOf(string).booleanValue(); - - fullScreen.setSelected(value); - annotations.setSelected(showAnnotation); - - conservation.setEnabled(showAnnotation); - quality.setEnabled(showAnnotation); - identity.setEnabled(showAnnotation); - - conservation.setSelected(showConservation); - quality.setSelected(showQuality); - identity.setSelected(showIdentity); - - for(int i=0; i<12; i++) - colour.addItem( ColourSchemeProperty.getColourName(i) ); - - string = Cache.getProperty("DEFAULT_COLOUR"); - if(string!=null) - colour.setSelectedItem( string ); - else - colour.setSelectedIndex( 11 ); - - String fonts[] = java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment().getAvailableFontFamilyNames(); - for(int i=0; i0) + { + StringBuffer links = new StringBuffer(); + sequenceURLLinks = new Vector(); + for (int i = 0; i < nameLinks.size(); i++) + { + sequenceURLLinks.addElement(nameLinks.elementAt(i)+"|"+urlLinks.elementAt(i)); + links.append(sequenceURLLinks.elementAt(i).toString()); + links.append("|"); + } + // remove last "|" + links.setLength( links.length()-1 ); + Cache.applicationProperties.setProperty("SEQUENCE_LINKS", links.toString()); + } + else + Cache.applicationProperties.remove("SEQUENCE_LINKS"); + + + Cache.applicationProperties.setProperty("USE_PROXY", Boolean.toString(useProxy.isSelected())); + + if (proxyServerTB.getText().trim().length() < 1) + Cache.applicationProperties.remove("PROXY_SERVER"); + else + Cache.applicationProperties.setProperty("PROXY_SERVER", + proxyServerTB.getText()); + + if (proxyPortTB.getText().trim().length() < 1) + Cache.applicationProperties.remove("PROXY_PORT"); + else + Cache.applicationProperties.setProperty("PROXY_PORT", proxyPortTB.getText()); + + if(useProxy.isSelected()) + { + System.setProperty("http.proxyHost", proxyServerTB.getText()); + System.setProperty("http.proxyPort", proxyPortTB.getText()); + } + else + { + System.setProperty("http.proxyHost",""); + System.setProperty("http.proxyPort",""); + } + + + + Cache.saveProperties(); + try + { + frame.setClosed(true); + } + catch (Exception ex) + { + } + } + + /** + * DOCUMENT ME! + */ + public void startupFileTextfield_mouseClicked() + { + JalviewFileChooser chooser = new JalviewFileChooser(jalview.bin.Cache.getProperty( + "LAST_DIRECTORY"), + new String[] + { + "fa, fasta, fastq", "aln", "pfam", "msf", "pir", "blc", + "jar" + }, + new String[] + { + "Fasta", "Clustal", "PFAM", "MSF", "PIR", "BLC", "Jalview" + }, jalview.bin.Cache.getProperty("DEFAULT_FILE_FORMAT")); + chooser.setFileView(new JalviewFileView()); + chooser.setDialogTitle("Select startup file"); + + int value = chooser.showOpenDialog(this); + + if (value == JalviewFileChooser.APPROVE_OPTION) + { + jalview.bin.Cache.applicationProperties.setProperty("DEFAULT_FILE_FORMAT", + chooser.getSelectedFormat()); + startupFileTextfield.setText(chooser.getSelectedFile() + .getAbsolutePath()); + } + } + + /** + * DOCUMENT ME! + * + * @param e DOCUMENT ME! + */ + public void cancel_actionPerformed(ActionEvent e) + { + try + { + frame.setClosed(true); + } + catch (Exception ex) + { + } + } + + /** + * DOCUMENT ME! + * + * @param e DOCUMENT ME! + */ + public void annotations_actionPerformed(ActionEvent e) + { + conservation.setEnabled(annotations.isSelected()); + quality.setEnabled(annotations.isSelected()); + identity.setEnabled(annotations.isSelected()); + } + + + public void newLink_actionPerformed(ActionEvent e) { + + GSequenceLink link = new GSequenceLink(); + boolean valid = false; + while( !valid ) + { + if (JOptionPane.showInternalConfirmDialog(Desktop.desktop, link, + "New sequence URL link", + JOptionPane.OK_CANCEL_OPTION + ,-1, null) + == JOptionPane.OK_OPTION) + { + if (link.checkValid()) + { + nameLinks.addElement(link.getName()); + urlLinks.addElement(link.getURL()); + updateLinkData(); + valid = true; + } + } + else + break; + } + } + + public void editLink_actionPerformed(ActionEvent e) { + GSequenceLink link = new GSequenceLink(); + + int index = linkNameList.getSelectedIndex(); + if(index==-1) + { + JOptionPane.showInternalMessageDialog(Desktop.desktop, "No link selected!" + ,"No link selected", JOptionPane.WARNING_MESSAGE); + return; + } + + link.setName( nameLinks.elementAt(index).toString() ); + link.setURL( urlLinks.elementAt(index).toString() ); + + boolean valid = false; + while (!valid) + { + + if (JOptionPane.showInternalConfirmDialog(Desktop.desktop, link, + "New sequence URL link", + JOptionPane.OK_CANCEL_OPTION + ,-1, null) + == JOptionPane.OK_OPTION) + { + if (link.checkValid()) + { + nameLinks.setElementAt(link.getName(), index); + urlLinks.setElementAt(link.getURL(), index); + updateLinkData(); + valid = true; + } + } + + else + break; + } + } + + public void deleteLink_actionPerformed(ActionEvent e) { + int index = linkNameList.getSelectedIndex(); + if(index==-1) + { + JOptionPane.showInternalMessageDialog(Desktop.desktop, "No link selected!" + ,"No link selected", JOptionPane.WARNING_MESSAGE); + return; + } + nameLinks.removeElementAt(index); + urlLinks.removeElementAt(index); + updateLinkData(); + } + + void updateLinkData() + { + linkNameList.setListData(nameLinks); + linkURLList.setListData(urlLinks); + } + + public void defaultBrowser_mouseClicked(MouseEvent e) + { + JFileChooser chooser = new JFileChooser("."); + chooser.setDialogTitle("Select default web browser"); + + int value = chooser.showOpenDialog(this); + + if (value == JFileChooser.APPROVE_OPTION) + { + defaultBrowser.setText(chooser.getSelectedFile().getAbsolutePath()); + } - public void cancel_actionPerformed(ActionEvent e) - { - try{ - frame.setClosed(true); - }catch(Exception ex){} } - public void annotations_actionPerformed(ActionEvent e) + private void jbInit() + throws Exception { - conservation.setEnabled(annotations.isSelected()); - quality.setEnabled(annotations.isSelected()); - identity.setEnabled(annotations.isSelected()); } - }