clienttableview.java

来自「SANCHO」· Java 代码 · 共 69 行

JAVA
69
字号
/* * Copyright (C) 2004-2005 Rutger M. Ovidius for use with the sancho project. * See LICENSE.txt for license information. */package sancho.view.transfer.clients;import org.eclipse.swt.SWT;import org.eclipse.swt.widgets.Composite;import org.eclipse.swt.widgets.Table;import sancho.model.mldonkey.enums.AbstractEnum;import sancho.model.mldonkey.enums.EnumHostState;import sancho.view.preferences.PreferenceLoader;import sancho.view.viewFrame.ViewFrame;import sancho.view.viewer.table.GTableView;public class ClientTableView extends GTableView {  public static final int NETWORK = 0;  public static final int NAME = 1;  public static final int SOFTWARE = 2;  public static final int UPLOADED = 3;  public static final int DOWNLOADED = 4;  public static final int CONNECT_TIME = 5;  public static final int SOCK_ADDR = 6;  public static final int PORT = 7;  public static final int KIND = 8;  public static final int STATE = 9;  public static final int HAS_FILES = 10;  public ClientTableView(ViewFrame viewFrame) {    super(viewFrame);    preferenceString = "client";    columnLabels = new String[]{"client.network", "client.name", "client.software", "client.uploaded",        "client.downloaded", "client.connectTime", "client.addr", "client.port", "client.kind",        "client.state", "client.hasFiles"};    columnAlignment = new int[]{SWT.LEFT, SWT.LEFT, SWT.LEFT, SWT.RIGHT, SWT.RIGHT, SWT.RIGHT, SWT.RIGHT,        SWT.RIGHT, SWT.LEFT, SWT.LEFT, SWT.LEFT};    columnDefaultWidths = new int[]{100, 100, 75, 75, 75, 75, 100, 75, 75, 150, 75};    validStates = new AbstractEnum[]{EnumHostState.BLACKLISTED, EnumHostState.CONNECTED,        EnumHostState.CONNECTED_AND_QUEUED, EnumHostState.CONNECTED_DOWNLOADING,        EnumHostState.CONNECTED_INITIATING, EnumHostState.CONNECTING, EnumHostState.NEW_HOST,        EnumHostState.NOT_CONNECTED, EnumHostState.NOT_CONNECTED_WAS_QUEUED};    gSorter = new ClientTableSorter(this);    tableContentProvider = new ClientTableContentProvider(this, viewFrame.getCLabel());    tableLabelProvider = new ClientTableLabelProvider(this);    tableMenuListener = new ClientTableMenuListener(this);    createContents(viewFrame.getChildComposite());  }  protected void createContents(Composite parent) {    super.createContents(parent);    sViewer.addSelectionChangedListener((ClientTableMenuListener) tableMenuListener);  }  public void updateDisplay() {    super.updateDisplay();    Table table = getTable();    table.setForeground(PreferenceLoader.loadColor("downloadsAvailableColor"));    //  table.setFont(PreferenceLoader.loadFont("downloadsFontData"));  }  public void setInput() {  }}

⌨️ 快捷键说明

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