1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
|
/**
* ===========================================
* LibLayout : a free Java layouting library
* ===========================================
*
* Project Info: http://reporting.pentaho.org/liblayout/
*
* (C) Copyright 2006-2007, by Pentaho Corporation and Contributors.
*
* This library is free software; you can redistribute it and/or modify it under the terms
* of the GNU Lesser General Public License as published by the Free Software Foundation;
* either version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along with this
* library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307, USA.
*
* [Java is a trademark or registered trademark of Sun Microsystems, Inc.
* in the United States and other countries.]
*
* ------------
* $Id: DefaultBoxDefinition.java 3524 2007-10-16 11:26:31Z tmorgner $
* ------------
* (C) Copyright 2006-2007, by Pentaho Corporation.
*/
package org.jfree.layouting.renderer.model;
import org.jfree.layouting.input.style.values.CSSColorValue;
import org.jfree.layouting.renderer.border.Border;
import org.jfree.layouting.renderer.border.RenderLength;
/**
* Describes the margins, paddings, borders and sizes of a box. (This does not
* define or describe the *actual* value used for the rendering, it describes
* the stylesheet's computed values.)
*
* @author Thomas Morgner
*/
public class DefaultBoxDefinition implements BoxDefinition
{
private RenderLength marginTop;
private RenderLength marginBottom;
private RenderLength marginLeft;
private RenderLength marginRight;
private RenderLength paddingTop;
private RenderLength paddingLeft;
private RenderLength paddingBottom;
private RenderLength paddingRight;
private Border border;
private RenderLength minimumWidth;
private RenderLength minimumHeight;
private RenderLength maximumWidth;
private RenderLength maximumHeight;
private RenderLength preferredWidth;
private RenderLength preferredHeight;
private CSSColorValue backgroundColor;
private Boolean empty;
public DefaultBoxDefinition()
{
marginTop = RenderLength.EMPTY;
marginLeft = RenderLength.EMPTY;
marginBottom = RenderLength.EMPTY;
marginRight = RenderLength.EMPTY;
paddingTop = RenderLength.EMPTY;
paddingLeft = RenderLength.EMPTY;
paddingBottom = RenderLength.EMPTY;
paddingRight = RenderLength.EMPTY;
maximumWidth = RenderLength.EMPTY;
maximumHeight = RenderLength.EMPTY;
minimumWidth = RenderLength.EMPTY;
minimumHeight = RenderLength.EMPTY;
preferredWidth = RenderLength.EMPTY;
preferredHeight = RenderLength.EMPTY;
border = Border.createEmptyBorder();
}
public Border getBorder()
{
return border;
}
public void setBorder(final Border border)
{
if (border == null)
{
throw new NullPointerException();
}
this.border = border;
}
public RenderLength getMarginTop()
{
return marginTop;
}
public void setMarginTop(final RenderLength marginTop)
{
if (marginTop == null)
{
throw new NullPointerException();
}
this.marginTop = marginTop;
}
public RenderLength getMarginBottom()
{
return marginBottom;
}
public void setMarginBottom(final RenderLength marginBottom)
{
if (marginBottom == null)
{
throw new NullPointerException();
}
this.marginBottom = marginBottom;
}
public RenderLength getMarginLeft()
{
return marginLeft;
}
public void setMarginLeft(final RenderLength marginLeft)
{
if (marginLeft == null)
{
throw new NullPointerException();
}
this.marginLeft = marginLeft;
}
public RenderLength getMarginRight()
{
return marginRight;
}
public void setMarginRight(final RenderLength marginRight)
{
if (marginRight == null)
{
throw new NullPointerException();
}
this.marginRight = marginRight;
}
public RenderLength getPaddingTop()
{
return paddingTop;
}
public void setPaddingTop(final RenderLength paddingTop)
{
if (paddingTop == null)
{
throw new NullPointerException();
}
this.paddingTop = paddingTop;
}
public RenderLength getPaddingLeft()
{
return paddingLeft;
}
public void setPaddingLeft(final RenderLength paddingLeft)
{
if (paddingLeft == null)
{
throw new NullPointerException();
}
this.paddingLeft = paddingLeft;
}
public RenderLength getPaddingBottom()
{
return paddingBottom;
}
public void setPaddingBottom(final RenderLength paddingBottom)
{
if (paddingBottom == null)
{
throw new NullPointerException();
}
this.paddingBottom = paddingBottom;
}
public RenderLength getPaddingRight()
{
return paddingRight;
}
public void setPaddingRight(final RenderLength paddingRight)
{
if (paddingRight == null)
{
throw new NullPointerException();
}
this.paddingRight = paddingRight;
}
public RenderLength getMinimumWidth()
{
return minimumWidth;
}
public void setMinimumWidth(final RenderLength minimumWidth)
{
if (minimumWidth == null)
{
throw new NullPointerException();
}
this.minimumWidth = minimumWidth;
}
public RenderLength getMinimumHeight()
{
return minimumHeight;
}
public void setMinimumHeight(final RenderLength minimumHeight)
{
if (minimumHeight == null)
{
throw new NullPointerException();
}
this.minimumHeight = minimumHeight;
}
public RenderLength getMaximumWidth()
{
return maximumWidth;
}
public void setMaximumWidth(final RenderLength maximumWidth)
{
if (maximumWidth == null)
{
throw new NullPointerException();
}
this.maximumWidth = maximumWidth;
}
public RenderLength getMaximumHeight()
{
return maximumHeight;
}
public void setMaximumHeight(final RenderLength maximumHeight)
{
if (maximumHeight == null)
{
throw new NullPointerException();
}
this.maximumHeight = maximumHeight;
}
public RenderLength getPreferredWidth()
{
return preferredWidth;
}
public void setPreferredWidth(final RenderLength preferredWidth)
{
if (preferredWidth == null)
{
throw new NullPointerException();
}
this.preferredWidth = preferredWidth;
}
public RenderLength getPreferredHeight()
{
return preferredHeight;
}
public void setPreferredHeight(final RenderLength preferredHeight)
{
if (preferredHeight == null)
{
throw new NullPointerException();
}
this.preferredHeight = preferredHeight;
}
/**
* Split the box definition for the given major axis. A horizontal axis will
* perform vertical splits (resulting in a left and right box definition) and
* a given vertical axis will split the box into a top and bottom box.
*
* @param axis
* @return
*/
public BoxDefinition[] split(final int axis)
{
if (axis == RenderNode.HORIZONTAL_AXIS)
{
return splitVertically();
}
return splitHorizontally();
}
public BoxDefinition[] splitVertically()
{
final Border[] borders = border.splitVertically(null);
final DefaultBoxDefinition first = new DefaultBoxDefinition();
first.marginTop = marginTop;
first.marginLeft = marginLeft;
first.marginBottom = marginBottom;
first.marginRight = RenderLength.EMPTY;
first.paddingBottom = paddingBottom;
first.paddingTop = paddingTop;
first.paddingLeft = paddingLeft;
first.paddingRight = RenderLength.EMPTY;
first.border = borders[0];
first.preferredHeight = preferredHeight;
first.preferredWidth = preferredWidth;
first.minimumHeight = minimumHeight;
first.minimumWidth = minimumWidth;
first.maximumHeight = maximumHeight;
first.maximumWidth = maximumWidth;
final DefaultBoxDefinition second = new DefaultBoxDefinition();
second.marginTop = marginTop;
second.marginLeft = RenderLength.EMPTY;
second.marginBottom = marginBottom;
second.marginRight = marginRight;
second.paddingBottom = paddingBottom;
second.paddingTop = paddingTop;
second.paddingLeft = RenderLength.EMPTY;
second.paddingRight = paddingRight;
second.border = borders[1];
second.preferredHeight = preferredHeight;
second.preferredWidth = preferredWidth;
second.minimumHeight = minimumHeight;
second.minimumWidth = minimumWidth;
second.maximumHeight = maximumHeight;
second.maximumWidth = maximumWidth;
final BoxDefinition[] boxes = new BoxDefinition[2];
boxes[0] = first;
boxes[1] = second;
return boxes;
}
public BoxDefinition[] splitHorizontally()
{
final Border[] borders = border.splitHorizontally(null);
final DefaultBoxDefinition first = new DefaultBoxDefinition();
first.marginTop = marginTop;
first.marginLeft = marginLeft;
first.marginBottom = RenderLength.EMPTY;
first.marginRight = marginRight;
first.paddingBottom = RenderLength.EMPTY;
first.paddingTop = paddingTop;
first.paddingLeft = paddingLeft;
first.paddingRight = paddingRight;
first.border = borders[0];
first.preferredHeight = preferredHeight;
first.preferredWidth = preferredWidth;
first.minimumHeight = minimumHeight;
first.minimumWidth = minimumWidth;
first.maximumHeight = maximumHeight;
first.maximumWidth = maximumWidth;
final DefaultBoxDefinition second = new DefaultBoxDefinition();
second.marginTop = RenderLength.EMPTY;
second.marginLeft = marginLeft;
second.marginBottom = marginBottom;
second.marginRight = marginRight;
second.paddingBottom = paddingBottom;
second.paddingTop = RenderLength.EMPTY;
second.paddingLeft = paddingLeft;
second.paddingRight = paddingRight;
second.border = borders[1];
second.preferredHeight = preferredHeight;
second.preferredWidth = preferredWidth;
second.minimumHeight = minimumHeight;
second.minimumWidth = minimumWidth;
second.maximumHeight = maximumHeight;
second.maximumWidth = maximumWidth;
final BoxDefinition[] boxes = new BoxDefinition[2];
boxes[0] = first;
boxes[1] = second;
return boxes;
}
public CSSColorValue getBackgroundColor()
{
return backgroundColor;
}
public void setBackgroundColor(final CSSColorValue backgroundColor)
{
this.backgroundColor = backgroundColor;
}
public boolean isEmpty()
{
if (empty != null)
{
return empty.booleanValue();
}
if (paddingTop.getValue() != 0)
{
empty = Boolean.FALSE;
return false;
}
if (paddingLeft.getValue() != 0)
{
empty = Boolean.FALSE;
return false;
}
if (paddingBottom.getValue() != 0)
{
empty = Boolean.FALSE;
return false;
}
if (paddingRight.getValue() != 0)
{
empty = Boolean.FALSE;
return false;
}
if (border.isEmpty())
{
empty = Boolean.FALSE;
return false;
}
empty = Boolean.TRUE;
return true;
}
}
|