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

📄 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(PluginManager dialog, Roster roster)	{		super(dialog,jEdit.getProperty("plugin-manager.progress"),true);		this.dialog = dialog;		this.roster = roster;		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"));		int maximum = 0;		count = roster.getOperationCount();		for(int i = 0; i < count; i++)		{			maximum += roster.getOperation(i).getMaximum();		}		progress.setMaximum(maximum);		content.add(BorderLayout.NORTH,progress);		stop = new JButton(jEdit.getProperty("plugin-manager.progress.stop"));		stop.addActionListener(new ActionHandler());		JPanel panel = new JPanel(new FlowLayout(			FlowLayout.CENTER,0,0));		panel.add(stop);		content.add(BorderLayout.CENTER,panel);		addWindowListener(new WindowHandler());		pack();		setLocationRelativeTo(dialog);		show();	} //}}}	//{{{ setValue() method	public void setValue(final int value)	{		SwingUtilities.invokeLater(new Runnable()		{			public void run()			{				progress.setValue(valueSoFar + value);			}		});	} //}}}	//{{{ done() method	public void done()	{		try		{			if(done == count)			{				SwingUtilities.invokeAndWait(new Runnable()				{					public void run()					{						dispose();					}				});			}			else			{				SwingUtilities.invokeAndWait(new Runnable()				{					public void run()					{						valueSoFar += roster.getOperation(done - 1)							.getMaximum();						progress.setValue(valueSoFar);						done++;					}				});			}		}		catch(Exception e)		{		}	} //}}}	//{{{ Private members	//{{{ Instance variables	private PluginManager 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;	//}}}	//{{{ 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.performOperationsInWorkThread(PluginManagerProgress.this);		}	} //}}}	//}}}}

⌨️ 快捷键说明

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