/usr/include/Wt/Render/WTextRenderer is in libwt-dev 3.3.3+dfsg-4.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | // This may look like C code, but it's really -*- C++ -*-
/*
* Copyright (C) 2010 Emweb bvba, Kessel-Lo, Belgium.
*
* See the LICENSE file for terms of use.
*/
#ifndef RENDER_WTEXT_RENDERER_H_
#define RENDER_WTEXT_RENDERER_H_
#include <Wt/WString>
#include <Wt/WWebWidget>
namespace Wt {
/*! \brief Namespace for the \ref render
*/
namespace Render {
class StyleSheet;
class Block;
struct LayoutBox;
/*! \defgroup render XHTML Rendering (Wt::Render)
* \brief An XHTML rendering library implemented using the %Wt \ref painting
*
* The rendering library contains an (increasingly less limited)
* XHTML/CSS layout engine.
*/
/*! \class WTextRenderer Wt/Render/WTextRenderer Wt/Render/WTextRenderer
* \brief An XHTML renderering engine.
*
* This class implements a rendering engine for a (subset of)
* XHTML/CSS. Its intended use is to be able to accurately render the
* output of the WTextEdit widget (although it handles a more general
* subset of XHTML/CSS than is required to do just that). Its focus is
* on high-quality rendering of text-like contents.
*
* The following are the main features:
* - decent rendering of inline (text) contents, floats,
* tables, images, ordered lists, unordered lists, in any arbitrary
* combination, with mixtures of font sizes, etc...
* - CSS stylesheet support using in-document <style>, inline style
* attributes or using setStyleSheetText().
* - support for relative and absolute positioned layout contexts
* - support for (true type) fonts, font styles, font sizes and text decorations
* - support for text alignment options, padding, margins, borders, background
* color (only on block elements) and text colors
* - supports automatic and CSS page breaks (page-break-after or
* page-break-before)
* - supports font scaling (rendering text at another DPI than the rest)
* - can be used in conjunction with other drawing instructions to the same
* paint device.
*
* Some of the main limitations are:
* - only "display: inline" or "display: block" elements are supported.
* "display: none" and "display: inline-block" are not (yet) recognized.
* - only colors defined in terms of RGB values are supported: CSS named colors
* (e.g. 'blue') are not allowed.
* - Bidi (Right-to-Left) text rendering is not supported
*
* The renderer is not CSS compliant (simply because it is still lacking
* alot of features), but the subset of CSS that is supported is a pragmatic
* choice. If things are lacking, let us known in the bug tracker.
*
* This class is an abstract class. A concrete class implements the
* pure virtual methods to create an appropriate WPaintDevice for each
* page and to provide page dimension information. The paint device
* needs to support font metrics, which currently is only implemented
* by WPdfImage or WRasterImage.
*
* All coordinates and dimensions in the API below are pixel coordinates.
*
* \ingroup render
*/
class WT_API WTextRenderer
{
public:
/*! \class Node
* \brief A rendering box of a layed out DOM node.
*
* \sa paintNode()
*/
class Node {
public:
/*! \brief Returns the element type.
*/
DomElementType type() const;
/*! \brief Returns an attribute value.
*
* This returns an empty string for an undefined attribute.
*/
std::string attributeValue(const std::string& attribute) const;
/*! \brief Returns the page.
*/
int page() const;
/*! \brief Returns the x position.
*/
double x() const;
/*! \brief Returns the y position.
*/
double y() const;
/*! \brief Returns the width.
*/
double width() const;
/*! \brief Returns the height.
*/
double height() const;
/*! \brief Returns the fragment number.
*
* A single DOM node can result in multiple layout boxes:
* e.g. inline contents can be split over multiple lines,
* resulting in a layout box for each line, and block layout
* contents can be split over multiple pages, resulting in a
* layout box per page.
*/
int fragment() const;
/*! \brief Returns the fragment count.
*
* \sa fragment()
*/
int fragmentCount() const;
private:
WTextRenderer& renderer_;
Block& block_;
LayoutBox& lb_;
Node(Block& block, LayoutBox& lb, WTextRenderer& renderer);
Block &block() const { return block_; }
LayoutBox &lb() const { return lb_; }
friend class Block;
friend class WTextRenderer;
};
/*! \brief Destructor.
*/
virtual ~WTextRenderer();
/*! \brief Renders an XHTML fragment.
*
* The text is rendered, starting at position \p y, and flowing down
* the page. New pages are created using \p startPage() to render
* more contents on a next page. The return value is the position at
* which rendering stopped on the last page on which was rendered.
*
* This \p y position and returned position are <i>text
* coordinates</i>, which differ from page coordinates in that they exclude
* margins.
*
* The function returns the end position. You may call this function
* multiple times.
*
* Each invocation to render() has the effect of resetting the
* logical page numbering used by pageWidth(), pageHeight() and
* startPage() so that the current page is page 0.
*/
double render(const WString& text, double y = 0);
/*! \brief Sets the contents of a cascading style sheet (CSS).
*
* This sets the text \p contents to be used as CSS. Any previous CSS
* declarations are discarded. Returns true if parsing was successful,
* false if otherwise.
* If parsing failed, the stylesheet text that was already in use will
* not have been changed. Use getStyleSheetParseErrors to access parse
* error information.
*
* \warning Only the following CSS selector features are supported:
* - tag selectors: e.g. span or *
* - class name selectors: .class
* - id selectors: \#id
* - descendant selectors: h1 h2 h3 {}
* - multiples: h1, h2, h3 {}
* \code
* h1.a1#one.a2 h3#two.c {}
* \endcode
*
* \sa getStyleSheetParseErrors()
*/
bool setStyleSheetText(const WString& contents);
/*! \brief Appends an external cascading style sheet (CSS).
*
* This is an overloaded member, provided for convenience. Equivalent to:
* \code
* setStyleSheetText(styleSheetText() + <filename_contents>)
* \endcode
*
* \sa setStyleSheetText()
*/
bool useStyleSheet(const WString& filename);
/*! \brief Clears the used stylesheet
*
* This is an overloaded member, provided for convenience. Equivalent to:
* \code
* setStyleSheetText("")
* \endcode
*
* \sa setStyleSheetText()
*/
void clearStyleSheet();
/*! \brief Returns the CSS in use.
*
* This returns all the CSS declarations in use.
*
* \sa setStyleSheetText()
*/
WString styleSheetText() const;
/*! \brief Returns all parse error information of the last call to
* setStyleSheetText.
*
* setStyleSheetText stores all parse errors inside. Use
* getStyleSheetParseErrors to access information about them.
* Information is newline(\ n) seperated.
*
* \sa setStyleSheetText(const WString& contents)
*/
std::string getStyleSheetParseErrors() const;
/*! \brief Returns the page text width.
*
* This returns the width of the page in which text needs to be rendered,
* excluding horizontal margins, in pixels.
*
* \sa textHeight()
*/
double textWidth(int page) const;
/*! \brief Returns the page text height.
*
* This returns the height of the page in which text needs to be rendered,
* excluding vertical margins, in pixels.
*
* \sa textWidth()
*/
double textHeight(int page) const;
/*! \brief Sets the scaling factor used for font rendering.
*
* A scaling can be set for text. The scaling factor has as effect
* that text font sizes are modified by the scale. Also CSS length
* units that are defined in terms of font units ("em" and "ex") are
* scaled accordingly.
*
* The default value is 1.
*/
void setFontScale(double scale);
/*! \brief Returns the font scaling factor.
*
* \sa setFontScale().
*/
double fontScale() const { return fontScale_; }
/*! \brief Returns the page width.
*
* Returns the total page width (in pixel units), including
* horizontal margins.
*/
virtual double pageWidth(int page) const = 0;
/*! \brief Returns the page height.
*
* Returns the total page height (in pixel units), including
* vertical margins.
*/
virtual double pageHeight(int page) const = 0;
/*! \brief Returns the margin.
*
* Returns the margin at given side (in pixel units).
*/
virtual double margin(Side side) const = 0;
/*! \brief Returns a paint device to render a given page.
*
* The render() method calls this function once for each page it wants
* to render.
*/
virtual WPaintDevice *startPage(int page) = 0;
/*! \brief Stops painting on the given page.
*/
virtual void endPage(WPaintDevice *device) = 0;
/*! \brief Returns a painter for the current page.
*/
virtual WPainter *getPainter(WPaintDevice *device) = 0;
/*! \brief Paints an XHTML node.
*
* The default implementation paints the node conforming to the
* XHTML specification.
*
* You may want to specialize this method if you wish to customize
* (or ignore) the rendering for certain nodes or node types, or if you
* want to capture the actual layout positions for other processing.
*
* The node information contains the layout position at which the node
* is being painted.
*/
virtual void paintNode(WPainter& painter, const Node& node);
protected:
/*! \brief Constructor.
*/
WTextRenderer();
private:
WPainter *painter_;
WPaintDevice *device_;
double fontScale_;
WString styleSheetText_;
StyleSheet* styleSheet_;
std::string error_;
WPainter *painter() const { return painter_; }
friend class Block;
};
}
}
#endif // RENDER_WTEXT_RENDERER_H_
|