| 70 | } |
| 71 | |
| 72 | void TeXRender::setHeight(int height, int align) { |
| 73 | float diff = height - getHeight(); |
| 74 | // FIXME |
| 75 | // only care if new height larger than old |
| 76 | if (diff > 0) { |
| 77 | _box = sptr<Box>(new VerticalBox(_box, diff, align)); |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | void TeXRender::draw(_out_ Graphics2D& g2, int x, int y) { |
| 82 | color old = g2.getColor(); |
nothing calls this directly
no outgoing calls
no test coverage detected