/jEdit/tags/jedit-4-4-1/org/gjt/sp/jedit/pluginmgr/InstallPanel.java
# · Java · 1154 lines · 935 code · 126 blank · 93 comment · 136 complexity · c7b78ada932ff8dab999dee805977f63 MD5 · raw file
- /*
- * InstallPanel.java - For installing plugins
- * :tabSize=8:indentSize=8:noTabs=false:
- * :folding=explicit:collapseFolds=1:
- *
- * Copyright (C) 2002 Kris Kopicki
- *
- * 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 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
- package org.gjt.sp.jedit.pluginmgr;
- //{{{ Imports
- import org.gjt.sp.jedit.*;
- import org.gjt.sp.jedit.browser.VFSBrowser;
- import org.gjt.sp.jedit.gui.RolloverButton;
- import org.gjt.sp.jedit.io.VFS;
- import org.gjt.sp.jedit.io.VFSManager;
- import org.gjt.sp.util.Log;
- import org.gjt.sp.util.StandardUtilities;
- import org.gjt.sp.util.ThreadUtilities;
- import org.gjt.sp.util.XMLUtilities;
- import org.xml.sax.Attributes;
- import org.xml.sax.SAXException;
- import org.xml.sax.helpers.DefaultHandler;
- import javax.swing.*;
- import javax.swing.border.EmptyBorder;
- import javax.swing.event.ListSelectionEvent;
- import javax.swing.event.ListSelectionListener;
- import javax.swing.event.TableModelEvent;
- import javax.swing.event.TableModelListener;
- import javax.swing.table.AbstractTableModel;
- import javax.swing.table.DefaultTableCellRenderer;
- import javax.swing.table.JTableHeader;
- import javax.swing.table.TableColumn;
- import javax.swing.text.html.HTMLEditorKit;
- import java.awt.*;
- import java.awt.event.*;
- import java.io.File;
- import java.io.InputStream;
- import java.text.NumberFormat;
- import java.text.ParseException;
- import java.text.SimpleDateFormat;
- import java.util.*;
- import java.util.List;
- //}}}
- /**
- * @version $Id: InstallPanel.java 18335 2010-08-12 09:25:34Z kpouer $
- */
- class InstallPanel extends JPanel implements EBComponent
- {
- //{{{ Variables
- private final JTable table;
- private JScrollPane scrollpane;
- private PluginTableModel pluginModel;
- private PluginManager window;
- private PluginInfoBox infoBox;
- private ChoosePluginSet chooseButton;
- private boolean updates;
- private final Set<String> pluginSet = new HashSet<String>();
- //}}}
- //{{{ InstallPanel constructor
- InstallPanel(PluginManager window, boolean updates)
- {
- super(new BorderLayout(12,12));
- this.window = window;
- this.updates = updates;
- setBorder(new EmptyBorder(12,12,12,12));
- final JSplitPane split = new JSplitPane(
- JSplitPane.VERTICAL_SPLIT, jEdit.getBooleanProperty("appearance.continuousLayout"));
- split.setResizeWeight(0.75);
- /* Setup the table */
- table = new JTable(pluginModel = new PluginTableModel());
- table.setShowGrid(false);
- table.setIntercellSpacing(new Dimension(0,0));
- table.setRowHeight(table.getRowHeight() + 2);
- table.setPreferredScrollableViewportSize(new Dimension(500,200));
- table.setDefaultRenderer(Object.class, new TextRenderer(
- (DefaultTableCellRenderer)table.getDefaultRenderer(Object.class)));
- table.addFocusListener(new TableFocusHandler());
- InputMap tableInputMap = table.getInputMap(JComponent.WHEN_FOCUSED);
- ActionMap tableActionMap = table.getActionMap();
- tableInputMap.put(KeyStroke.getKeyStroke(KeyEvent.VK_TAB,0),"tabOutForward");
- tableActionMap.put("tabOutForward",new KeyboardAction(KeyboardCommand.TAB_OUT_FORWARD));
- tableInputMap.put(KeyStroke.getKeyStroke(KeyEvent.VK_TAB,InputEvent.SHIFT_MASK),"tabOutBack");
- tableActionMap.put("tabOutBack",new KeyboardAction(KeyboardCommand.TAB_OUT_BACK));
- tableInputMap.put(KeyStroke.getKeyStroke(KeyEvent.VK_SPACE,0),"editPlugin");
- tableActionMap.put("editPlugin",new KeyboardAction(KeyboardCommand.EDIT_PLUGIN));
- tableInputMap.put(KeyStroke.getKeyStroke(KeyEvent.VK_ENTER,0),"closePluginManager");
- tableActionMap.put("closePluginManager",new KeyboardAction(KeyboardCommand.CLOSE_PLUGIN_MANAGER));
- TableColumn col1 = table.getColumnModel().getColumn(0);
- TableColumn col2 = table.getColumnModel().getColumn(1);
- TableColumn col3 = table.getColumnModel().getColumn(2);
- TableColumn col4 = table.getColumnModel().getColumn(3);
- TableColumn col5 = table.getColumnModel().getColumn(4);
- col1.setPreferredWidth(30);
- col1.setMinWidth(30);
- col1.setMaxWidth(30);
- col1.setResizable(false);
- col2.setPreferredWidth(180);
- col3.setPreferredWidth(130);
- col4.setPreferredWidth(70);
- col5.setPreferredWidth(70);
- JTableHeader header = table.getTableHeader();
- header.setReorderingAllowed(false);
- header.addMouseListener(new HeaderMouseHandler());
- header.setDefaultRenderer(new HeaderRenderer(
- (DefaultTableCellRenderer)header.getDefaultRenderer()));
- scrollpane = new JScrollPane(table);
- scrollpane.getViewport().setBackground(table.getBackground());
- split.setTopComponent(scrollpane);
- /* Create description */
- JScrollPane infoPane = new JScrollPane(
- infoBox = new PluginInfoBox());
- infoPane.setPreferredSize(new Dimension(500,100));
- split.setBottomComponent(infoPane);
- SwingUtilities.invokeLater(new Runnable()
- {
- public void run()
- {
- split.setDividerLocation(0.75);
- }
- });
- add(BorderLayout.CENTER,split);
- /* Create buttons */
- Box buttons = new Box(BoxLayout.X_AXIS);
- buttons.add(new InstallButton());
- buttons.add(Box.createHorizontalStrut(12));
- buttons.add(new SelectallButton());
- buttons.add(chooseButton = new ChoosePluginSet());
- buttons.add(new ClearPluginSet());
- buttons.add(Box.createGlue());
- buttons.add(new SizeLabel());
- add(BorderLayout.SOUTH,buttons);
- String path = jEdit.getProperty(PluginManager.PROPERTY_PLUGINSET, "");
- if (!path.equals(""))
- {
- loadPluginSet(path);
- }
- } //}}}
- //{{{ loadPluginSet() method
- /** loads a pluginSet xml file and updates the model to reflect
- certain checked selections
- @since jEdit 4.3pre10
- @author Alan Ezust
- */
- boolean loadPluginSet(String path)
- {
- pluginSet.clear();
- pluginModel.restoreSelection(new HashSet<String>(), new HashSet<String>());
- VFS vfs = VFSManager.getVFSForPath(path);
- Object session = vfs.createVFSSession(path, InstallPanel.this);
- try
- {
- InputStream is = vfs._createInputStream(session, path, false, InstallPanel.this);
- XMLUtilities.parseXML(is, new StringMapHandler());
- }
- catch (Exception e)
- {
- Log.log(Log.WARNING, this, "Loading Pluginset failed:" + e.getMessage());
- return false;
- }
- pluginModel.update();
- return true;
- } //}}}
- //{{{ updateModel() method
- public void updateModel()
- {
- final Set<String> savedChecked = new HashSet<String>();
- final Set<String> savedSelection = new HashSet<String>();
- pluginModel.saveSelection(savedChecked, savedSelection);
- pluginModel.clear();
- infoBox.setText(jEdit.getProperty("plugin-manager.list-download"));
- ThreadUtilities.runInDispatchThread(new Runnable()
- {
- public void run()
- {
- infoBox.setText(null);
- pluginModel.update();
- pluginModel.restoreSelection(savedChecked, savedSelection);
- }
- });
- } //}}}
- //{{{ handleMessage() method
- public void handleMessage(EBMessage message)
- {
- if (message.getSource() == PluginManager.getInstance())
- {
- chooseButton.path = jEdit.getProperty(PluginManager.PROPERTY_PLUGINSET, "");
- if (chooseButton.path.length() > 0)
- {
- loadPluginSet(chooseButton.path);
- pluginModel.restoreSelection(new HashSet<String>(), new HashSet<String>());
- chooseButton.updateUI();
- }
- }
- } //}}}
- //{{{ Private members
- //{{{ formatSize() method
- private static String formatSize(int size)
- {
- NumberFormat df = NumberFormat.getInstance();
- df.setMaximumFractionDigits(1);
- df.setMinimumFractionDigits(0);
- String sizeText;
- if (size < 1048576)
- sizeText = (size >> 10) + "KB";
- else
- sizeText = df.format(size/ 1048576.0d) + "MB";
- return sizeText;
- } //}}}
- //}}}
- //{{{ Inner classes
- //{{{ PluginTableModel class
- private class PluginTableModel extends AbstractTableModel
- {
- /** This List can contain String or Entry. */
- private List entries = new ArrayList();
- private int sortType = EntryCompare.COLUMN_NAME;
- int sortDirection = 1;
- //{{{ getColumnClass() method
- @Override
- public Class getColumnClass(int columnIndex)
- {
- switch (columnIndex)
- {
- case 0: return Boolean.class;
- case 1:
- case 2:
- case 3:
- case 4:
- case 5: return Object.class;
- default: throw new Error("Column out of range");
- }
- } //}}}
- //{{{ getColumnCount() method
- public int getColumnCount()
- {
- return 6;
- } //}}}
- //{{{ getColumnName() method
- @Override
- public String getColumnName(int column)
- {
- switch (column)
- {
- case 0: return " ";
- case 1: return ' '+jEdit.getProperty("install-plugins.info.name");
- case 2: return ' '+jEdit.getProperty("install-plugins.info.category");
- case 3: return ' '+jEdit.getProperty("install-plugins.info.version");
- case 4: return ' '+jEdit.getProperty("install-plugins.info.size");
- case 5: return ' '+jEdit.getProperty("install-plugins.info.releaseDate");
- default: throw new Error("Column out of range");
- }
- } //}}}
- //{{{ getRowCount() method
- public int getRowCount()
- {
- return entries.size();
- } //}}}
- //{{{ getValueAt() method
- public Object getValueAt(int rowIndex,int columnIndex)
- {
- Object obj = entries.get(rowIndex);
- if(obj instanceof String)
- {
- if(columnIndex == 1)
- return obj;
- else
- return null;
- }
- else
- {
- Entry entry = (Entry)obj;
- switch (columnIndex)
- {
- case 0:
- return entry.install;
- case 1:
- return entry.name;
- case 2:
- return entry.set;
- case 3:
- if (updates)
- return entry.installedVersion + "->" + entry.version;
- return entry.version;
- case 4:
- return formatSize(entry.size);
- case 5:
- return entry.date;
- default:
- throw new Error("Column out of range");
- }
- }
- } //}}}
- //{{{ isCellEditable() method
- @Override
- public boolean isCellEditable(int rowIndex, int columnIndex)
- {
- return columnIndex == 0;
- } //}}}
- //{{{ setSelectAll() method
- public void setSelectAll(boolean b)
- {
- if(isDownloadingList())
- return;
- int length = getRowCount();
- for (int i = 0; i < length; i++)
- {
- if (b)
- setValueAt(Boolean.TRUE,i,0);
- else
- {
- Entry entry = (Entry)entries.get(i);
- entry.parents = new LinkedList<Entry>();
- entry.install = false;
- }
- }
- fireTableChanged(new TableModelEvent(this));
- } //}}}
- //{{{ setSortType() method
- public void setSortType(int type)
- {
- sortType = type;
- sort(type);
- } //}}}
- //{{{ deselectParents() method
- private void deselectParents(Entry entry)
- {
- Entry[] parents = entry.getParents();
- if (parents.length == 0)
- return;
- String[] args = { entry.name };
- int result = GUIUtilities.listConfirm(
- window,"plugin-manager.dependency",
- args,parents);
- if (result != JOptionPane.OK_OPTION)
- {
- entry.install = true;
- return;
- }
- for(int i = 0; i < parents.length; i++)
- parents[i].install = false;
- fireTableRowsUpdated(0,getRowCount() - 1);
- } //}}}
- //{{{ setValueAt() method
- @Override
- public void setValueAt(Object aValue, int row, int column)
- {
- if (column != 0) return;
- Object obj = entries.get(row);
- if(obj instanceof String)
- return;
- Entry entry = (Entry)obj;
- boolean before = entry.install;
- entry.install = Boolean.TRUE.equals(aValue);
- if (before == entry.install) return;
- if (!entry.install)
- deselectParents(entry);
- List<PluginList.Dependency> deps = entry.plugin.getCompatibleBranch().deps;
- for (int i = 0; i < deps.size(); i++)
- {
- PluginList.Dependency dep = deps.get(i);
- if (dep.what.equals("plugin"))
- {
- for (int j = 0; j < entries.size(); j++)
- {
- Entry temp = (Entry)entries.get(j);
- if (temp.plugin == dep.plugin)
- {
- if (entry.install)
- {
- temp.parents.add(entry);
- setValueAt(Boolean.TRUE,j,0);
- }
- else
- temp.parents.remove(entry);
- }
- }
- }
- }
- fireTableCellUpdated(row,column);
- } //}}}
- //{{{ sort() method
- public void sort(int type)
- {
- Set<String> savedChecked = new HashSet<String>();
- Set<String> savedSelection = new HashSet<String>();
- saveSelection(savedChecked,savedSelection);
- if (sortType != type)
- {
- sortDirection = 1;
- }
- sortType = type;
- if(isDownloadingList())
- return;
- Collections.sort(entries,new EntryCompare(type, sortDirection));
- fireTableChanged(new TableModelEvent(this));
- restoreSelection(savedChecked,savedSelection);
- table.getTableHeader().repaint();
- }
- //}}}
- //{{{ isDownloadingList() method
- private boolean isDownloadingList()
- {
- return entries.size() == 1 && entries.get(0) instanceof String;
- } //}}}
- //{{{ clear() method
- public void clear()
- {
- entries = new ArrayList();
- fireTableChanged(new TableModelEvent(this));
- } //}}}
- //{{{ update() method
- public void update()
- {
- Set<String> savedChecked = new HashSet<String>();
- Set<String> savedSelection = new HashSet<String>();
- saveSelection(savedChecked,savedSelection);
- PluginList pluginList = window.getPluginList();
- if (pluginList == null) return;
- entries = new ArrayList();
- for(int i = 0; i < pluginList.pluginSets.size(); i++)
- {
- PluginList.PluginSet set = pluginList.pluginSets.get(i);
- for(int j = 0; j < set.plugins.size(); j++)
- {
- PluginList.Plugin plugin = pluginList.pluginHash.get(set.plugins.get(j));
- PluginList.Branch branch = plugin.getCompatibleBranch();
- String installedVersion =
- plugin.getInstalledVersion();
- if (updates)
- {
- if(branch != null
- && branch.canSatisfyDependencies()
- && installedVersion != null
- && StandardUtilities.compareStrings(branch.version,
- installedVersion,false) > 0)
- {
- entries.add(new Entry(plugin, set.name));
- }
- }
- else
- {
- if(installedVersion == null && plugin.canBeInstalled())
- entries.add(new Entry(plugin,set.name));
- }
- }
- }
- sort(sortType);
- fireTableChanged(new TableModelEvent(this));
- restoreSelection(savedChecked, savedSelection);
- } //}}}
- //{{{ saveSelection() method
- public void saveSelection(Set<String> savedChecked, Set<String> savedSelection)
- {
- if (entries.isEmpty())
- return;
- for (int i=0, c=getRowCount() ; i<c ; i++)
- {
- if ((Boolean)getValueAt(i,0))
- {
- savedChecked.add(entries.get(i).toString());
- }
- }
- int[] rows = table.getSelectedRows();
- for (int i=0 ; i<rows.length ; i++)
- {
- savedSelection.add(entries.get(rows[i]).toString());
- }
- } //}}}
- //{{{ restoreSelection() method
- public void restoreSelection(Set<String> savedChecked, Set<String> savedSelection)
- {
- for (int i=0, c=getRowCount() ; i<c ; i++)
- {
- Object obj = entries.get(i);
- String name = obj.toString();
- if (obj instanceof Entry) {
- name = ((Entry)obj).plugin.jar;
- }
- if (pluginSet.contains(name))
- setValueAt(true, i, 0);
- else setValueAt(savedChecked.contains(name), i, 0);
- }
- if (table == null) return;
-
- table.setColumnSelectionInterval(0,0);
- if (!savedSelection.isEmpty())
- {
- int i = 0;
- int rowCount = getRowCount();
- for ( ; i<rowCount ; i++)
- {
- String name = entries.get(i).toString();
- if (savedSelection.contains(name))
- {
- table.setRowSelectionInterval(i,i);
- break;
- }
- }
- ListSelectionModel lsm = table.getSelectionModel();
- for ( ; i<rowCount ; i++)
- {
- String name = entries.get(i).toString();
- if (savedSelection.contains(name))
- {
- lsm.addSelectionInterval(i,i);
- }
- }
- }
- else
- {
- if (table.getRowCount() != 0)
- table.setRowSelectionInterval(0,0);
- JScrollBar scrollbar = scrollpane.getVerticalScrollBar();
- scrollbar.setValue(scrollbar.getMinimum());
- }
- } //}}}
- } //}}}
- //{{{ Entry class
- private static class Entry
- {
- String name, installedVersion, version, author, date, description, set;
- long timestamp;
- int size;
- boolean install;
- PluginList.Plugin plugin;
- List<Entry> parents = new LinkedList<Entry>();
- Entry(PluginList.Plugin plugin, String set)
- {
- PluginList.Branch branch = plugin.getCompatibleBranch();
- boolean downloadSource = jEdit.getBooleanProperty("plugin-manager.downloadSource");
- int size = downloadSource ? branch.downloadSourceSize : branch.downloadSize;
- this.name = plugin.name;
- this.author = plugin.author;
- this.installedVersion = plugin.getInstalledVersion();
- this.version = branch.version;
- this.size = size;
- this.date = branch.date;
- this.description = plugin.description;
- this.set = set;
- this.install = false;
- this.plugin = plugin;
- SimpleDateFormat format = new SimpleDateFormat("d MMMM yyyy", Locale.ENGLISH);
- try
- {
- timestamp = format.parse(date).getTime();
- }
- catch (ParseException e)
- {
- Log.log(Log.ERROR, this, e);
- }
- }
- private void getParents(List<Entry> list)
- {
- for (Entry entry : parents)
- {
- if (entry.install && !list.contains(entry))
- {
- list.add(entry);
- entry.getParents(list);
- }
- }
- }
- Entry[] getParents()
- {
- List<Entry> list = new ArrayList<Entry>();
- getParents(list);
- Entry[] array = list.toArray(new Entry[list.size()]);
- Arrays.sort(array,new StandardUtilities.StringCompare<Entry>(true));
- return array;
- }
- @Override
- public String toString()
- {
- return name;
- }
- } //}}}
- //{{{ PluginInfoBox class
- /**
- * @TODO refactor to use the PluginDetailPanel?
- */
- private class PluginInfoBox extends JTextPane implements ListSelectionListener
- {
- private final String[] params;
- PluginInfoBox()
- {
- setBackground(jEdit.getColorProperty("view.bgColor"));
- setForeground(jEdit.getColorProperty("view.fgColor"));
- putClientProperty(JEditorPane.HONOR_DISPLAY_PROPERTIES, true);
- setEditable(false);
- setEditorKit(new HTMLEditorKit());
- // setLineWrap(true);
- // setWrapStyleWord(true);
- params = new String[3];
- table.getSelectionModel().addListSelectionListener(this);
- }
- public void valueChanged(ListSelectionEvent e)
- {
- String text = "";
- if (table.getSelectedRowCount() == 1)
- {
- Entry entry = (Entry) pluginModel.entries
- .get(table.getSelectedRow());
- params[0] = entry.author;
- params[1] = entry.date;
- params[2] = entry.description;
- text = jEdit.getProperty("install-plugins.info", params);
- text = text.replace("\n", "<br>");
- text = "<html>" + text + "</html>";
- }
- setText(text);
- setCaretPosition(0);
- }
- } //}}}
- //{{{ SizeLabel class
- private class SizeLabel extends JLabel implements TableModelListener
- {
- private int size;
- SizeLabel()
- {
- size = 0;
- setText(jEdit.getProperty("install-plugins.totalSize")+formatSize(size));
- pluginModel.addTableModelListener(this);
- }
- public void tableChanged(TableModelEvent e)
- {
- if (e.getType() == TableModelEvent.UPDATE)
- {
- if(pluginModel.isDownloadingList())
- return;
- size = 0;
- int length = pluginModel.getRowCount();
- for (int i = 0; i < length; i++)
- {
- Entry entry = (Entry)pluginModel
- .entries.get(i);
- if (entry.install)
- size += entry.size;
- }
- setText(jEdit.getProperty("install-plugins.totalSize")+formatSize(size));
- }
- }
- } //}}}
- //{{{ SelectallButton class
- private class SelectallButton extends JCheckBox implements ActionListener, TableModelListener
- {
- SelectallButton()
- {
- super(jEdit.getProperty("install-plugins.select-all"));
- addActionListener(this);
- pluginModel.addTableModelListener(this);
- setEnabled(false);
- }
- public void actionPerformed(ActionEvent evt)
- {
- pluginModel.setSelectAll(isSelected());
- }
- public void tableChanged(TableModelEvent e)
- {
- if(pluginModel.isDownloadingList())
- return;
- setEnabled(pluginModel.getRowCount() != 0);
- if (e.getType() == TableModelEvent.UPDATE)
- {
- int length = pluginModel.getRowCount();
- for (int i = 0; i < length; i++)
- if (!((Boolean)pluginModel.getValueAt(i,0)).booleanValue())
- {
- setSelected(false);
- return;
- }
- if (length > 0)
- setSelected(true);
- }
- }
- } //}}}
- //{{{ StringMapHandler class
- /** For parsing the pluginset xml files into pluginSet */
- private class StringMapHandler extends DefaultHandler
- {
- StringMapHandler()
- {
- pluginSet.clear();
- }
- @Override
- public void startElement(String uri, String localName, String qName, Attributes attrs) throws SAXException
- {
- if (localName.equals("plugin"))
- {
- pluginSet.add(attrs.getValue("jar"));
- }
- }
- } //}}}
- //{{{ ChoosePluginSet class
- private class ChoosePluginSet extends RolloverButton implements ActionListener
- {
- private String path;
- //{{{ ChoosePluginSet constructor
- ChoosePluginSet()
- {
- setIcon(GUIUtilities.loadIcon(jEdit.getProperty("install-plugins.choose-plugin-set.icon")));
- addActionListener(this);
- updateUI();
- } //}}}
- //{{{ updateUI method
- @Override
- public void updateUI()
- {
- path = jEdit.getProperty(PluginManager.PROPERTY_PLUGINSET, "");
- if (path.length()<1) setToolTipText ("Click here to choose a predefined plugin set");
- else setToolTipText ("Choose pluginset (" + path + ')');
- super.updateUI();
- }//}}}
- //{{{ actionPerformed() method
- public void actionPerformed(ActionEvent ae)
- {
-
- path = jEdit.getProperty(PluginManager.PROPERTY_PLUGINSET,
- jEdit.getSettingsDirectory() + File.separator);
- String[] selectedFiles = GUIUtilities.showVFSFileDialog(InstallPanel.this.window,
- jEdit.getActiveView(), path, VFSBrowser.OPEN_DIALOG, false);
- if (selectedFiles == null || selectedFiles.length != 1) return;
- path = selectedFiles[0];
- boolean success = loadPluginSet(path);
- if (success)
- {
- jEdit.setProperty(PluginManager.PROPERTY_PLUGINSET, path);
- }
- updateUI();
- } //}}}
- }//}}}
- //{{{ ClearPluginSet class
- private class ClearPluginSet extends RolloverButton implements ActionListener
- {
- //{{{ ClearPluginSet constructor
- ClearPluginSet()
- {
- setIcon(GUIUtilities.loadIcon(jEdit.getProperty("install-plugins.clear-plugin-set.icon")));
- setToolTipText("clear plugin set");
- addActionListener(this);
- } //}}}
- //{{{ actionPerformed() method
- public void actionPerformed(ActionEvent e)
- {
- pluginSet.clear();
- pluginModel.restoreSelection(new HashSet<String>(), new HashSet<String>());
- jEdit.unsetProperty(PluginManager.PROPERTY_PLUGINSET);
- chooseButton.updateUI();
- } //}}}
- } //}}}
- //{{{ InstallButton class
- private class InstallButton extends JButton implements ActionListener, TableModelListener
- {
- InstallButton()
- {
- super(jEdit.getProperty("install-plugins.install"));
- pluginModel.addTableModelListener(this);
- addActionListener(this);
- setEnabled(false);
- }
- public void actionPerformed(ActionEvent evt)
- {
- if(pluginModel.isDownloadingList())
- return;
- boolean downloadSource = jEdit.getBooleanProperty(
- "plugin-manager.downloadSource");
- boolean installUser = jEdit.getBooleanProperty(
- "plugin-manager.installUser");
- Roster roster = new Roster();
- String installDirectory;
- if(installUser)
- {
- installDirectory = MiscUtilities.constructPath(
- jEdit.getSettingsDirectory(),"jars");
- }
- else
- {
- installDirectory = MiscUtilities.constructPath(
- jEdit.getJEditHome(),"jars");
- }
- int length = pluginModel.getRowCount();
- int instcount = 0;
- for (int i = 0; i < length; i++)
- {
- Entry entry = (Entry)pluginModel.entries.get(i);
- if (entry.install)
- {
- entry.plugin.install(roster,installDirectory,downloadSource);
- if (updates)
- entry.plugin.getCompatibleBranch().satisfyDependencies(
- roster,installDirectory,downloadSource);
- instcount++;
- }
- }
- if(roster.isEmpty())
- return;
- boolean cancel = false;
- if (updates && roster.getOperationCount() > instcount)
- if (GUIUtilities.confirm(window,
- "install-plugins.depend",
- null,
- JOptionPane.OK_CANCEL_OPTION,
- JOptionPane.WARNING_MESSAGE) == JOptionPane.CANCEL_OPTION)
- cancel = true;
- if (!cancel)
- {
- new PluginManagerProgress(window,roster);
- roster.performOperationsInAWTThread(window);
- pluginModel.update();
- }
- }
- public void tableChanged(TableModelEvent e)
- {
- if(pluginModel.isDownloadingList())
- return;
- if (e.getType() == TableModelEvent.UPDATE)
- {
- int length = pluginModel.getRowCount();
- for (int i = 0; i < length; i++)
- if (((Boolean)pluginModel.getValueAt(i,0)).booleanValue())
- {
- setEnabled(true);
- return;
- }
- setEnabled(false);
- }
- }
- } //}}}
- //{{{ EntryCompare class
- private static class EntryCompare implements Comparator<Entry>
- {
- private static final int COLUMN_INSTALL = 0;
- private static final int COLUMN_NAME = 1;
- private static final int COLUMN_CATEGORY = 2;
- private static final int COLUMN_VERSION = 3;
- private static final int COLUMN_SIZE = 4;
- private static final int COLUMN_RELEASE = 5;
- private int type;
- /** 1=up, -1=down */
- private int sortDirection;
- EntryCompare(int type, int sortDirection)
- {
- this.type = type;
- this.sortDirection = sortDirection;
- }
- public int compare(Entry e1, Entry e2)
- {
- int result;
- switch (type)
- {
- case COLUMN_INSTALL:
- result = (e1.install == e2.install) ? 0 : (e1.install ? 1 : -1);
- break;
- case COLUMN_NAME:
- result = e1.name.compareToIgnoreCase(e2.name);
- break;
- case COLUMN_CATEGORY:
- result = e1.set.compareToIgnoreCase(e2.set);
- if (result == 0)
- {
- result = e1.name.compareToIgnoreCase(e2.name);
- }
- break;
- case COLUMN_VERSION:
- // lets avoid NPE. Maybe we should move
- // this code to StandardUtilities.compareStrings
- if (e1.version == e2.version)
- {
- result = 0;
- }
- else if (e1.version == null)
- {
- result = -1;
- }
- else if(e2.version == null)
- {
- result = 1;
- }
- else
- {
- result = StandardUtilities.compareStrings(e1.version,
- e2.version,
- true);
- }
- break;
- case COLUMN_SIZE:
- result = (e1.size < e2.size)
- ? -1
- : ((e1.size == e2.size)
- ? 0
- : 1);
- break;
- case COLUMN_RELEASE:
- result = (e1.timestamp < e2.timestamp)
- ? -1
- : ((e1.timestamp == e2.timestamp)
- ? 0
- : 1);
- break;
- default:
- result = 0;
- }
- return result * sortDirection;
- }
- } //}}}
- //{{{ HeaderMouseHandler class
- private class HeaderMouseHandler extends MouseAdapter
- {
- @Override
- public void mouseClicked(MouseEvent evt)
- {
- int column = table.getTableHeader().columnAtPoint(evt.getPoint());
- pluginModel.sortDirection *= -1;
- pluginModel.sort(column);
- }
- } //}}}
- //{{{ TextRenderer
- private static class TextRenderer extends DefaultTableCellRenderer
- {
- private DefaultTableCellRenderer tcr;
- TextRenderer(DefaultTableCellRenderer tcr)
- {
- this.tcr = tcr;
- }
- @Override
- public Component getTableCellRendererComponent(JTable table, Object value,
- boolean isSelected, boolean hasFocus, int row, int column)
- {
- if (column == 5)
- tcr.setHorizontalAlignment(TRAILING);
- else
- tcr.setHorizontalAlignment(LEADING);
- return tcr.getTableCellRendererComponent(table,value,isSelected,false,row,column);
- }
- } //}}}
- //{{{ KeyboardAction class
- private class KeyboardAction extends AbstractAction
- {
- private KeyboardCommand command = KeyboardCommand.NONE;
- KeyboardAction(KeyboardCommand command)
- {
- this.command = command;
- }
- public void actionPerformed(ActionEvent evt)
- {
- switch (command)
- {
- case TAB_OUT_FORWARD:
- KeyboardFocusManager.getCurrentKeyboardFocusManager().focusNextComponent();
- break;
- case TAB_OUT_BACK:
- KeyboardFocusManager.getCurrentKeyboardFocusManager().focusPreviousComponent();
- break;
- case EDIT_PLUGIN:
- int[] rows = table.getSelectedRows();
- Object[] state = new Object[rows.length];
- for (int i=0 ; i<rows.length ; i++)
- {
- state[i] = pluginModel.getValueAt(rows[i],0);
- }
- for (int i=0 ; i<rows.length ; i++)
- {
- pluginModel.setValueAt(state[i].equals(Boolean.FALSE),rows[i],0);
- }
- break;
- case CLOSE_PLUGIN_MANAGER:
- window.ok();
- break;
- default:
- throw new InternalError();
- }
- }
- } //}}}
- //{{{ TableFocusHandler class
- private class TableFocusHandler extends FocusAdapter
- {
- @Override
- public void focusGained(FocusEvent fe)
- {
- if (-1 == table.getSelectedRow() && table.getRowCount() > 0)
- {
- table.setRowSelectionInterval(0,0);
- JScrollBar scrollbar = scrollpane.getVerticalScrollBar();
- scrollbar.setValue(scrollbar.getMinimum());
- }
- if (-1 == table.getSelectedColumn())
- {
- table.setColumnSelectionInterval(0,0);
- }
- }
- } //}}}
- //{{{ HeaderRenderer
- private static class HeaderRenderer extends DefaultTableCellRenderer
- {
- private DefaultTableCellRenderer tcr;
- HeaderRenderer(DefaultTableCellRenderer tcr)
- {
- this.tcr = tcr;
- }
- @Override
- public Component getTableCellRendererComponent(JTable table, Object value,
- boolean isSelected, boolean hasFocus,
- int row, int column)
- {
- JLabel l = (JLabel)tcr.getTableCellRendererComponent(table,value,isSelected,hasFocus,row,column);
- PluginTableModel model = (PluginTableModel) table.getModel();
- Icon icon = (column == model.sortType)
- ? (model.sortDirection == 1) ? ASC_ICON : DESC_ICON
- : null;
- l.setIcon(icon);
- // l.setHorizontalTextPosition(l.LEADING);
- return l;
- }
- } //}}}
- //}}}
- static final Icon ASC_ICON = GUIUtilities.loadIcon("arrow-asc.png");
- static final Icon DESC_ICON = GUIUtilities.loadIcon("arrow-desc.png");
- }