PageRenderTime 48ms CodeModel.GetById 15ms RepoModel.GetById 1ms app.codeStats 0ms

/jEdit/tags/jedit-4-5-pre1/org/gjt/sp/jedit/textarea/ShapedFoldPainter.java

#
Java | 83 lines | 47 code | 8 blank | 28 comment | 4 complexity | 6da5b0aa17a2e381a30deec9fe3ef84b MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
  1. /*
  2. * ShapedFoldPainter.java
  3. * :tabSize=8:indentSize=8:noTabs=false:
  4. * :folding=explicit:collapseFolds=0:
  5. *
  6. * Copyright (C) 2008 Shlomy Reinstein
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * as published by the Free Software Foundation; either version 2
  11. * of the License, or any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  21. */
  22. package org.gjt.sp.jedit.textarea;
  23. import java.awt.Graphics2D;
  24. import org.gjt.sp.jedit.buffer.JEditBuffer;
  25. // {{{ ShapedFoldPainter class
  26. /**
  27. * Fold Painter
  28. */
  29. public abstract class ShapedFoldPainter implements FoldPainter
  30. {
  31. // {{{ paintFoldEnd()
  32. public void paintFoldEnd(Gutter gutter, Graphics2D gfx, int screenLine,
  33. int physicalLine, int y, int lineHeight, JEditBuffer buffer)
  34. {
  35. gfx.setColor(gutter.getFoldColor());
  36. int _y = y + lineHeight / 2;
  37. int _x = 5;
  38. gfx.drawLine(_x,y,_x,_y+3);
  39. gfx.drawLine(_x,_y+3,_x+4,_y+3);
  40. boolean nested = (physicalLine < buffer.getLineCount() - 1 &&
  41. buffer.getFoldLevel(physicalLine + 1) > 0);
  42. if (nested)
  43. gfx.drawLine(_x,y+4,_x,y+lineHeight-1);
  44. }// }}}
  45. // {{{ paintFoldMiddle()
  46. public void paintFoldMiddle(Gutter gutter, Graphics2D gfx, int screenLine,
  47. int physicalLine, int y, int lineHeight, JEditBuffer buffer)
  48. {
  49. gfx.setColor(gutter.getFoldColor());
  50. gfx.drawLine(5,y,5,y+lineHeight-1);
  51. }// }}}
  52. // {{{ paintFoldStart()
  53. public void paintFoldStart(Gutter gutter, Graphics2D gfx, int screenLine,
  54. int physicalLine, boolean nextLineVisible, int y, int lineHeight,
  55. JEditBuffer buffer)
  56. {
  57. int _y = y + lineHeight / 2;
  58. int _x = 5;
  59. gfx.setColor(gutter.getFoldColor());
  60. paintFoldShape(gfx, _y - 4, _y + 4);
  61. gfx.drawLine(_x-2,_y,_x+2,_y);
  62. boolean nested = (buffer.getFoldLevel(physicalLine) > 0);
  63. if (nested)
  64. gfx.drawLine(_x,y,_x,_y-5);
  65. if (nextLineVisible)
  66. gfx.drawLine(_x,_y+5,_x,y+lineHeight-1);
  67. else
  68. {
  69. gfx.drawLine(_x,_y-2,_x,_y+2);
  70. if (nested)
  71. gfx.drawLine(_x,_y+4,_x,y+lineHeight-1);
  72. }
  73. }// }}}
  74. protected abstract void paintFoldShape(Graphics2D gfx, int top, int bottom);
  75. } // }}}