// @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();
    }
  }
Example #2
0
 /** Sets or clears the caret in the "Example" widget. */
 void setCaret() {
   Caret oldCaret = canvas.getCaret();
   if (caretButton.getSelection()) {
     Caret newCaret = new Caret(canvas, SWT.NONE);
     Font font = canvas.getFont();
     newCaret.setFont(font);
     GC gc = new GC(canvas);
     gc.setFont(font);
     newCaret.setBounds(1, 1, 1, gc.getFontMetrics().getHeight());
     gc.dispose();
     canvas.setCaret(newCaret);
     canvas.setFocus();
   } else {
     canvas.setCaret(null);
   }
   if (oldCaret != null) oldCaret.dispose();
 }
  private static void paintImage2(GC gc, Point size, int f) {
    gc.setBackground(gc.getDevice().getSystemColor(SWT.COLOR_WIDGET_BACKGROUND));
    gc.fillRectangle(0, 0, size.x, size.y);

    // Scale line width, corner roundness, and font size.
    // Caveat: line width expands in all directions, so the origin also has to move.

    gc.setBackground(gc.getDevice().getSystemColor(SWT.COLOR_LIST_SELECTION));
    gc.fillRoundRectangle(f / 2, f / 2, size.x - f, size.y - f, 10 * f, 10 * f);

    gc.setBackground(gc.getDevice().getSystemColor(SWT.COLOR_WIDGET_BACKGROUND));
    gc.setLineWidth(f);
    gc.drawRoundRectangle(f / 2, f / 2, size.x - f, size.y - f, 10 * f, 10 * f);
    FontData fontData = gc.getFont().getFontData()[0];
    fontData.setHeight(fontData.getHeight() * f);
    Font font = new Font(gc.getDevice(), fontData);
    try {
      gc.setFont(font);
      gc.drawText(fontData.toString(), 10 * f, 10 * f, true);
    } finally {
      font.dispose();
    }
  }
Example #4
0
 public void setFont(FSFont font) {
   _gc.setFont(((SWTFSFont) font).getSWTFont());
 }
  // @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();
    }
  }