You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AWTPlotRenderer.java 6.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. /*
  2. * Copyright (C) 2010, Google Inc.
  3. * Copyright (C) 2008, Robin Rosenberg <robin.rosenberg@dewire.com>
  4. * Copyright (C) 2008, Shawn O. Pearce <spearce@spearce.org>
  5. * and other copyright owners as documented in the project's IP log.
  6. *
  7. * This program and the accompanying materials are made available
  8. * under the terms of the Eclipse Distribution License v1.0 which
  9. * accompanies this distribution, is reproduced below, and is
  10. * available at http://www.eclipse.org/org/documents/edl-v10.php
  11. *
  12. * All rights reserved.
  13. *
  14. * Redistribution and use in source and binary forms, with or
  15. * without modification, are permitted provided that the following
  16. * conditions are met:
  17. *
  18. * - Redistributions of source code must retain the above copyright
  19. * notice, this list of conditions and the following disclaimer.
  20. *
  21. * - Redistributions in binary form must reproduce the above
  22. * copyright notice, this list of conditions and the following
  23. * disclaimer in the documentation and/or other materials provided
  24. * with the distribution.
  25. *
  26. * - Neither the name of the Eclipse Foundation, Inc. nor the
  27. * names of its contributors may be used to endorse or promote
  28. * products derived from this software without specific prior
  29. * written permission.
  30. *
  31. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
  32. * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
  33. * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  34. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  35. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  36. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  37. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  38. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  39. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  40. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  41. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  42. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  43. * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  44. */
  45. package org.eclipse.jgit.awtui;
  46. import java.awt.Color;
  47. import java.awt.Graphics;
  48. import java.awt.Graphics2D;
  49. import java.awt.Polygon;
  50. import org.eclipse.jgit.awtui.CommitGraphPane.GraphCellRender;
  51. import org.eclipse.jgit.awtui.SwingCommitList.SwingLane;
  52. import org.eclipse.jgit.lib.Constants;
  53. import org.eclipse.jgit.lib.Ref;
  54. import org.eclipse.jgit.revplot.AbstractPlotRenderer;
  55. import org.eclipse.jgit.revplot.PlotCommit;
  56. final class AWTPlotRenderer extends AbstractPlotRenderer<SwingLane, Color> {
  57. final GraphCellRender cell;
  58. Graphics2D g;
  59. AWTPlotRenderer(final GraphCellRender c) {
  60. cell = c;
  61. }
  62. void paint(final Graphics in, final PlotCommit<SwingLane> commit) {
  63. g = (Graphics2D) in.create();
  64. try {
  65. final int h = cell.getHeight();
  66. g.setColor(cell.getBackground());
  67. g.fillRect(0, 0, cell.getWidth(), h);
  68. if (commit != null)
  69. paintCommit(commit, h);
  70. } finally {
  71. g.dispose();
  72. g = null;
  73. }
  74. }
  75. @Override
  76. protected void drawLine(final Color color, int x1, int y1, int x2,
  77. int y2, int width) {
  78. if (y1 == y2) {
  79. x1 -= width / 2;
  80. x2 -= width / 2;
  81. } else if (x1 == x2) {
  82. y1 -= width / 2;
  83. y2 -= width / 2;
  84. }
  85. g.setColor(color);
  86. g.setStroke(CommitGraphPane.stroke(width));
  87. g.drawLine(x1, y1, x2, y2);
  88. }
  89. @Override
  90. protected void drawCommitDot(final int x, final int y, final int w,
  91. final int h) {
  92. g.setColor(Color.blue);
  93. g.setStroke(CommitGraphPane.strokeCache[1]);
  94. g.fillOval(x, y, w, h);
  95. g.setColor(Color.black);
  96. g.drawOval(x, y, w, h);
  97. }
  98. @Override
  99. protected void drawBoundaryDot(final int x, final int y, final int w,
  100. final int h) {
  101. g.setColor(cell.getBackground());
  102. g.setStroke(CommitGraphPane.strokeCache[1]);
  103. g.fillOval(x, y, w, h);
  104. g.setColor(Color.black);
  105. g.drawOval(x, y, w, h);
  106. }
  107. @Override
  108. protected void drawText(final String msg, final int x, final int y) {
  109. final int texth = g.getFontMetrics().getHeight();
  110. final int y0 = y - texth/2 + (cell.getHeight() - texth)/2;
  111. g.setColor(cell.getForeground());
  112. g.drawString(msg, x, y0 + texth - g.getFontMetrics().getDescent());
  113. }
  114. @Override
  115. protected Color laneColor(final SwingLane myLane) {
  116. return myLane != null ? myLane.color : Color.black;
  117. }
  118. void paintTriangleDown(final int cx, final int y, final int h) {
  119. final int tipX = cx;
  120. final int tipY = y + h;
  121. final int baseX1 = cx - 10 / 2;
  122. final int baseX2 = tipX + 10 / 2;
  123. final int baseY = y;
  124. final Polygon triangle = new Polygon();
  125. triangle.addPoint(tipX, tipY);
  126. triangle.addPoint(baseX1, baseY);
  127. triangle.addPoint(baseX2, baseY);
  128. g.fillPolygon(triangle);
  129. g.drawPolygon(triangle);
  130. }
  131. @Override
  132. protected int drawLabel(int x, int y, Ref ref) {
  133. String txt;
  134. String name = ref.getName();
  135. if (name.startsWith(Constants.R_HEADS)) {
  136. g.setBackground(Color.GREEN);
  137. txt = name.substring(Constants.R_HEADS.length());
  138. } else if (name.startsWith(Constants.R_REMOTES)){
  139. g.setBackground(Color.LIGHT_GRAY);
  140. txt = name.substring(Constants.R_REMOTES.length());
  141. } else if (name.startsWith(Constants.R_TAGS)){
  142. g.setBackground(Color.YELLOW);
  143. txt = name.substring(Constants.R_TAGS.length());
  144. } else {
  145. // Whatever this would be
  146. g.setBackground(Color.WHITE);
  147. if (name.startsWith(Constants.R_REFS))
  148. txt = name.substring(Constants.R_REFS.length());
  149. else
  150. txt = name; // HEAD and such
  151. }
  152. if (ref.getPeeledObjectId() != null) {
  153. float[] colorComponents = g.getBackground().getRGBColorComponents(null);
  154. colorComponents[0] *= 0.9;
  155. colorComponents[1] *= 0.9;
  156. colorComponents[2] *= 0.9;
  157. g.setBackground(new Color(colorComponents[0],colorComponents[1],colorComponents[2]));
  158. }
  159. if (txt.length() > 12)
  160. txt = txt.substring(0,11) + "\u2026"; // ellipsis "…" (in UTF-8)
  161. final int texth = g.getFontMetrics().getHeight();
  162. int textw = g.getFontMetrics().stringWidth(txt);
  163. g.setColor(g.getBackground());
  164. int arcHeight = texth/4;
  165. int y0 = y - texth/2 + (cell.getHeight() - texth)/2;
  166. g.fillRoundRect(x , y0, textw + arcHeight*2, texth -1, arcHeight, arcHeight);
  167. g.setColor(g.getColor().darker());
  168. g.drawRoundRect(x, y0, textw + arcHeight*2, texth -1 , arcHeight, arcHeight);
  169. g.setColor(Color.BLACK);
  170. g.drawString(txt, x + arcHeight, y0 + texth - g.getFontMetrics().getDescent());
  171. return arcHeight * 3 + textw;
  172. }
  173. }