⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pluginmanagerprogress.java

📁 用java 编写的源码开放的文本编辑器。有很多有用的特性
💻 JAVA
字号:
/* * PluginManagerProgress.java - Plugin download progress meter * :tabSize=8:indentSize=8:noTabs=false: * :folding=explicit:collapseFolds=1: * * Copyright (C) 2000, 2001 Slava Pestov * * 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;//{{{ Importsimport javax.swing.border.*;import javax.swing.*;import java.awt.event.*;import java.awt.*;import org.gjt.sp.jedit.*;//}}}class PluginManagerProgress extends JDialog{	//{{{ PluginManagerProgress constructor	public PluginManagerProgress(JDialog dialog, String type, Roster roster)	{		super(dialog,			jEdit.getProperty("plugin-manager.progress."			+ type + "-task"),true);		this.dialog = dialog;		this.roster = roster;		this.type = type;		JPanel content = new JPanel(new BorderLayout(12,12));		content.setBorder(new EmptyBorder(12,12,12,12));		setContentPane(content);		progress = new JProgressBar();		progress.setStringPainted(true);		progress.setString(jEdit.getProperty("plugin-manager.progress."			+ type + "-task"));		int maximum = 0;		count = roster.getOperationCount();		for(int i = 0; i < count; i++)		{			maximum += roster.getOperation(i).getMaximum();		}		progress.setMaximum(maximum);		content.add(BorderLayout.CENTER,progress);		stop = new JButton(jEdit.getProperty("plugin-manager.progress.stop"));		stop.addActionListener(new ActionHandler());		JPanel panel = new JPanel();		panel.setLayout(new BoxLayout(panel,BoxLayout.X_AXIS));		panel.add(Box.createGlue());		panel.add(stop);		panel.add(Box.createGlue());		content.add(BorderLayout.SOUTH,panel);		addWindowListener(new WindowHandler());		pack();		Dimension size = getSize();		size.width = Math.max(size.width,500);		setSize(size);		setLocationRelativeTo(dialog);		show();	} //}}}	//{{{ removing() method	public void removing(String plugin)	{		String[] args = { plugin };		showMessage(jEdit.getProperty("plugin-manager.progress.removing",args));		stop.setEnabled(true);	} //}}}	//{{{ downloading() method	public void downloading(String plugin)	{		String[] args = { plugin };		showMessage(jEdit.getProperty("plugin-manager.progress.downloading",args));		stop.setEnabled(true);	} //}}}	//{{{ installing() method	public void installing(String plugin)	{		String[] args = { plugin };		showMessage(jEdit.getProperty("plugin-manager.progress.installing",args));		stop.setEnabled(false);	} //}}}	//{{{ setValue() method	public void setValue(final int value)	{		SwingUtilities.invokeLater(new Runnable()		{			public void run()			{				progress.setValue(valueSoFar + value);			}		});	} //}}}	//{{{ done() method	public void done(final boolean ok)	{		this.ok |= ok;		try		{			if(!ok || done == count)			{				SwingUtilities.invokeAndWait(new Runnable()				{					public void run()					{						dispose();						if(ok)						{							GUIUtilities.message(dialog,								"plugin-manager." + type								+ "-done",null);						}						else						{							// user will see an error in any case							//GUIUtilities.message(PluginManagerProgress.this,							//	"plugin-manager.failed",null);						}					}				});			}			else			{				SwingUtilities.invokeAndWait(new Runnable()				{					public void run()					{						valueSoFar += roster.getOperation(done - 1)							.getMaximum();						progress.setValue(valueSoFar);						done++;					}				});			}		}		catch(Exception e)		{		}	} //}}}	//{{{ isOK() method	public boolean isOK()	{		return ok;	} //}}}	//{{{ Private members	//{{{ Instance variables	private JDialog dialog;	private Thread thread;	private String type;	private JProgressBar progress;	private JButton stop;	private int count;	private int done = 1;	// progress value as of start of current task	private int valueSoFar;	private boolean ok;	private Roster roster;	//}}}	//{{{ showMessage() method	private void showMessage(final String msg)	{		/* try		{			SwingUtilities.invokeAndWait(new Runnable()			{				public void run()				{					localProgress.setString(msg);				}			});		}		catch(Exception e)		{		}		Thread.yield(); */	} //}}}	//{{{ ActionHandler class	class ActionHandler implements ActionListener	{		public void actionPerformed(ActionEvent evt)		{			if(evt.getSource() == stop)			{				thread.stop();				dispose();			}		}	} //}}}	//{{{ WindowHandler class	class WindowHandler extends WindowAdapter	{		boolean done;		public void windowOpened(WindowEvent evt)		{			if(done)				return;			done = true;			thread = new RosterThread();			thread.start();		}		public void windowClosing(WindowEvent evt)		{			thread.stop();			dispose();		}	} //}}}	//{{{ RosterThread class	class RosterThread extends Thread	{		RosterThread()		{			super("Plugin manager thread");		}		public void run()		{			roster.performOperations(PluginManagerProgress.this);		}	} //}}}	//}}}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -