📄 mytrackerview.java
字号:
/*
* File : MyTrackerView.java
* Created : 30-Oct-2003
* By : parg
*
* Copyright (C) 2004, 2005, 2006 Aelitis SAS, All rights Reserved
*
* 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.
*
* 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 ( see the LICENSE file ).
*
* 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
*
* AELITIS, SAS au capital de 46,603.30 euros,
* 8 Allee Lenotre, La Grille Royale, 78600 Le Mesnil le Roi, France.
*/
package org.gudy.azureus2.ui.swt.views;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.net.InetSocketAddress;
import java.net.URL;
import java.util.Arrays;
import org.eclipse.swt.SWT;
import org.eclipse.swt.events.MouseAdapter;
import org.eclipse.swt.events.MouseEvent;
import org.eclipse.swt.widgets.*;
import org.gudy.azureus2.core3.category.Category;
import org.gudy.azureus2.core3.category.CategoryManager;
import org.gudy.azureus2.core3.category.CategoryManagerListener;
import org.gudy.azureus2.core3.download.DownloadManager;
import org.gudy.azureus2.core3.torrent.TOTorrent;
import org.gudy.azureus2.core3.tracker.host.TRHostListener;
import org.gudy.azureus2.core3.tracker.host.TRHostTorrent;
import org.gudy.azureus2.core3.tracker.host.TRHostTorrentRemovalVetoException;
import org.gudy.azureus2.core3.util.AERunnable;
import org.gudy.azureus2.core3.util.Debug;
import org.gudy.azureus2.core3.util.TorrentUtils;
import org.gudy.azureus2.pluginsimpl.local.torrent.TorrentManagerImpl;
import org.gudy.azureus2.ui.swt.Alerts;
import org.gudy.azureus2.ui.swt.CategoryAdderWindow;
import org.gudy.azureus2.ui.swt.Messages;
import org.gudy.azureus2.ui.swt.Utils;
import org.gudy.azureus2.ui.swt.mainwindow.Colors;
import org.gudy.azureus2.ui.swt.mainwindow.SWTThread;
import org.gudy.azureus2.ui.swt.views.table.TableColumnCore;
import org.gudy.azureus2.ui.swt.views.table.TableRowCore;
import org.gudy.azureus2.ui.swt.views.tableitems.mytracker.*;
import com.aelitis.azureus.core.AzureusCore;
import com.aelitis.azureus.ui.UIFunctions;
import com.aelitis.azureus.ui.UIFunctionsManager;
import org.gudy.azureus2.plugins.torrent.TorrentAttribute;
import org.gudy.azureus2.plugins.ui.tables.TableManager;
/**
* @author parg
* @author TuxPaper
* 2004/Apr/20: Remove need for tableItemToObject
* 2004/Apr/21: extends TableView instead of IAbstractView
*/
public class
MyTrackerView
extends TableView
implements TRHostListener, CategoryManagerListener
{
private static final TableColumnCore[] basicItems = {
new NameItem(),
new TrackerItem(),
new StatusItem(),
new CategoryItem(),
new PassiveItem(),
new SeedCountItem(),
new PeerCountItem(),
new BadNATCountItem(),
new AnnounceCountItem(),
new ScrapeCountItem(),
new CompletedCountItem(),
new UploadedItem(),
new DownloadedItem(),
new LeftItem(),
new TotalBytesInItem(),
new AverageBytesInItem(),
new TotalBytesOutItem(),
new AverageBytesOutItem(),
new DateAddedItem(),
};
protected static final TorrentAttribute category_attribute =
TorrentManagerImpl.getSingleton().getAttribute( TorrentAttribute.TA_CATEGORY );
private AzureusCore azureus_core;
private Menu menuCategory;
public
MyTrackerView(
AzureusCore _azureus_core )
{
super(TableManager.TABLE_MYTRACKER, "MyTrackerView", basicItems, "name",
SWT.MULTI | SWT.FULL_SELECTION | SWT.BORDER | SWT.VIRTUAL);
azureus_core = _azureus_core;
}
/* (non-Javadoc)
* @see org.gudy.azureus2.ui.swt.IView#initialize(org.eclipse.swt.widgets.Composite)
*/
public void
initialize(
Composite composite0 )
{
super.initialize(composite0);
azureus_core.getTrackerHost().addListener( this );
final Table table = getTable();
table.addMouseListener(new MouseAdapter() {
public void mouseDoubleClick(MouseEvent mEvent) {
TRHostTorrent torrent = (TRHostTorrent)getFirstSelectedDataSource();
if (torrent == null)
return;
DownloadManager dm = azureus_core.getGlobalManager().getDownloadManager(torrent.getTorrent());
if (dm != null) {
UIFunctions uiFunctions = UIFunctionsManager.getUIFunctions();
if (uiFunctions != null) {
uiFunctions.openManagerView(dm);
}
}
}
});
}
public void tableStructureChanged() {
//1. Unregister for item creation
azureus_core.getTrackerHost().removeListener( this );
super.tableStructureChanged();
//5. Re-add as a listener
azureus_core.getTrackerHost().addListener( this );
}
public void fillMenu(final Menu menu) {
menuCategory = new Menu(getComposite().getShell(), SWT.DROP_DOWN);
final MenuItem itemCategory = new MenuItem(menu, SWT.CASCADE);
Messages.setLanguageText(itemCategory, "MyTorrentsView.menu.setCategory"); //$NON-NLS-1$
//itemCategory.setImage(ImageRepository.getImage("speed"));
itemCategory.setMenu(menuCategory);
addCategorySubMenu();
new MenuItem(menu, SWT.SEPARATOR);
final MenuItem itemStart = new MenuItem(menu, SWT.PUSH);
Messages.setLanguageText(itemStart, "MyTorrentsView.menu.start"); //$NON-NLS-1$
Utils.setMenuItemImage(itemStart, "start");
final MenuItem itemStop = new MenuItem(menu, SWT.PUSH);
Messages.setLanguageText(itemStop, "MyTorrentsView.menu.stop"); //$NON-NLS-1$
Utils.setMenuItemImage(itemStop, "stop");
final MenuItem itemRemove = new MenuItem(menu, SWT.PUSH);
Messages.setLanguageText(itemRemove, "MyTorrentsView.menu.remove"); //$NON-NLS-1$
Utils.setMenuItemImage(itemRemove, "delete");
Object[] hostTorrents = getSelectedDataSources();
itemStart.setEnabled(false);
itemStop.setEnabled(false);
itemRemove.setEnabled(false);
if (hostTorrents.length > 0) {
boolean start_ok = true;
boolean stop_ok = true;
boolean remove_ok = true;
for (int i = 0; i < hostTorrents.length; i++) {
TRHostTorrent host_torrent = (TRHostTorrent)hostTorrents[i];
int status = host_torrent.getStatus();
if ( status != TRHostTorrent.TS_STOPPED ){
start_ok = false;
}
if ( status != TRHostTorrent.TS_STARTED ){
stop_ok = false;
}
/*
try{
host_torrent.canBeRemoved();
}catch( TRHostTorrentRemovalVetoException f ){
remove_ok = false;
}
*/
}
itemStart.setEnabled(start_ok);
itemStop.setEnabled(stop_ok);
itemRemove.setEnabled(remove_ok);
}
itemStart.addListener(SWT.Selection, new Listener() {
public void handleEvent(Event e) {
startSelectedTorrents();
}
});
itemStop.addListener(SWT.Selection, new Listener() {
public void handleEvent(Event e) {
stopSelectedTorrents();
}
});
itemRemove.addListener(SWT.Selection, new Listener() {
public void handleEvent(Event e) {
removeSelectedTorrents();
}
});
new MenuItem(menu, SWT.SEPARATOR);
super.fillMenu(menu);
}
public void
torrentAdded(
TRHostTorrent host_torrent )
{
addDataSource(host_torrent);
}
public void torrentChanged(TRHostTorrent t) { }
public void
torrentRemoved(
TRHostTorrent host_torrent )
{
removeDataSource(host_torrent);
}
public boolean
handleExternalRequest(
InetSocketAddress client,
String user,
String url,
URL absolute_url,
String header,
InputStream is,
OutputStream os )
throws IOException
{
return( false );
}
public void
refresh(boolean bForceSort)
{
if (getComposite() == null || getComposite().isDisposed()){
return;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -