X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FPreferences.java;h=4774cace33e143b640d03ef8dbaac82b4235a95f;hb=a4bc1a8625949ba5b82eeba56058d44c349a5bc9;hp=b16ae32d6a5ab9ab3f4fae4575adf3836ac8e753;hpb=588042b69abf8e60bcc950b24c283933c7dd422f;p=jalview.git diff --git a/src/jalview/gui/Preferences.java b/src/jalview/gui/Preferences.java index b16ae32..4774cac 100755 --- a/src/jalview/gui/Preferences.java +++ b/src/jalview/gui/Preferences.java @@ -1,6 +1,6 @@ /* * Jalview - A Sequence Alignment Editor and Viewer - * Copyright (C) 2005 AM Waterhouse, J Procter, G Barton, M Clamp, S Searle + * Copyright (C) 2006 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 @@ -18,300 +18,462 @@ */ package jalview.gui; -import java.awt.*; -import java.awt.event.*; -import javax.swing.*; - -import jalview.bin.*; import jalview.io.*; + import jalview.jbgui.*; + import jalview.schemes.*; -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 = "SansSerif"; - public static String fontSize = "10"; - public static String fontStyle = Font.PLAIN + ""; - public static char gapSymbol = '-'; - public static String defaultColour = null; - public static boolean showStartupFile = true; - public static String startupFile = - "http://www.jalview.org/examples/exampleFile.jar"; - JInternalFrame frame; - - public Preferences() - { - initPreferences(); +import java.awt.*; +import java.awt.event.*; - frame = new JInternalFrame(); - frame.setContentPane(this); - Desktop.addInternalFrame(frame, "Preferences", 480, 390); +import javax.swing.*; + +import java.util.*; - fullID.setSelected(showFullId); +import jalview.bin.Cache; - String string = Cache.getProperty("SHOW_FULLSCREEN"); - boolean value = false; - if (string != null) +/** + * DOCUMENT ME! + * + * @author $author$ + * @version $Revision$ + */ +public class Preferences extends GPreferences +{ + /** Holds name and link separated with | character. Sequence ID must be $SEQUENCE_ID$ */ + public static Vector sequenceURLLinks; + static { - value = Boolean.valueOf(string).booleanValue(); + String string = Cache.getDefault("SEQUENCE_LINKS", + "SRS|http://srs.ebi.ac.uk/srsbin/cgi-bin/wgetz?-newId+(([uniprot-all:$SEQUENCE_ID$]))+-view+SwissEntry"); + sequenceURLLinks = new Vector(); + + try + { + StringTokenizer st = new StringTokenizer(string, "|"); + while (st.hasMoreElements()) + { + sequenceURLLinks.addElement(st.nextToken() + "|" + st.nextToken()); + } + } + catch (Exception ex) + { + System.out.println(ex + "\nError parsing sequence links"); + } } + Vector nameLinks, urlLinks; - fullScreen.setSelected(value); - annotations.setSelected(showAnnotation); + JInternalFrame frame; - conservation.setEnabled(showAnnotation); - quality.setEnabled(showAnnotation); - identity.setEnabled(showAnnotation); + DasSourceBrowser dasSource; - conservation.setSelected(showConservation); - quality.setSelected(showQuality); - identity.setSelected(showIdentity); - for (int i = 0; i < 12; i++) + /** + * Creates a new Preferences object. + */ + public Preferences() { - colour.addItem(ColourSchemeProperty.getColourName(i)); - } - string = Cache.getProperty("DEFAULT_COLOUR"); + frame = new JInternalFrame(); + frame.setContentPane(this); + dasSource = new DasSourceBrowser(); + dasPanel.add(dasSource, BorderLayout.CENTER); - if (string != null) - { - colour.setSelectedItem(string); - } - else - { - colour.setSelectedIndex(11); - } + int width = 500, height = 420; + if(System.getProperty("os.name").startsWith("Mac")) + { + width = 570; + height = 460; + } - String[] fonts = java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment() - .getAvailableFontFamilyNames(); + Desktop.addInternalFrame(frame, "Preferences", width, height); + frame.setMinimumSize(new Dimension(width, height)); - for (int i = 0; i < fonts.length; i++) - { - fontNameCB.addItem(fonts[i]); - } + seqLimit.setSelected( Cache.getDefault("SHOW_JVSUFFIX", true)); + fullScreen.setSelected( Cache.getDefault("SHOW_FULLSCREEN", false)); + annotations.setSelected( Cache.getDefault("SHOW_ANNOTATIONS", true)); - for (int i = 1; i < 31; i++) - { - fontSizeCB.addItem(i + ""); - } + conservation.setEnabled( Cache.getDefault("SHOW_ANNOTATIONS", true)); + quality.setEnabled(Cache.getDefault("SHOW_ANNOTATIONS", true)); + identity.setEnabled(Cache.getDefault("SHOW_ANNOTATIONS", true)); - fontStyleCB.addItem("plain"); - fontStyleCB.addItem("bold"); - fontStyleCB.addItem("italic"); + conservation.setSelected(Cache.getDefault("SHOW_CONSERVATION", true)); + quality.setSelected(Cache.getDefault("SHOW_QUALITY", true)); + identity.setSelected(Cache.getDefault("SHOW_IDENTITY", true)); - fontNameCB.setSelectedItem(fontName); - fontSizeCB.setSelectedItem(fontSize); - fontStyleCB.setSelectedItem(fontStyle); + for (int i = 0; i < 13; i++) + { + colour.addItem(ColourSchemeProperty.getColourName(i)); + } - gapSymbolCB.addItem("-"); - gapSymbolCB.addItem("."); + String string = Cache.getDefault("DEFAULT_COLOUR", "None"); - gapSymbolCB.setSelectedItem(gapSymbol + ""); + colour.setSelectedItem(string); - startupCheckbox.setSelected(showStartupFile); - startupFileTextfield.setText(startupFile); - } + String[] fonts = java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment() + .getAvailableFontFamilyNames(); - public static void initPreferences() - { - String string = Cache.getProperty("SHOW_FULL_ID"); + for (int i = 0; i < fonts.length; i++) + { + fontNameCB.addItem(fonts[i]); + } - if (string != null) - { - showFullId = Boolean.valueOf(string).booleanValue(); - } + for (int i = 1; i < 31; i++) + { + fontSizeCB.addItem(i + ""); + } - string = Cache.getProperty("SHOW_FULLSCREEN"); + fontStyleCB.addItem("plain"); + fontStyleCB.addItem("bold"); + fontStyleCB.addItem("italic"); - if (string != null) - { - showFullscreen = Boolean.valueOf(string).booleanValue(); - } + fontNameCB.setSelectedItem(Cache.getDefault("FONT_NAME", "SansSerif")); + fontSizeCB.setSelectedItem(Cache.getDefault("FONT_SIZE", "10")); + fontStyleCB.setSelectedItem(Cache.getDefault("FONT_STYLE", Font.PLAIN + "") ); - string = Cache.getProperty("SHOW_ANNOTATIONS"); + smoothFont.setSelected(Cache.getDefault("ANTI_ALIAS", false)); - if (string != null) - { - showAnnotation = Boolean.valueOf(string).booleanValue(); - } + wrap.setSelected(Cache.getDefault("WRAP_ALIGNMENT", false)); - string = Cache.getProperty("SHOW_CONSERVATION"); + gapSymbolCB.addItem("-"); + gapSymbolCB.addItem("."); - if (string != null) - { - showConservation = Boolean.valueOf(string).booleanValue(); - } + gapSymbolCB.setSelectedItem( Cache.getDefault("GAP_SYMBOL", "-")); - string = Cache.getProperty("SHOW_QUALITY"); + startupCheckbox.setSelected( Cache.getDefault("SHOW_STARTUP_FILE", true) ); + startupFileTextfield.setText(Cache.getDefault("STARTUP_FILE", + "http://www.jalview.org/examples/exampleFile.jar")); - if (string != null) - { - showQuality = Boolean.valueOf(string).booleanValue(); - } + sortby.addItem("No sort"); + sortby.addItem("Id"); + sortby.addItem("Pairwise Identity"); + sortby.setSelectedItem( Cache.getDefault("SORT_ALIGNMENT", "No sort") ); - string = Cache.getProperty("SHOW_IDENTITY"); + epsRendering.addItem("Prompt each time"); + epsRendering.addItem("Lineart"); + epsRendering.addItem("Text"); + epsRendering.setSelectedItem( Cache.getDefault("EPS_RENDERING", "Prompt each time")); - if (string != null) - { - showIdentity = Boolean.valueOf(string).booleanValue(); - } + blcjv.setSelected( Cache.getDefault("BLC_JVSUFFIX", true) ); + clustaljv.setSelected( Cache.getDefault("CLUSTAL_JVSUFFIX", true) ); + fastajv.setSelected( Cache.getDefault("FASTA_JVSUFFIX", true) ); + msfjv.setSelected( Cache.getDefault("MSF_JVSUFFIX", true) ); + pfamjv.setSelected( Cache.getDefault("PFAM_JVSUFFIX", true) ); + pileupjv.setSelected( Cache.getDefault("PILEUP_JVSUFFIX", true) ); + pirjv.setSelected( Cache.getDefault("PIR_JVSUFFIX", true) ); - string = Cache.getProperty("GAP_SYMBOL"); + modellerOutput.setSelected( Cache.getDefault("PIR_MODELLER", false)); - if (string != null) - { - gapSymbol = string.charAt(0); - } + autoCalculateConsCheck.setSelected( Cache.getDefault("AUTO_CALC_CONSENSUS", true)); + padGaps.setSelected( Cache.getDefault("PAD_GAPS", false)); - string = Cache.getProperty("SHOW_FULL_ID"); + /**************************************************** + * Set up Connections + */ + nameLinks = new Vector(); + urlLinks = new Vector(); + 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.applicationProperties.setProperty("BLC_JVSUFFIX", Boolean.toString(blcjv.isSelected()) ); + Cache.applicationProperties.setProperty("CLUSTAL_JVSUFFIX", Boolean.toString(clustaljv.isSelected()) ); + Cache.applicationProperties.setProperty("FASTA_JVSUFFIX", Boolean.toString(fastajv.isSelected()) ); + Cache.applicationProperties.setProperty("MSF_JVSUFFIX", Boolean.toString(msfjv.isSelected()) ); + Cache.applicationProperties.setProperty("PFAM_JVSUFFIX", Boolean.toString(pfamjv.isSelected()) ); + Cache.applicationProperties.setProperty("PILEUP_JVSUFFIX", Boolean.toString(pileupjv.isSelected()) ); + Cache.applicationProperties.setProperty("PIR_JVSUFFIX", Boolean.toString(pirjv.isSelected()) ); + Cache.applicationProperties.setProperty("PIR_MODELLER", Boolean.toString(modellerOutput.isSelected()) ); + jalview.io.PIRFile.useModellerOutput = modellerOutput.isSelected(); + + Cache.applicationProperties.setProperty("AUTO_CALC_CONSENSUS", + Boolean.toString(autoCalculateConsCheck.isSelected())); + Cache.applicationProperties.setProperty("PAD_GAPS", + Boolean.toString(padGaps.isSelected())); + + dasSource.saveProperties(Cache.applicationProperties); + + Cache.saveProperties(); + try + { + frame.setClosed(true); + } + catch (Exception ex) + { + } } - 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()); + } } - } - public void startupFileTextfield_mouseClicked() - { - JalviewFileChooser chooser = new JalviewFileChooser(jalview.bin.Cache. - getProperty( - "LAST_DIRECTORY"), - new String[] + /** + * DOCUMENT ME! + * + * @param e DOCUMENT ME! + */ + public void cancel_actionPerformed(ActionEvent e) + { + try { - "fa, fasta, fastq", "aln", "pfam", "msf", "pir", "blc", - "jar" - }, - new String[] + frame.setClosed(true); + } + catch (Exception ex) { - "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) + /** + * DOCUMENT ME! + * + * @param e DOCUMENT ME! + */ + public void annotations_actionPerformed(ActionEvent e) { - jalview.bin.Cache.setProperty("DEFAULT_FILE_FORMAT", - chooser.getSelectedFormat()); - startupFileTextfield.setText(chooser.getSelectedFile() - .getAbsolutePath()); + conservation.setEnabled(annotations.isSelected()); + quality.setEnabled(annotations.isSelected()); + identity.setEnabled(annotations.isSelected()); } - } - public void cancel_actionPerformed(ActionEvent e) - { - try - { - frame.setClosed(true); + + 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; + } } - catch (Exception ex) + + 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 annotations_actionPerformed(ActionEvent e) + private void jbInit() + throws Exception { - conservation.setEnabled(annotations.isSelected()); - quality.setEnabled(annotations.isSelected()); - identity.setEnabled(annotations.isSelected()); } }