Examples of SWTSkinProperties


Examples of com.aelitis.azureus.ui.swt.skin.SWTSkinProperties

   */
  public ColumnActivityActions(String tableID) {
    super(COLUMN_ID, tableID);
    initializeAsGraphic(150);

    SWTSkinProperties skinProperties = SWTSkinFactory.getInstance().getSkinProperties();
    colorLinkNormal = skinProperties.getColor("color.links.normal");
    colorLinkHover = skinProperties.getColor("color.links.hover");
  }
View Full Code Here

Examples of com.aelitis.azureus.ui.swt.skin.SWTSkinProperties

    gridData = new GridData(GridData.FILL_BOTH);
    downSpeedCanvas.setLayoutData(gridData);
    downSpeedGraphic = SpeedGraphic.getInstance();
    downSpeedGraphic.initialize(downSpeedCanvas);
    //downSpeedGraphic.setAutoAlpha(true);
    SWTSkinProperties skinProperties = SWTSkinFactory.getInstance().getSkinProperties();
    Color cBG1 = skinProperties.getColor("color.topbar.speed.bg1");
    Color cBG2 = skinProperties.getColor("color.topbar.speed.bg2");
    Color cBG3 = skinProperties.getColor("color.topbar.speed.bg3");
    downSpeedGraphic.setColors(cBG1, cBG2, cBG3);
    downSpeedGraphic.setLineColors(skinProperties.getColor("color.topbar.speed.average"),
        skinProperties.getColor("color.topbar.speed.value0"),
        skinProperties.getColor("color.topbar.speed.overhead"),
        skinProperties.getColor("color.topbar.speed.value1"),
        skinProperties.getColor("color.topbar.speed.value2plus"),
        skinProperties.getColor("color.topbar.speed.trimmed"));
  }
View Full Code Here

Examples of com.aelitis.azureus.ui.swt.skin.SWTSkinProperties

    setAlignment(ALIGN_LEAD);
    setMinWidth(COLUMN_WIDTH);

    display = SWTThread.getInstance().getDisplay();

    SWTSkinProperties skinProperties = SWTSkinFactory.getInstance().getSkinProperties();
    cBG = skinProperties.getColor("color.progress.bg");
    if (cBG == null) {
      cBG = Colors.blues[Colors.BLUES_DARKEST];
    }
    cBorder = skinProperties.getColor("color.progress.border");
    if (cBorder == null) {
      cBorder = Colors.grey;
    }
    cText = skinProperties.getColor("color.progress.text");
    if (cText == null) {
      cText = Colors.black;
    }
    cTextDrop = skinProperties.getColor("color.progress.text.drop");

    ImageLoader imageLoader = ImageLoader.getInstance();
    imgArrowButton = imageLoader.getImage("image.fileprogress.arrowbtn");
    imgPriHi = imageLoader.getImage("image.fileprogress.pri.hi");
    imgPriNormal = imageLoader.getImage("image.fileprogress.pri.normal");
View Full Code Here

Examples of com.aelitis.azureus.ui.swt.skin.SWTSkinProperties

   */
  public ColumnActivityText(String tableID) {
    super(COLUMN_ID, tableID);

    initializeAsGraphic(480);
    SWTSkinProperties skinProperties = SWTSkinFactory.getInstance().getSkinProperties();
    colorLinkNormal = skinProperties.getColor("color.links.normal");
    colorLinkHover = skinProperties.getColor("color.links.hover");
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.