class HexaPDF::Layout::Box

Parent
Included Modules

The base class for all layout boxes.

Box Model

HexaPDF uses the following box model:

  • Each box can specify a width and height. Padding and border are inside, the margin outside of this rectangle.

  • The content_width and content_height accessors can be used to get the width and height of the content box without padding and the border.

  • If width or height is set to zero, they are determined automatically during layouting.

Subclasses

Each subclass should only take keyword arguments on initialization so that the boxes can be instantiated from the common convenience method HexaPDF::Document::Layout#box. To use this facility subclasses need to be registered with the configuration option 'layout.boxes.map'.

The methods fit, supports_position_flow?, split or split_content, empty?, and draw or draw_content need to be customized according to the subclass's use case.

fit

This method should return true if fitting was successful. Additionally, the @fit_successful instance variable needs to be set to the fit result as it is used in split.

supports_position_flow?

If the subclass supports the value :flow of the 'position' style property, this method needs to be overridden to return true.

split

This method splits the content so that the available space is used as good as possible. The default implementation should be fine for most use-cases, so only split_content needs to be implemented. The method create_split_box should be used for getting a basic cloned box.

empty?

This method should return true if the subclass won't draw anything when draw is called.

draw

This method draws the content and the default implementation already handles things like drawing the border and background. Therefore it's best to implement draw_content which should just draw the content.

Attributes

height[R]

The height of the box, including padding and/or borders.

properties[R]

Hash with custom properties. The keys should be strings and can be arbitrary.

This can be used to store arbitrary information on boxes for later use. For example, a generic style layer could use one or more custom properties for its work.

The Box class itself uses the following properties:

optional_content

If this property is set, it needs to be an optional content group dictionary, a String defining an (optionally existing) optional content group dictionary, or an optional content membership dictionary.

The whole content of the box, i.e. including padding, border, background…, is wrapped with the appropriate commands so that the optional content group or membership dictionary specifies whether the content is shown or not.

See: HexaPDF::Type::OptionalContentProperties

style[R]

The style to be applied.

Only the following properties are used:

width[R]

The width of the box, including padding and/or borders.

Public Class Methods

create(width: 0, height: 0, content_box: false, style: nil, **style_properties, &block)

Creates a new Box object, using the provided block as drawing block (see ::new).

If content_box is true, the width and height are taken to mean the content width and height and the style's padding and border are added to them appropriately.

The style argument defines the Style object (see Style::create for details) for the box. Any additional keyword arguments have to be style properties and are applied to the style object.

new(width: 0, height: 0, style: nil, properties: nil) {|canv, box| block} → box

Creates a new Box object with the given width and height that uses the provided block when it is asked to draw itself on a canvas (see draw).

Since the final location of the box is not known beforehand, the drawing operations inside the block should draw inside the rectangle (0, 0, content_width, content_height) - note that the width and height of the box may not be known beforehand.

Public Instance Methods

content_height()

The height of the content box, i.e. without padding and/or borders.

content_width()

The width of the content box, i.e. without padding and/or borders.

draw(canvas, x, y)

Draws the content of the box onto the canvas at the position (x, y).

The coordinate system is translated so that the origin is at the bottom left corner of the **content box** during the drawing operations when +@draw_block+ is used.

The block specified when creating the box is invoked with the canvas and the box as arguments. Subclasses can specify an on-demand drawing method by setting the +@draw_block+ instance variable to nil or a valid block. This is useful to avoid unnecessary set-up operations when the block does nothing.

empty?()

Returns true if no drawing operations are performed.

fit(available_width, available_height, _frame)

Fits the box into the Frame and returns true if fitting was successful.

The default implementation uses the whole available space for width and height if they were initially set to 0. Otherwise the specified dimensions are used.

split(available_width, available_height, frame)

Tries to split the box into two, the first of which needs to fit into the available space, and returns the parts as array.

If the first item in the result array is not nil, it needs to be this box and it means that even when fit fails, a part of the box may still fit. Note that fit should not be called before draw on the first box since it is already fitted. If not even a part of this box fits into the available space, nil should be returned as the first array element.

Possible return values:

[self]

The box fully fits into the available space.

[nil, self]

The box can't be split or no part of the box fits into the available space.

[self, new_box]

A part of the box fits and a new box is returned for the rest.

This default implementation provides the basic functionality based on the fit result that should be sufficient for most subclasses; only split_content needs to be implemented if necessary.

split_box?()

Returns true if this is a split box, i.e. the rest of another box after it was split.

supports_position_flow?()

Returns false since a basic box doesn't support the 'position' style property value :flow.