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

📄 uploaddetailsdialog.java

📁 JMule是一个基于Java开发
💻 JAVA
字号:
/* *  JMule - Java file sharing client *  Copyright (C) 2007-2008 JMule team ( jmule@jmule.org / http://jmule.org ) * *  Any parts of this program derived from other projects, or contributed *  by third-party developers are copyrighted by their respective authors. * *  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 org.jmule.ui.swing.maintabs.transfers;import java.awt.BorderLayout;import java.awt.event.ActionEvent;import java.awt.event.ActionListener;import javax.swing.JFrame;import javax.swing.JScrollPane;import javax.swing.JTabbedPane;import org.jmule.core.uploadmanager.UploadSession;import org.jmule.ui.swing.common.OpPanel;import org.jmule.ui.swing.dialogs.RefreshableDialog;import org.jmule.ui.swing.tables.UploadPeersTable;/** * * Created on Oct 11, 2008 * @author javajox * @version $Revision: 1.1 $ * Last changed by $Author: javajox $ on $Date: 2008/10/16 17:35:15 $ */public class UploadDetailsDialog extends RefreshableDialog {     	private JTabbedPane tabbed_panel = new JTabbedPane();	private OpPanel op_panel = new OpPanel(new OpPanel.button_type[] 	               	                      { OpPanel.button_type.CLOSE } );	private UploadDetailsPanel upload_details_panel;	private UploadPeersTable upload_peers_table;	private JScrollPane scroll_panel = new JScrollPane();	private BorderLayout border_layout = new BorderLayout();		private UploadSession session;		public UploadDetailsDialog(JFrame parent, UploadSession session) {		super(parent, "Upload details", true);		this.session = session;				upload_details_panel = new UploadDetailsPanel(session);		upload_peers_table = new UploadPeersTable(parent, session);				scroll_panel.setViewportView(upload_peers_table);				this.setLayout(border_layout);		this.add(tabbed_panel, BorderLayout.CENTER);		this.add(op_panel, BorderLayout.SOUTH);		op_panel.getCloseButton().addActionListener(new ActionListener() {			public void actionPerformed(ActionEvent event) {			    setVisible(false);  				} 		});				tabbed_panel.add("General", upload_details_panel);		tabbed_panel.add("Peers", scroll_panel);		this.setSize(567, 521);	}		public void refresh() { 		if(tabbed_panel.getSelectedComponent() == upload_details_panel)		  upload_details_panel.updateData();		else		  upload_peers_table.repaint(); 			}}

⌨️ 快捷键说明

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