X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fjbgui%2FGCutAndPasteHtmlTransfer.java;h=5a0a698d3fcd468613e5f6456cef1ce25c681505;hb=c19d2a91ca05e052e3408bf5852d88eb5d0608f1;hp=6627029a251515f9bc196372df0436a06a88c635;hpb=87dc20d03f1d296ba1daea8983f0f28b5974626c;p=jalview.git diff --git a/src/jalview/jbgui/GCutAndPasteHtmlTransfer.java b/src/jalview/jbgui/GCutAndPasteHtmlTransfer.java index 6627029..5a0a698 100644 --- a/src/jalview/jbgui/GCutAndPasteHtmlTransfer.java +++ b/src/jalview/jbgui/GCutAndPasteHtmlTransfer.java @@ -1,28 +1,44 @@ /* - * Jalview - A Sequence Alignment Editor and Viewer (Version 2.7) - * Copyright (C) 2011 J Procter, AM Waterhouse, J Engelhardt, LM Lui, G Barton, M Clamp, S Searle + * Jalview - A Sequence Alignment Editor and Viewer (Version 2.9.0b2) + * Copyright (C) 2015 The Jalview Authors * * This file is part of Jalview. * * Jalview 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 3 of the License, or (at your option) any later version. - * + * as published by the Free Software Foundation, either version 3 + * of the License, or (at your option) any later version. + * * Jalview 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 Jalview. If not, see . + * You should have received a copy of the GNU General Public License + * along with Jalview. If not, see . + * The Jalview Authors are detailed in the 'AUTHORS' file. */ package jalview.jbgui; import jalview.gui.JvSwingUtils; +import jalview.util.MessageManager; -import java.awt.*; -import java.awt.event.*; +import java.awt.BorderLayout; +import java.awt.Font; +import java.awt.Toolkit; +import java.awt.event.ActionEvent; +import java.awt.event.ActionListener; +import java.awt.event.MouseEvent; -import javax.swing.*; +import javax.swing.JButton; +import javax.swing.JCheckBoxMenuItem; +import javax.swing.JEditorPane; +import javax.swing.JInternalFrame; +import javax.swing.JMenu; +import javax.swing.JMenuBar; +import javax.swing.JMenuItem; +import javax.swing.JPanel; +import javax.swing.JScrollPane; /** * DOCUMENT ME! @@ -32,7 +48,7 @@ import javax.swing.*; */ public class GCutAndPasteHtmlTransfer extends JInternalFrame { - protected JEditorPane textarea = new JEditorPane("text/html",""); + protected JEditorPane textarea = new JEditorPane("text/html", ""); protected JScrollPane scrollPane = new JScrollPane(); @@ -43,7 +59,8 @@ public class GCutAndPasteHtmlTransfer extends JInternalFrame JMenu editMenu = new JMenu(); JMenuItem copyItem = new JMenuItem(); - protected JCheckBoxMenuItem displaySource=new JCheckBoxMenuItem(); + + protected JCheckBoxMenuItem displaySource = new JCheckBoxMenuItem(); BorderLayout borderLayout2 = new BorderLayout(); @@ -86,7 +103,7 @@ public class GCutAndPasteHtmlTransfer extends JInternalFrame { scrollPane.setBorder(null); ok.setFont(JvSwingUtils.getLabelFont()); - ok.setText("New Window"); + ok.setText(MessageManager.getString("label.new_window")); ok.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) @@ -94,7 +111,7 @@ public class GCutAndPasteHtmlTransfer extends JInternalFrame ok_actionPerformed(e); } }); - cancel.setText("Close"); + cancel.setText(MessageManager.getString("action.close")); cancel.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) @@ -103,8 +120,9 @@ public class GCutAndPasteHtmlTransfer extends JInternalFrame } }); textarea.setBorder(null); - close.setText("Close"); - close.addActionListener(new ActionListener() { + close.setText(MessageManager.getString("action.close")); + close.addActionListener(new ActionListener() + { public void actionPerformed(ActionEvent e) { cancel_actionPerformed(e); @@ -112,8 +130,8 @@ public class GCutAndPasteHtmlTransfer extends JInternalFrame }); close.setAccelerator(javax.swing.KeyStroke.getKeyStroke( java.awt.event.KeyEvent.VK_W, Toolkit.getDefaultToolkit() - .getMenuShortcutKeyMask(), false)); - selectAll.setText("Select All"); + .getMenuShortcutKeyMask(), false)); + selectAll.setText(MessageManager.getString("action.select_all")); selectAll.setAccelerator(javax.swing.KeyStroke.getKeyStroke( java.awt.event.KeyEvent.VK_A, Toolkit.getDefaultToolkit() .getMenuShortcutKeyMask(), false)); @@ -124,8 +142,8 @@ public class GCutAndPasteHtmlTransfer extends JInternalFrame selectAll_actionPerformed(e); } }); - jMenu1.setText("File"); - save.setText("Save"); + jMenu1.setText(MessageManager.getString("action.file")); + save.setText(MessageManager.getString("action.save")); save.setAccelerator(javax.swing.KeyStroke.getKeyStroke( java.awt.event.KeyEvent.VK_S, Toolkit.getDefaultToolkit() .getMenuShortcutKeyMask(), false)); @@ -139,7 +157,7 @@ public class GCutAndPasteHtmlTransfer extends JInternalFrame copyItem.setAccelerator(javax.swing.KeyStroke.getKeyStroke( java.awt.event.KeyEvent.VK_C, Toolkit.getDefaultToolkit() .getMenuShortcutKeyMask(), false)); - + editMenubar.add(jMenu1); editMenubar.add(editMenu); textarea.setFont(new java.awt.Font("Monospaced", Font.PLAIN, 12)); @@ -150,8 +168,8 @@ public class GCutAndPasteHtmlTransfer extends JInternalFrame textarea_mousePressed(e); } }); - editMenu.setText("Edit"); - copyItem.setText("Copy"); + editMenu.setText(MessageManager.getString("action.edit")); + copyItem.setText(MessageManager.getString("action.copy")); copyItem.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) @@ -159,11 +177,13 @@ public class GCutAndPasteHtmlTransfer extends JInternalFrame copyItem_actionPerformed(e); } }); - displaySource.setText("Show HTML Source"); - displaySource.setToolTipText("Select this if you want to copy raw html"); + displaySource.setText(MessageManager + .getString("action.show_html_source")); + displaySource.setToolTipText(MessageManager + .getString("label.select_copy_raw_html")); displaySource.addActionListener(new ActionListener() { - + @Override public void actionPerformed(ActionEvent arg0) { @@ -186,7 +206,7 @@ public class GCutAndPasteHtmlTransfer extends JInternalFrame protected void toggleHtml_actionPerformed(ActionEvent arg0) { // TODO Auto-generated method stub - + } /** @@ -210,7 +230,6 @@ public class GCutAndPasteHtmlTransfer extends JInternalFrame { } - /** * DOCUMENT ME! *