Package org.eclipse.draw2d.geometry

Examples of org.eclipse.draw2d.geometry.Rectangle.bottom()


    }
    else {
      r.resize(0, 0).expand(1, 1);
    }
    g.drawLine(r.x, r.y, r.right(), r.y); // Top line
    g.drawLine(r.x, r.bottom(), r.right(), r.bottom()); // Bottom line
    g.drawLine(r.right(), r.bottom(), r.right(), r.y); // Right line

    g.drawLine(r.x - 7, r.y + r.height / 2, r.x, r.y);
    g.drawLine(r.x - 7, r.y + r.height / 2, r.x, r.bottom());
  }
View Full Code Here


    }
    else {
      r.resize(0, 0).expand(1, 1);
    }
    g.drawLine(r.x, r.y, r.right(), r.y); // Top line
    g.drawLine(r.x, r.bottom(), r.right(), r.bottom()); // Bottom line
    g.drawLine(r.right(), r.bottom(), r.right(), r.y); // Right line

    g.drawLine(r.x - 7, r.y + r.height / 2, r.x, r.y);
    g.drawLine(r.x - 7, r.y + r.height / 2, r.x, r.bottom());
  }
View Full Code Here

    else {
      r.resize(0, 0).expand(1, 1);
    }
    g.drawLine(r.x, r.y, r.right(), r.y); // Top line
    g.drawLine(r.x, r.bottom(), r.right(), r.bottom()); // Bottom line
    g.drawLine(r.right(), r.bottom(), r.right(), r.y); // Right line

    g.drawLine(r.x - 7, r.y + r.height / 2, r.x, r.y);
    g.drawLine(r.x - 7, r.y + r.height / 2, r.x, r.bottom());
  }
}
View Full Code Here

    g.drawLine(r.x, r.y, r.right(), r.y); // Top line
    g.drawLine(r.x, r.bottom(), r.right(), r.bottom()); // Bottom line
    g.drawLine(r.right(), r.bottom(), r.right(), r.y); // Right line

    g.drawLine(r.x - 7, r.y + r.height / 2, r.x, r.y);
    g.drawLine(r.x - 7, r.y + r.height / 2, r.x, r.bottom());
  }
}
View Full Code Here

      g.setBackgroundColor(ColorConstants.menuBackgroundSelected);
      g.setForegroundColor(ColorConstants.menuForegroundSelected);
    }
    g.fillRectangle(r.x, r.y, 5, r.height - 5);
    g.fillRectangle(r.right() - 9, r.y, 5, r.height - 5);
    g.fillRectangle(r.x, r.bottom() - 9, r.width - 5, 5);
    if (getHeader().getPreferredSize().height < 20) {
      g.fillRectangle(r.x, r.y, r.width - 5, 20);
    }
    else {
      g.fillRectangle(r.x, r.y, r.width - 5, 29);
View Full Code Here

      g.setForegroundColor(ColorConstants.menuForegroundSelected);
    }

    g.fillRectangle(r.x, r.y, 3, r.height);
    g.fillRectangle(r.right() - 3, r.y, 3, r.height);
    g.fillRectangle(r.x, r.bottom() - 18, r.width, 18);
    g.fillRectangle(r.x, r.y, r.width, 18);
  }

  @Override
  public void setSelected(boolean selected) {
View Full Code Here

    Rectangle r = getTextBounds();

    r.resize(-2, 0).expand(1, 1);
    r.x -= 2;
    g.drawLine(r.x, r.y, r.right(), r.y); // Top line
    g.drawLine(r.x, r.bottom(), r.right(), r.bottom()); // Bottom line
    g.drawLine(r.x, r.bottom(), r.x, r.y); // left line

    g.drawLine(r.right() + 7, r.y + r.height / 2, r.right(), r.y);
    g.drawLine(r.right() + 7, r.y + r.height / 2, r.right(), r.bottom());
  }
View Full Code Here

    Rectangle r = getTextBounds();

    r.resize(-2, 0).expand(1, 1);
    r.x -= 2;
    g.drawLine(r.x, r.y, r.right(), r.y); // Top line
    g.drawLine(r.x, r.bottom(), r.right(), r.bottom()); // Bottom line
    g.drawLine(r.x, r.bottom(), r.x, r.y); // left line

    g.drawLine(r.right() + 7, r.y + r.height / 2, r.right(), r.y);
    g.drawLine(r.right() + 7, r.y + r.height / 2, r.right(), r.bottom());
  }
View Full Code Here

    r.resize(-2, 0).expand(1, 1);
    r.x -= 2;
    g.drawLine(r.x, r.y, r.right(), r.y); // Top line
    g.drawLine(r.x, r.bottom(), r.right(), r.bottom()); // Bottom line
    g.drawLine(r.x, r.bottom(), r.x, r.y); // left line

    g.drawLine(r.right() + 7, r.y + r.height / 2, r.right(), r.y);
    g.drawLine(r.right() + 7, r.y + r.height / 2, r.right(), r.bottom());
  }
View Full Code Here

    g.drawLine(r.x, r.y, r.right(), r.y); // Top line
    g.drawLine(r.x, r.bottom(), r.right(), r.bottom()); // Bottom line
    g.drawLine(r.x, r.bottom(), r.x, r.y); // left line

    g.drawLine(r.right() + 7, r.y + r.height / 2, r.right(), r.y);
    g.drawLine(r.right() + 7, r.y + r.height / 2, r.right(), r.bottom());
  }

}
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.