Java tutorial
/* Copyright (C) 2003-2011 JabRef contributors. 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 net.sf.jabref.external; import java.io.IOException; import javax.swing.*; import net.sf.jabref.*; import com.jgoodies.forms.builder.DefaultFormBuilder; import com.jgoodies.forms.layout.FormLayout; public class PushToWinEdt implements PushToApplication { private boolean couldNotCall = false; private boolean notDefined = false; private JPanel settings = null; private final JTextField winEdtPath = new JTextField(30); private final JTextField citeCommand = new JTextField(30); @Override public String getName() { return Globals.lang("Insert selected citations into WinEdt"); } @Override public String getApplicationName() { return "WinEdt"; } @Override public String getTooltip() { return Globals.lang("Push selection to WinEdt"); } @Override public Icon getIcon() { return GUIGlobals.getImage("winedt"); } @Override public String getKeyStrokeName() { return "Push to WinEdt"; } @Override public void pushEntries(BibtexDatabase database, BibtexEntry[] entries, String keyString, MetaData metaData) { couldNotCall = false; notDefined = false; String winEdt = Globals.prefs.get(JabRefPreferences.WIN_EDT_PATH); if ((winEdt == null) || (winEdt.trim().length() == 0)) { notDefined = true; return; } try { Runtime.getRuntime() .exec(new String[] { winEdt, "\"[InsText('" + Globals.prefs.get(JabRefPreferences.CITE_COMMAND_WIN_EDT) + "{" + keyString.replaceAll("'", "''") + "}');]\"" }); } catch (IOException excep) { couldNotCall = true; excep.printStackTrace(); } } @Override public void operationCompleted(BasePanel panel) { if (notDefined) { panel.output(Globals.lang("Error") + ": " + Globals.lang("Path to %0 not defined", getApplicationName()) + "."); } else if (couldNotCall) { panel.output(Globals.lang("Error") + ": " + Globals.lang("Could not call executable") + " '" + Globals.prefs.get(JabRefPreferences.WIN_EDT_PATH) + "'."); } else { Globals.lang("Pushed citations to WinEdt"); } } @Override public boolean requiresBibtexKeys() { return true; } @Override public JPanel getSettingsPanel() { if (settings == null) { initSettingsPanel(); } winEdtPath.setText(Globals.prefs.get(JabRefPreferences.WIN_EDT_PATH)); citeCommand.setText(Globals.prefs.get(JabRefPreferences.CITE_COMMAND_WIN_EDT)); return settings; } private void initSettingsPanel() { DefaultFormBuilder builder = new DefaultFormBuilder( new FormLayout("left:pref, 4dlu, fill:pref, 4dlu, fill:pref", "")); builder.append(new JLabel(Globals.lang("Path to WinEdt.exe") + ":")); builder.append(winEdtPath); BrowseAction action = BrowseAction.buildForFile(winEdtPath); JButton browse = new JButton(Globals.lang("Browse")); browse.addActionListener(action); builder.append(browse); builder.nextLine(); builder.append(Globals.lang("Cite command") + ":"); builder.append(citeCommand); settings = builder.getPanel(); } @Override public void storeSettings() { Globals.prefs.put(JabRefPreferences.WIN_EDT_PATH, winEdtPath.getText()); Globals.prefs.put(JabRefPreferences.CITE_COMMAND_WIN_EDT, citeCommand.getText()); } }