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.

AbstractPathOrientedRenderer.java 38KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. */
  17. /* $Id$ */
  18. package org.apache.fop.render;
  19. import java.awt.Color;
  20. import java.awt.Rectangle;
  21. import java.awt.geom.AffineTransform;
  22. import java.awt.geom.Rectangle2D;
  23. import java.util.List;
  24. import java.util.Map;
  25. import org.w3c.dom.Document;
  26. import org.apache.batik.parser.AWTTransformProducer;
  27. import org.apache.xmlgraphics.image.loader.ImageSize;
  28. import org.apache.xmlgraphics.util.QName;
  29. import org.apache.fop.apps.FOUserAgent;
  30. import org.apache.fop.area.Area;
  31. import org.apache.fop.area.Block;
  32. import org.apache.fop.area.BlockViewport;
  33. import org.apache.fop.area.CTM;
  34. import org.apache.fop.area.NormalFlow;
  35. import org.apache.fop.area.RegionReference;
  36. import org.apache.fop.area.RegionViewport;
  37. import org.apache.fop.area.Trait;
  38. import org.apache.fop.area.inline.ForeignObject;
  39. import org.apache.fop.area.inline.InlineArea;
  40. import org.apache.fop.area.inline.InlineViewport;
  41. import org.apache.fop.fo.Constants;
  42. import org.apache.fop.fo.extensions.ExtensionElementMapping;
  43. import org.apache.fop.fonts.FontMetrics;
  44. import org.apache.fop.traits.BorderProps;
  45. import org.apache.fop.util.UnitConv;
  46. /**
  47. * Abstract base class for renderers like PDF and PostScript where many painting operations
  48. * follow similar patterns which makes it possible to share some code.
  49. */
  50. public abstract class AbstractPathOrientedRenderer extends PrintRenderer {
  51. /**
  52. * @param userAgent the user agent that contains configuration details. This cannot be null.
  53. */
  54. public AbstractPathOrientedRenderer(FOUserAgent userAgent) {
  55. super(userAgent);
  56. }
  57. /**
  58. * Handle block traits.
  59. * The block could be any sort of block with any positioning
  60. * so this should render the traits such as border and background
  61. * in its position.
  62. *
  63. * @param block the block to render the traits
  64. */
  65. protected void handleBlockTraits(Block block) {
  66. float borderPaddingStart = block.getBorderAndPaddingWidthStart() / 1000f;
  67. float borderPaddingEnd = block.getBorderAndPaddingWidthEnd() / 1000f;
  68. float borderPaddingBefore = block.getBorderAndPaddingWidthBefore() / 1000f;
  69. float borderPaddingAfter = block.getBorderAndPaddingWidthAfter() / 1000f;
  70. float startx = currentIPPosition / 1000f;
  71. float starty = currentBPPosition / 1000f;
  72. float width = block.getIPD() / 1000f;
  73. float height = block.getBPD() / 1000f;
  74. int level = block.getBidiLevel();
  75. if ( ( level == -1 ) || ( ( level & 1 ) == 0 ) ) {
  76. startx += block.getStartIndent() / 1000f;
  77. startx -= borderPaddingStart;
  78. } else {
  79. startx += block.getEndIndent() / 1000f;
  80. startx -= borderPaddingEnd;
  81. }
  82. width += borderPaddingStart;
  83. width += borderPaddingEnd;
  84. height += borderPaddingBefore;
  85. height += borderPaddingAfter;
  86. drawBackAndBorders(block, startx, starty, width, height);
  87. }
  88. /**
  89. * Handle the traits for a region
  90. * This is used to draw the traits for the given page region.
  91. * (See Sect. 6.4.1.2 of XSL-FO spec.)
  92. * @param region the RegionViewport whose region is to be drawn
  93. */
  94. protected void handleRegionTraits(RegionViewport region) {
  95. Rectangle2D viewArea = region.getViewArea();
  96. RegionReference referenceArea = region.getRegionReference();
  97. float startx = (float)(viewArea.getX() / 1000f);
  98. float starty = (float)(viewArea.getY() / 1000f);
  99. float width = (float)(viewArea.getWidth() / 1000f);
  100. float height = (float)(viewArea.getHeight() / 1000f);
  101. // adjust the current position according to region borders and padding
  102. currentBPPosition = referenceArea.getBorderAndPaddingWidthBefore();
  103. int level = region.getBidiLevel();
  104. if ( ( level == -1 ) || ( ( level & 1 ) == 0 ) ) {
  105. currentIPPosition = referenceArea.getBorderAndPaddingWidthStart();
  106. } else {
  107. currentIPPosition = referenceArea.getBorderAndPaddingWidthEnd();
  108. }
  109. // draw background (traits are in the RegionViewport)
  110. // and borders (traits are in the RegionReference)
  111. drawBackAndBorders(region, referenceArea, startx, starty, width, height);
  112. }
  113. /**
  114. * Draw the background and borders.
  115. * This draws the background and border traits for an area given
  116. * the position.
  117. *
  118. * @param area the area to get the traits from
  119. * @param startx the start x position
  120. * @param starty the start y position
  121. * @param width the width of the area
  122. * @param height the height of the area
  123. */
  124. protected void drawBackAndBorders(Area area,
  125. float startx, float starty,
  126. float width, float height) {
  127. drawBackAndBorders(area, area, startx, starty, width, height);
  128. }
  129. /**
  130. * Draw the background and borders.
  131. * This draws the background and border traits for an area given
  132. * the position.
  133. *
  134. * @param backgroundArea the area to get the background traits from
  135. * @param borderArea the area to get the border traits from
  136. * @param startx the start x position
  137. * @param starty the start y position
  138. * @param width the width of the area
  139. * @param height the height of the area
  140. */
  141. protected void drawBackAndBorders(Area backgroundArea, Area borderArea,
  142. float startx, float starty,
  143. float width, float height) {
  144. // draw background then border
  145. BorderProps bpsBefore = (BorderProps)borderArea.getTrait(Trait.BORDER_BEFORE);
  146. BorderProps bpsAfter = (BorderProps)borderArea.getTrait(Trait.BORDER_AFTER);
  147. BorderProps bpsStart = (BorderProps)borderArea.getTrait(Trait.BORDER_START);
  148. BorderProps bpsEnd = (BorderProps)borderArea.getTrait(Trait.BORDER_END);
  149. Trait.Background backgroundTrait
  150. = (Trait.Background)backgroundArea.getTrait(Trait.BACKGROUND);
  151. drawBackground(startx, starty, width, height,
  152. (Trait.Background) backgroundArea.getTrait(Trait.BACKGROUND),
  153. bpsBefore, bpsAfter, bpsStart, bpsEnd, backgroundArea.getBidiLevel());
  154. // TODO what is the default bg color? Should we serialize it?
  155. Color bg = Color.white;
  156. if (backgroundTrait != null && backgroundTrait.getColor() != null) {
  157. bg = backgroundTrait.getColor();
  158. }
  159. drawBorders(startx, starty, width, height,
  160. bpsBefore, bpsAfter, bpsStart, bpsEnd, backgroundArea.getBidiLevel(), bg);
  161. }
  162. /**
  163. * Draw the background.
  164. * This draws the background given the position and the traits.
  165. *
  166. * @param startx the start x position
  167. * @param starty the start y position
  168. * @param width the width of the area
  169. * @param height the height of the area
  170. * @param back the background traits
  171. * @param bpsBefore the border-before traits
  172. * @param bpsAfter the border-after traits
  173. * @param bpsStart the border-start traits
  174. * @param bpsEnd the border-end traits
  175. * @param level of bidirectional embedding
  176. */
  177. protected void drawBackground( // CSOK: ParameterNumber
  178. float startx, float starty, float width, float height, Trait.Background back,
  179. BorderProps bpsBefore, BorderProps bpsAfter,
  180. BorderProps bpsStart, BorderProps bpsEnd, int level) {
  181. BorderProps bpsTop = bpsBefore;
  182. BorderProps bpsBottom = bpsAfter;
  183. BorderProps bpsLeft;
  184. BorderProps bpsRight;
  185. if ( ( level == -1 ) || ( ( level & 1 ) == 0 ) ) {
  186. bpsLeft = bpsStart;
  187. bpsRight = bpsEnd;
  188. } else {
  189. bpsLeft = bpsEnd;
  190. bpsRight = bpsStart;
  191. }
  192. drawBackground(startx, starty, width, height, back, bpsTop, bpsBottom, bpsLeft, bpsRight);
  193. }
  194. /**
  195. * Draw the background.
  196. * This draws the background given the position and the traits.
  197. *
  198. * @param startx the start x position
  199. * @param starty the start y position
  200. * @param width the width of the area
  201. * @param height the height of the area
  202. * @param back the background traits
  203. * @param bpsTop the border specification on the top edge
  204. * @param bpsBottom the border traits associated with bottom edge
  205. * @param bpsLeft the border specification on the left edge
  206. * @param bpsRight the border specification on the right edge
  207. */
  208. protected void drawBackground( // CSOK: ParameterNumber
  209. float startx, float starty, float width, float height, Trait.Background back,
  210. BorderProps bpsTop, BorderProps bpsBottom,
  211. BorderProps bpsLeft, BorderProps bpsRight) {
  212. if (back != null) {
  213. endTextObject();
  214. //Calculate padding rectangle
  215. float sx = startx;
  216. float sy = starty;
  217. float paddRectWidth = width;
  218. float paddRectHeight = height;
  219. if (bpsLeft != null) {
  220. sx += bpsLeft.width / 1000f;
  221. paddRectWidth -= bpsLeft.width / 1000f;
  222. }
  223. if (bpsTop != null) {
  224. sy += bpsTop.width / 1000f;
  225. paddRectHeight -= bpsTop.width / 1000f;
  226. }
  227. if (bpsRight != null) {
  228. paddRectWidth -= bpsRight.width / 1000f;
  229. }
  230. if (bpsBottom != null) {
  231. paddRectHeight -= bpsBottom.width / 1000f;
  232. }
  233. saveGraphicsState();
  234. clipBackground(sx, sy, paddRectWidth, paddRectHeight, bpsTop, bpsBottom, bpsLeft, bpsRight);
  235. if (back.getColor() != null) {
  236. updateColor(back.getColor(), true);
  237. fillRect(sx, sy, paddRectWidth, paddRectHeight);
  238. }
  239. if (back.getImageInfo() != null) {
  240. ImageSize imageSize = back.getImageInfo().getSize();
  241. int horzCount = (int)((paddRectWidth
  242. * 1000 / imageSize.getWidthMpt()) + 1.0f);
  243. int vertCount = (int)((paddRectHeight
  244. * 1000 / imageSize.getHeightMpt()) + 1.0f);
  245. if (back.getRepeat() == EN_NOREPEAT) {
  246. horzCount = 1;
  247. vertCount = 1;
  248. } else if (back.getRepeat() == EN_REPEATX) {
  249. vertCount = 1;
  250. } else if (back.getRepeat() == EN_REPEATY) {
  251. horzCount = 1;
  252. }
  253. //change from points to millipoints
  254. sx *= 1000;
  255. sy *= 1000;
  256. if (horzCount == 1) {
  257. sx += back.getHoriz();
  258. }
  259. if (vertCount == 1) {
  260. sy += back.getVertical();
  261. }
  262. for (int x = 0; x < horzCount; x++) {
  263. for (int y = 0; y < vertCount; y++) {
  264. // place once
  265. Rectangle2D pos;
  266. // Image positions are relative to the currentIP/BP
  267. pos = new Rectangle2D.Float(sx - currentIPPosition
  268. + (x * imageSize.getWidthMpt()),
  269. sy - currentBPPosition
  270. + (y * imageSize.getHeightMpt()),
  271. imageSize.getWidthMpt(),
  272. imageSize.getHeightMpt());
  273. drawImage(back.getURL(), pos);
  274. }
  275. }
  276. }
  277. restoreGraphicsState();
  278. }
  279. }
  280. /**
  281. * TODO represent border related parameters in a class
  282. * Clip the background to the inner border.
  283. * This draws the border traits given the position and the traits.
  284. *
  285. * @param startx the start x position
  286. * @param starty the start y position
  287. * @param width the width of the area
  288. * @param height the height of the area
  289. * @param bpsBefore the border-before traits
  290. * @param bpsAfter the border-after traits
  291. * @param bpsStart the border-start traits
  292. * @param bpsEnd the border-end traits
  293. * @param innerBackgroundColor the background color of the block
  294. */
  295. protected void clipBackground (float startx, float starty,
  296. float width, float height,
  297. BorderProps bpsBefore, BorderProps bpsAfter,
  298. BorderProps bpsStart, BorderProps bpsEnd) {
  299. clipRect(startx, starty, width, height);
  300. }
  301. /**
  302. * Draw the borders.
  303. * This draws the border traits given the position and the traits.
  304. *
  305. * @param startx the start x position
  306. * @param starty the start y position
  307. * @param width the width of the area
  308. * @param height the height of the area
  309. * @param bpsBefore the border traits associated with before edge
  310. * @param bpsAfter the border traits associated with after edge
  311. * @param bpsStart the border traits associated with start edge
  312. * @param bpsEnd the border traits associated with end edge
  313. * @param level of bidirectional embedding
  314. * @param innerBackgroundColor the background color of the block
  315. */
  316. protected void drawBorders( // CSOK: ParameterNumber
  317. float startx, float starty, float width, float height,
  318. BorderProps bpsBefore, BorderProps bpsAfter,
  319. BorderProps bpsStart, BorderProps bpsEnd, int level, Color innerBackgroundColor) {
  320. Rectangle2D.Float borderRect = new Rectangle2D.Float(startx, starty, width, height);
  321. BorderProps bpsTop = bpsBefore;
  322. BorderProps bpsBottom = bpsAfter;
  323. BorderProps bpsLeft;
  324. BorderProps bpsRight;
  325. if ( ( level == -1 ) || ( ( level & 1 ) == 0 ) ) {
  326. bpsLeft = bpsStart;
  327. bpsRight = bpsEnd;
  328. } else {
  329. bpsLeft = bpsEnd;
  330. bpsRight = bpsStart;
  331. }
  332. drawBorders(borderRect, bpsTop, bpsBottom, bpsLeft, bpsRight, innerBackgroundColor);
  333. }
  334. private static final int TOP = 0;
  335. private static final int RIGHT = 1;
  336. private static final int BOTTOM = 2;
  337. private static final int LEFT = 3;
  338. /**
  339. * Draws borders.
  340. * @param borderRect the border rectangle
  341. * @param bpsTop the border specification on the top edge
  342. * @param bpsBottom the border traits associated with bottom edge
  343. * @param bpsLeft the border specification on the left edge
  344. * @param bpsRight the border specification on the right edge
  345. * @param innerBackgroundColor the background color of the block
  346. */
  347. protected void drawBorders( // CSOK: MethodLength
  348. Rectangle2D.Float borderRect,
  349. BorderProps bpsTop, BorderProps bpsBottom, BorderProps bpsLeft, BorderProps bpsRight,
  350. Color innerBackgroundColor) {
  351. //TODO generalize each of the four conditions into using a parameterized drawBorder()
  352. boolean[] border = new boolean[] {
  353. (bpsTop != null), (bpsRight != null),
  354. (bpsBottom != null), (bpsLeft != null)};
  355. float startx = borderRect.x;
  356. float starty = borderRect.y;
  357. float width = borderRect.width;
  358. float height = borderRect.height;
  359. float[] borderWidth = new float[] {
  360. (border[TOP] ? bpsTop.width / 1000f : 0.0f),
  361. (border[RIGHT] ? bpsRight.width / 1000f : 0.0f),
  362. (border[BOTTOM] ? bpsBottom.width / 1000f : 0.0f),
  363. (border[LEFT] ? bpsLeft.width / 1000f : 0.0f)};
  364. float[] clipw = new float[] {
  365. BorderProps.getClippedWidth(bpsTop) / 1000f,
  366. BorderProps.getClippedWidth(bpsRight) / 1000f,
  367. BorderProps.getClippedWidth(bpsBottom) / 1000f,
  368. BorderProps.getClippedWidth(bpsLeft) / 1000f};
  369. starty += clipw[TOP];
  370. height -= clipw[TOP];
  371. height -= clipw[BOTTOM];
  372. startx += clipw[LEFT];
  373. width -= clipw[LEFT];
  374. width -= clipw[RIGHT];
  375. boolean[] slant = new boolean[] {
  376. (border[LEFT] && border[TOP]),
  377. (border[TOP] && border[RIGHT]),
  378. (border[RIGHT] && border[BOTTOM]),
  379. (border[BOTTOM] && border[LEFT])};
  380. if (bpsTop != null) {
  381. endTextObject();
  382. float sx1 = startx;
  383. float sx2 = (slant[TOP] ? sx1 + borderWidth[LEFT] - clipw[LEFT] : sx1);
  384. float ex1 = startx + width;
  385. float ex2 = (slant[RIGHT] ? ex1 - borderWidth[RIGHT] + clipw[RIGHT] : ex1);
  386. float outery = starty - clipw[TOP];
  387. float clipy = outery + clipw[TOP];
  388. float innery = outery + borderWidth[TOP];
  389. saveGraphicsState();
  390. moveTo(sx1, clipy);
  391. float sx1a = sx1;
  392. float ex1a = ex1;
  393. if (isCollapseOuter(bpsTop)) {
  394. if (isCollapseOuter(bpsLeft)) {
  395. sx1a -= clipw[LEFT];
  396. }
  397. if (isCollapseOuter(bpsRight)) {
  398. ex1a += clipw[RIGHT];
  399. }
  400. lineTo(sx1a, outery);
  401. lineTo(ex1a, outery);
  402. }
  403. lineTo(ex1, clipy);
  404. lineTo(ex2, innery);
  405. lineTo(sx2, innery);
  406. closePath();
  407. clip();
  408. drawBorderLine(sx1a, outery, ex1a, innery, true, true,
  409. bpsTop.style, bpsTop.color);
  410. restoreGraphicsState();
  411. }
  412. if (bpsRight != null) {
  413. endTextObject();
  414. float sy1 = starty;
  415. float sy2 = (slant[RIGHT] ? sy1 + borderWidth[TOP] - clipw[TOP] : sy1);
  416. float ey1 = starty + height;
  417. float ey2 = (slant[BOTTOM] ? ey1 - borderWidth[BOTTOM] + clipw[BOTTOM] : ey1);
  418. float outerx = startx + width + clipw[RIGHT];
  419. float clipx = outerx - clipw[RIGHT];
  420. float innerx = outerx - borderWidth[RIGHT];
  421. saveGraphicsState();
  422. moveTo(clipx, sy1);
  423. float sy1a = sy1;
  424. float ey1a = ey1;
  425. if (isCollapseOuter(bpsRight)) {
  426. if (isCollapseOuter(bpsTop)) {
  427. sy1a -= clipw[TOP];
  428. }
  429. if (isCollapseOuter(bpsBottom)) {
  430. ey1a += clipw[BOTTOM];
  431. }
  432. lineTo(outerx, sy1a);
  433. lineTo(outerx, ey1a);
  434. }
  435. lineTo(clipx, ey1);
  436. lineTo(innerx, ey2);
  437. lineTo(innerx, sy2);
  438. closePath();
  439. clip();
  440. drawBorderLine(innerx, sy1a, outerx, ey1a, false, false,
  441. bpsRight.style, bpsRight.color);
  442. restoreGraphicsState();
  443. }
  444. if (bpsBottom != null) {
  445. endTextObject();
  446. float sx1 = startx;
  447. float sx2 = (slant[LEFT] ? sx1 + borderWidth[LEFT] - clipw[LEFT] : sx1);
  448. float ex1 = startx + width;
  449. float ex2 = (slant[BOTTOM] ? ex1 - borderWidth[RIGHT] + clipw[RIGHT] : ex1);
  450. float outery = starty + height + clipw[BOTTOM];
  451. float clipy = outery - clipw[BOTTOM];
  452. float innery = outery - borderWidth[BOTTOM];
  453. saveGraphicsState();
  454. moveTo(ex1, clipy);
  455. float sx1a = sx1;
  456. float ex1a = ex1;
  457. if (isCollapseOuter(bpsBottom)) {
  458. if (isCollapseOuter(bpsLeft)) {
  459. sx1a -= clipw[LEFT];
  460. }
  461. if (isCollapseOuter(bpsRight)) {
  462. ex1a += clipw[RIGHT];
  463. }
  464. lineTo(ex1a, outery);
  465. lineTo(sx1a, outery);
  466. }
  467. lineTo(sx1, clipy);
  468. lineTo(sx2, innery);
  469. lineTo(ex2, innery);
  470. closePath();
  471. clip();
  472. drawBorderLine(sx1a, innery, ex1a, outery, true, false,
  473. bpsBottom.style, bpsBottom.color);
  474. restoreGraphicsState();
  475. }
  476. if (bpsLeft != null) {
  477. endTextObject();
  478. float sy1 = starty;
  479. float sy2 = (slant[TOP] ? sy1 + borderWidth[TOP] - clipw[TOP] : sy1);
  480. float ey1 = sy1 + height;
  481. float ey2 = (slant[LEFT] ? ey1 - borderWidth[BOTTOM] + clipw[BOTTOM] : ey1);
  482. float outerx = startx - clipw[LEFT];
  483. float clipx = outerx + clipw[LEFT];
  484. float innerx = outerx + borderWidth[LEFT];
  485. saveGraphicsState();
  486. moveTo(clipx, ey1);
  487. float sy1a = sy1;
  488. float ey1a = ey1;
  489. if (isCollapseOuter(bpsLeft)) {
  490. if (isCollapseOuter(bpsTop)) {
  491. sy1a -= clipw[TOP];
  492. }
  493. if (isCollapseOuter(bpsBottom)) {
  494. ey1a += clipw[BOTTOM];
  495. }
  496. lineTo(outerx, ey1a);
  497. lineTo(outerx, sy1a);
  498. }
  499. lineTo(clipx, sy1);
  500. lineTo(innerx, sy2);
  501. lineTo(innerx, ey2);
  502. closePath();
  503. clip();
  504. drawBorderLine(outerx, sy1a, innerx, ey1a, false, true, bpsLeft.style, bpsLeft.color);
  505. restoreGraphicsState();
  506. }
  507. }
  508. private boolean isCollapseOuter(BorderProps bp) {
  509. return bp != null && bp.isCollapseOuter();
  510. }
  511. /**
  512. * Common method to render the background and borders for any inline area.
  513. * The all borders and padding are drawn outside the specified area.
  514. * @param area the inline area for which the background, border and padding is to be
  515. * rendered
  516. */
  517. protected void renderInlineAreaBackAndBorders(InlineArea area) {
  518. float borderPaddingStart = area.getBorderAndPaddingWidthStart() / 1000f;
  519. float borderPaddingEnd = area.getBorderAndPaddingWidthEnd() / 1000f;
  520. float borderPaddingBefore = area.getBorderAndPaddingWidthBefore() / 1000f;
  521. float borderPaddingAfter = area.getBorderAndPaddingWidthAfter() / 1000f;
  522. float bpwidth = borderPaddingStart + borderPaddingEnd;
  523. float bpheight = borderPaddingBefore + borderPaddingAfter;
  524. float height = area.getBPD() / 1000f;
  525. if (height != 0.0f || bpheight != 0.0f && bpwidth != 0.0f) {
  526. float x = currentIPPosition / 1000f;
  527. float y = (currentBPPosition + area.getBlockProgressionOffset()) / 1000f;
  528. float width = area.getIPD() / 1000f;
  529. drawBackAndBorders(area, x, y - borderPaddingBefore
  530. , width + bpwidth
  531. , height + bpheight);
  532. }
  533. }
  534. /** Constant for the fox:transform extension attribute */
  535. protected static final QName FOX_TRANSFORM
  536. = new QName(ExtensionElementMapping.URI, "fox:transform");
  537. /** {@inheritDoc} */
  538. protected void renderBlockViewport(BlockViewport bv, List children) {
  539. // clip and position viewport if necessary
  540. // save positions
  541. int saveIP = currentIPPosition;
  542. int saveBP = currentBPPosition;
  543. CTM ctm = bv.getCTM();
  544. int borderPaddingBefore = bv.getBorderAndPaddingWidthBefore();
  545. int positioning = bv.getPositioning();
  546. if (positioning == Block.ABSOLUTE || positioning == Block.FIXED) {
  547. //For FIXED, we need to break out of the current viewports to the
  548. //one established by the page. We save the state stack for restoration
  549. //after the block-container has been painted. See below.
  550. List breakOutList = null;
  551. if (positioning == Block.FIXED) {
  552. breakOutList = breakOutOfStateStack();
  553. }
  554. AffineTransform positionTransform = new AffineTransform();
  555. positionTransform.translate(bv.getXOffset(), bv.getYOffset());
  556. int level = bv.getBidiLevel();
  557. int borderPaddingStart = bv.getBorderAndPaddingWidthStart();
  558. int borderPaddingEnd = bv.getBorderAndPaddingWidthEnd();
  559. //"left/"top" (bv.getX/YOffset()) specify the position of the content rectangle
  560. if ( ( level == -1 ) || ( ( level & 1 ) == 0 ) ) {
  561. positionTransform.translate(-borderPaddingStart, -borderPaddingBefore);
  562. } else {
  563. positionTransform.translate(-borderPaddingEnd, -borderPaddingBefore);
  564. }
  565. //Free transformation for the block-container viewport
  566. String transf;
  567. transf = bv.getForeignAttributeValue(FOX_TRANSFORM);
  568. if (transf != null) {
  569. AffineTransform freeTransform = AWTTransformProducer.createAffineTransform(transf);
  570. positionTransform.concatenate(freeTransform);
  571. }
  572. //Viewport position
  573. if (!positionTransform.isIdentity()) {
  574. establishTransformationMatrix(positionTransform);
  575. }
  576. //This is the content-rect
  577. float width = bv.getIPD() / 1000f;
  578. float height = bv.getBPD() / 1000f;
  579. //Background and borders
  580. float borderPaddingWidth
  581. = (borderPaddingStart + borderPaddingEnd) / 1000f;
  582. float borderPaddingHeight
  583. = (borderPaddingBefore + bv.getBorderAndPaddingWidthAfter()) / 1000f;
  584. drawBackAndBorders(bv, 0, 0, width + borderPaddingWidth, height + borderPaddingHeight);
  585. //Shift to content rectangle after border painting
  586. AffineTransform contentRectTransform = new AffineTransform();
  587. if ( ( level == -1 ) || ( ( level & 1 ) == 0 ) ) {
  588. contentRectTransform.translate(borderPaddingStart, borderPaddingBefore);
  589. } else {
  590. contentRectTransform.translate(borderPaddingEnd, borderPaddingBefore);
  591. }
  592. if (!contentRectTransform.isIdentity()) {
  593. establishTransformationMatrix(contentRectTransform);
  594. }
  595. //Clipping
  596. if (bv.hasClip()) {
  597. clipRect(0f, 0f, width, height);
  598. }
  599. //Set up coordinate system for content rectangle
  600. AffineTransform contentTransform = ctm.toAffineTransform();
  601. if (!contentTransform.isIdentity()) {
  602. establishTransformationMatrix(contentTransform);
  603. }
  604. currentIPPosition = 0;
  605. currentBPPosition = 0;
  606. renderBlocks(bv, children);
  607. if (!contentTransform.isIdentity()) {
  608. restoreGraphicsState();
  609. }
  610. if (!contentRectTransform.isIdentity()) {
  611. restoreGraphicsState();
  612. }
  613. if (!positionTransform.isIdentity()) {
  614. restoreGraphicsState();
  615. }
  616. //For FIXED, we need to restore break out now we are done
  617. if (positioning == Block.FIXED) {
  618. if (breakOutList != null) {
  619. restoreStateStackAfterBreakOut(breakOutList);
  620. }
  621. }
  622. currentIPPosition = saveIP;
  623. currentBPPosition = saveBP;
  624. } else {
  625. currentBPPosition += bv.getSpaceBefore();
  626. //borders and background in the old coordinate system
  627. handleBlockTraits(bv);
  628. //Advance to start of content area
  629. currentIPPosition += bv.getStartIndent();
  630. CTM tempctm = new CTM(containingIPPosition, currentBPPosition);
  631. ctm = tempctm.multiply(ctm);
  632. //Now adjust for border/padding
  633. currentBPPosition += borderPaddingBefore;
  634. Rectangle clippingRect = null;
  635. if (bv.hasClip()) {
  636. clippingRect = new Rectangle(currentIPPosition, currentBPPosition,
  637. bv.getIPD(), bv.getBPD());
  638. }
  639. startVParea(ctm, clippingRect);
  640. currentIPPosition = 0;
  641. currentBPPosition = 0;
  642. renderBlocks(bv, children);
  643. endVParea();
  644. currentIPPosition = saveIP;
  645. currentBPPosition = saveBP;
  646. currentBPPosition += (bv.getAllocBPD());
  647. }
  648. }
  649. /** {@inheritDoc} */
  650. protected void renderReferenceArea(Block block) {
  651. // save position and offset
  652. int saveIP = currentIPPosition;
  653. int saveBP = currentBPPosition;
  654. //Establish a new coordinate system
  655. AffineTransform at = new AffineTransform();
  656. at.translate(currentIPPosition, currentBPPosition);
  657. at.translate(block.getXOffset(), block.getYOffset());
  658. at.translate(0, block.getSpaceBefore());
  659. if (!at.isIdentity()) {
  660. establishTransformationMatrix(at);
  661. }
  662. currentIPPosition = 0;
  663. currentBPPosition = 0;
  664. handleBlockTraits(block);
  665. List children = block.getChildAreas();
  666. if (children != null) {
  667. renderBlocks(block, children);
  668. }
  669. if (!at.isIdentity()) {
  670. restoreGraphicsState();
  671. }
  672. // stacked and relative blocks effect stacking
  673. currentIPPosition = saveIP;
  674. currentBPPosition = saveBP;
  675. }
  676. /** {@inheritDoc} */
  677. protected void renderFlow(NormalFlow flow) {
  678. // save position and offset
  679. int saveIP = currentIPPosition;
  680. int saveBP = currentBPPosition;
  681. //Establish a new coordinate system
  682. AffineTransform at = new AffineTransform();
  683. at.translate(currentIPPosition, currentBPPosition);
  684. if (!at.isIdentity()) {
  685. establishTransformationMatrix(at);
  686. }
  687. currentIPPosition = 0;
  688. currentBPPosition = 0;
  689. super.renderFlow(flow);
  690. if (!at.isIdentity()) {
  691. restoreGraphicsState();
  692. }
  693. // stacked and relative blocks effect stacking
  694. currentIPPosition = saveIP;
  695. currentBPPosition = saveBP;
  696. }
  697. /**
  698. * Concatenates the current transformation matrix with the given one, therefore establishing
  699. * a new coordinate system.
  700. * @param at the transformation matrix to process (coordinates in points)
  701. */
  702. protected abstract void concatenateTransformationMatrix(AffineTransform at);
  703. /**
  704. * Render an inline viewport.
  705. * This renders an inline viewport by clipping if necessary.
  706. * @param viewport the viewport to handle
  707. */
  708. public void renderInlineViewport(InlineViewport viewport) {
  709. int level = viewport.getBidiLevel();
  710. float x = currentIPPosition / 1000f;
  711. float y = (currentBPPosition + viewport.getBlockProgressionOffset()) / 1000f;
  712. float width = viewport.getIPD() / 1000f;
  713. float height = viewport.getBPD() / 1000f;
  714. // TODO: Calculate the border rect correctly.
  715. float borderPaddingStart = viewport.getBorderAndPaddingWidthStart() / 1000f;
  716. float borderPaddingEnd = viewport.getBorderAndPaddingWidthEnd() / 1000f;
  717. float borderPaddingBefore = viewport.getBorderAndPaddingWidthBefore() / 1000f;
  718. float borderPaddingAfter = viewport.getBorderAndPaddingWidthAfter() / 1000f;
  719. float bpwidth = borderPaddingStart + borderPaddingEnd;
  720. float bpheight = borderPaddingBefore + borderPaddingAfter;
  721. drawBackAndBorders(viewport, x, y, width + bpwidth, height + bpheight);
  722. if (viewport.hasClip()) {
  723. saveGraphicsState();
  724. if ( ( level == -1 ) || ( ( level & 1 ) == 0 ) ) {
  725. clipRect(x + borderPaddingStart, y + borderPaddingBefore, width, height);
  726. } else {
  727. clipRect(x + borderPaddingEnd, y + borderPaddingBefore, width, height);
  728. }
  729. }
  730. super.renderInlineViewport(viewport);
  731. if (viewport.hasClip()) {
  732. restoreGraphicsState();
  733. }
  734. }
  735. /**
  736. * Restores the state stack after a break out.
  737. * @param breakOutList the state stack to restore.
  738. */
  739. protected abstract void restoreStateStackAfterBreakOut(List breakOutList);
  740. /**
  741. * Breaks out of the state stack to handle fixed block-containers.
  742. * @return the saved state stack to recreate later
  743. */
  744. protected abstract List breakOutOfStateStack();
  745. /** Saves the graphics state of the rendering engine. */
  746. protected abstract void saveGraphicsState();
  747. /** Restores the last graphics state of the rendering engine. */
  748. protected abstract void restoreGraphicsState();
  749. /** Indicates the beginning of a text object. */
  750. protected abstract void beginTextObject();
  751. /** Indicates the end of a text object. */
  752. protected abstract void endTextObject();
  753. /**
  754. * Paints the text decoration marks.
  755. * @param fm Current typeface
  756. * @param fontsize Current font size
  757. * @param inline inline area to paint the marks for
  758. * @param baseline position of the baseline
  759. * @param startx start IPD
  760. */
  761. protected void renderTextDecoration(FontMetrics fm, int fontsize, InlineArea inline,
  762. int baseline, int startx) {
  763. boolean hasTextDeco = inline.hasUnderline()
  764. || inline.hasOverline()
  765. || inline.hasLineThrough();
  766. if (hasTextDeco) {
  767. endTextObject();
  768. float descender = fm.getDescender(fontsize) / 1000f;
  769. float capHeight = fm.getCapHeight(fontsize) / 1000f;
  770. float halfLineWidth = (descender / -8f) / 2f;
  771. float endx = (startx + inline.getIPD()) / 1000f;
  772. if (inline.hasUnderline()) {
  773. Color ct = (Color) inline.getTrait(Trait.UNDERLINE_COLOR);
  774. float y = baseline - descender / 2f;
  775. drawBorderLine(startx / 1000f, (y - halfLineWidth) / 1000f,
  776. endx, (y + halfLineWidth) / 1000f,
  777. true, true, Constants.EN_SOLID, ct);
  778. }
  779. if (inline.hasOverline()) {
  780. Color ct = (Color) inline.getTrait(Trait.OVERLINE_COLOR);
  781. float y = (float)(baseline - (1.1 * capHeight));
  782. drawBorderLine(startx / 1000f, (y - halfLineWidth) / 1000f,
  783. endx, (y + halfLineWidth) / 1000f,
  784. true, true, Constants.EN_SOLID, ct);
  785. }
  786. if (inline.hasLineThrough()) {
  787. Color ct = (Color) inline.getTrait(Trait.LINETHROUGH_COLOR);
  788. float y = (float)(baseline - (0.45 * capHeight));
  789. drawBorderLine(startx / 1000f, (y - halfLineWidth) / 1000f,
  790. endx, (y + halfLineWidth) / 1000f,
  791. true, true, Constants.EN_SOLID, ct);
  792. }
  793. }
  794. }
  795. /** Clip using the current path. */
  796. protected abstract void clip();
  797. /**
  798. * Clip using a rectangular area.
  799. * @param x the x coordinate (in points)
  800. * @param y the y coordinate (in points)
  801. * @param width the width of the rectangle (in points)
  802. * @param height the height of the rectangle (in points)
  803. */
  804. protected abstract void clipRect(float x, float y, float width, float height);
  805. /**
  806. * Moves the current point to (x, y), omitting any connecting line segment.
  807. * @param x x coordinate
  808. * @param y y coordinate
  809. */
  810. protected abstract void moveTo(float x, float y);
  811. /**
  812. * Appends a straight line segment from the current point to (x, y). The
  813. * new current point is (x, y).
  814. * @param x x coordinate
  815. * @param y y coordinate
  816. */
  817. protected abstract void lineTo(float x, float y);
  818. /**
  819. * Closes the current subpath by appending a straight line segment from
  820. * the current point to the starting point of the subpath.
  821. */
  822. protected abstract void closePath();
  823. /**
  824. * Fill a rectangular area.
  825. * @param x the x coordinate
  826. * @param y the y coordinate
  827. * @param width the width of the rectangle
  828. * @param height the height of the rectangle
  829. */
  830. protected abstract void fillRect(float x, float y, float width, float height);
  831. /**
  832. * Establishes a new foreground or fill color.
  833. * @param col the color to apply (null skips this operation)
  834. * @param fill true to set the fill color, false for the foreground color
  835. */
  836. protected abstract void updateColor(Color col, boolean fill);
  837. /**
  838. * Draw an image at the indicated location.
  839. * @param url the URI/URL of the image
  840. * @param pos the position of the image
  841. * @param foreignAttributes an optional Map with foreign attributes, may be null
  842. */
  843. protected abstract void drawImage(String url, Rectangle2D pos, Map foreignAttributes);
  844. /**
  845. * Draw an image at the indicated location.
  846. * @param url the URI/URL of the image
  847. * @param pos the position of the image
  848. */
  849. protected final void drawImage(String url, Rectangle2D pos) {
  850. drawImage(url, pos, null);
  851. }
  852. /**
  853. * Draw a border segment of an XSL-FO style border.
  854. * @param x1 starting x coordinate
  855. * @param y1 starting y coordinate
  856. * @param x2 ending x coordinate
  857. * @param y2 ending y coordinate
  858. * @param horz true for horizontal border segments, false for vertical border segments
  859. * @param startOrBefore true for border segments on the start or before edge,
  860. * false for end or after.
  861. * @param style the border style (one of Constants.EN_DASHED etc.)
  862. * @param col the color for the border segment
  863. */
  864. protected abstract void drawBorderLine( // CSOK: ParameterNumber
  865. float x1, float y1, float x2, float y2, boolean horz,
  866. boolean startOrBefore, int style, Color col);
  867. /** {@inheritDoc} */
  868. public void renderForeignObject(ForeignObject fo, Rectangle2D pos) {
  869. endTextObject();
  870. Document doc = fo.getDocument();
  871. String ns = fo.getNameSpace();
  872. renderDocument(doc, ns, pos, fo.getForeignAttributes());
  873. }
  874. /**
  875. * Establishes a new coordinate system with the given transformation matrix.
  876. * The current graphics state is saved and the new coordinate system is concatenated.
  877. * @param at the transformation matrix
  878. */
  879. protected void establishTransformationMatrix(AffineTransform at) {
  880. saveGraphicsState();
  881. concatenateTransformationMatrix(UnitConv.mptToPt(at));
  882. }
  883. }