// @see // org.gudy.azureus2.ui.swt.views.table.TableCellSWTPaintListener#cellPaint(org.eclipse.swt.graphics.GC, org.gudy.azureus2.ui.swt.views.table.TableCellSWT) public void cellPaint(GC gc, TableCellSWT cell) { VuzeActivitiesEntry entry = (VuzeActivitiesEntry) cell.getDataSource(); if (entry == null) { return; } TableRow row = cell.getTableRow(); if (row == null) { return; } String text = (String) row.getData("text"); if (text != null && text.length() > 0) { if (font == null) { FontData[] fontData = gc.getFont().getFontData(); fontData[0].setStyle(SWT.BOLD); font = new Font(gc.getDevice(), fontData); } gc.setFont(font); Rectangle bounds = getDrawBounds(cell); GCStringPrinter sp = new GCStringPrinter(gc, text, bounds, true, true, SWT.WRAP | SWT.CENTER); sp.calculateMetrics(); if (sp.hasHitUrl()) { URLInfo[] hitUrlInfo = sp.getHitUrlInfo(); for (int i = 0; i < hitUrlInfo.length; i++) { URLInfo info = hitUrlInfo[i]; // handle fake row when showing in column editor info.urlUnderline = cell.getTableRow() == null || cell.getTableRow().isSelected(); if (info.urlUnderline) { info.urlColor = null; } else { info.urlColor = colorLinkNormal; } } int[] mouseOfs = cell.getMouseOffset(); if (mouseOfs != null) { Rectangle realBounds = cell.getBounds(); URLInfo hitUrl = sp.getHitUrl(mouseOfs[0] + realBounds.x, mouseOfs[1] + realBounds.y); if (hitUrl != null) { hitUrl.urlColor = colorLinkHover; } } } sp.printString(); } }
// @see // org.gudy.azureus2.plugins.ui.tables.TableCellMouseListener#cellMouseTrigger(org.gudy.azureus2.plugins.ui.tables.TableCellMouseEvent) public void cellMouseTrigger(TableCellMouseEvent event) { VuzeActivitiesEntry entry = (VuzeActivitiesEntry) event.cell.getDataSource(); String tooltip = null; boolean invalidateAndRefresh = false; Rectangle bounds = ((TableCellSWT) event.cell).getBounds(); String text = (String) event.cell.getTableRow().getData("text"); if (text == null) { return; } GCStringPrinter sp = null; GC gc = new GC(Display.getDefault()); try { if (font != null) { gc.setFont(font); } Rectangle drawBounds = getDrawBounds((TableCellSWT) event.cell); sp = new GCStringPrinter(gc, text, drawBounds, true, true, SWT.WRAP | SWT.CENTER); sp.calculateMetrics(); } catch (Exception e) { Debug.out(e); } finally { gc.dispose(); } if (sp != null) { URLInfo hitUrl = sp.getHitUrl(event.x + bounds.x, event.y + bounds.y); int newCursor; if (hitUrl != null) { if (event.eventType == TableCellMouseEvent.EVENT_MOUSEUP) { if (hitUrl.url.equals("download")) { String referal = null; Object ds = event.cell.getDataSource(); if (ds instanceof VuzeActivitiesEntry) { referal = DLReferals.DL_REFERAL_DASHACTIVITY + "-" + ((VuzeActivitiesEntry) ds).getTypeID(); } TorrentListViewsUtils.downloadDataSource(ds, false, referal); } else if (hitUrl.url.equals("play")) { String referal = null; Object ds = event.cell.getDataSource(); if (ds instanceof VuzeActivitiesEntry) { referal = DLReferals.DL_REFERAL_PLAYDASHACTIVITY + "-" + ((VuzeActivitiesEntry) ds).getTypeID(); } TorrentListViewsUtils.playOrStreamDataSource(ds, referal, false, true); } else if (hitUrl.url.equals("launch")) { // run via play or stream so we get the security warning Object ds = event.cell.getDataSource(); TorrentListViewsUtils.playOrStreamDataSource( ds, DLReferals.DL_REFERAL_LAUNCH, false, true); } else if (!UrlFilter.getInstance().urlCanRPC(hitUrl.url)) { Utils.launch(hitUrl.url); } else { UIFunctionsSWT uif = UIFunctionsManagerSWT.getUIFunctionsSWT(); if (uif != null) { String target = hitUrl.target; if (target == null) { target = SkinConstants.VIEWID_BROWSER_BROWSE; } uif.viewURL(hitUrl.url, target, "column.activity.action"); return; } } } Object ds = event.cell.getDataSource(); newCursor = SWT.CURSOR_HAND; if (UrlFilter.getInstance().urlCanRPC(hitUrl.url)) { tooltip = hitUrl.title; } else { tooltip = hitUrl.url; } } else { newCursor = SWT.CURSOR_ARROW; } int oldCursor = ((TableCellSWT) event.cell).getCursorID(); if (oldCursor != newCursor) { invalidateAndRefresh = true; ((TableCellSWT) event.cell).setCursorID(newCursor); } } Object o = event.cell.getToolTip(); if ((o == null) || (o instanceof String)) { String oldTooltip = (String) o; if (!StringCompareUtils.equals(oldTooltip, tooltip)) { invalidateAndRefresh = true; event.cell.setToolTip(tooltip); } } if (invalidateAndRefresh) { event.cell.invalidate(); ((TableCellSWT) event.cell).redraw(); } }