NameItempublic class NameItem extends org.gudy.azureus2.ui.swt.views.table.utils.CoreTableColumn implements TableCellLightRefreshListener, org.gudy.azureus2.ui.swt.debug.ObfusticateCellText, TableCellDisposeListenerTorrent name cell for My Torrents. |
Fields Summary |
---|
private static boolean | bShowIcon |
Constructors Summary |
---|
public NameItem()Default Constructor
COConfigurationManager.addAndFireParameterListener(
"NameColumn.showProgramIcon", new ParameterListener() {
public void parameterChanged(String parameterName) {
bShowIcon = COConfigurationManager.getBooleanParameter("NameColumn.showProgramIcon");
}
});
super("name", ALIGN_LEAD, POSITION_LAST, 300,
TableManager.TABLE_TORRENT_FILES);
setType(TableColumn.TYPE_TEXT);
|
Methods Summary |
---|
public void | dispose(TableCell cell)
if (bShowIcon && Constants.isWindows) {
disposeCellIcon(cell);
}
| private void | disposeCellIcon(TableCell cell)
final Image img = ((TableCellSWT) cell).getIcon();
if (img != null) {
((TableCellSWT) cell).setIcon(null);
if (!img.isDisposed()) {
img.dispose();
}
}
| public java.lang.String | getObfusticatedText(TableCell cell)
DiskManagerFileInfo fileInfo = (DiskManagerFileInfo) cell.getDataSource();
String name = (fileInfo == null) ? ""
: Debug.secretFileName(fileInfo.getFile(true).getName());
if (name == null)
name = "";
return name;
| public void | refresh(TableCell cell, boolean sortOnlyRefresh)
DiskManagerFileInfo fileInfo = (DiskManagerFileInfo) cell.getDataSource();
String name = (fileInfo == null) ? "" : fileInfo.getFile(true).getName();
if (name == null)
name = "";
//setText returns true only if the text is updated
if (cell.setText(name) || !cell.isValid()) {
if (bShowIcon && !sortOnlyRefresh) {
Image icon;
if (fileInfo == null) {
icon = null;
} else {
// Don't ever dispose of PathIcon, it's cached and may be used elsewhere
icon = ImageRepository.getPathIcon(fileInfo.getFile(true).getPath());
if (Constants.isWindows) {
disposeCellIcon(cell);
// recomposite to avoid artifacts - transparency mask does not work
final Image dstImage = new Image(Display.getCurrent(),
icon.getBounds().width, icon.getBounds().height);
GC gc = new GC(dstImage);
gc.drawImage(icon, 0, 0);
gc.dispose();
icon = dstImage;
}
}
// cheat for core, since we really know it's a TabeCellImpl and want to use
// those special functions not available to Plugins
((TableCellSWT) cell).setIcon(icon);
}
}
| public void | refresh(TableCell cell)
refresh(cell, false);
|
|