mirror of
https://github.com/typst/typst
synced 2025-05-13 20:46:23 +08:00
56 lines
1.6 KiB
Rust
56 lines
1.6 KiB
Rust
use crate::layout::{LayoutRoot, PageNode};
|
|
use crate::prelude::*;
|
|
|
|
/// The root element of a document and its metadata.
|
|
///
|
|
/// All documents are automatically wrapped in a `document` element. The main
|
|
/// use of this element is to use it in `set` rules to specify document
|
|
/// metadata.
|
|
///
|
|
/// The metadata set with this function is not rendered within the document.
|
|
/// Instead, it is embedded in the compiled PDF file.
|
|
///
|
|
/// # Tags
|
|
/// - meta
|
|
#[func]
|
|
#[capable(LayoutRoot)]
|
|
#[derive(Hash)]
|
|
pub struct DocumentNode(pub StyleVec<PageNode>);
|
|
|
|
#[node]
|
|
impl DocumentNode {
|
|
/// The document's title. This is often rendered as the title of the
|
|
/// PDF viewer window.
|
|
#[property(referenced)]
|
|
pub const TITLE: Option<EcoString> = None;
|
|
|
|
/// The document's author.
|
|
#[property(referenced)]
|
|
pub const AUTHOR: Option<EcoString> = None;
|
|
}
|
|
|
|
impl LayoutRoot for DocumentNode {
|
|
/// Layout the document into a sequence of frames, one per page.
|
|
fn layout_root(&self, vt: &mut Vt, styles: StyleChain) -> SourceResult<Document> {
|
|
let mut pages = vec![];
|
|
for (page, map) in self.0.iter() {
|
|
let number = 1 + pages.len();
|
|
let fragment = page.layout(vt, number, styles.chain(map))?;
|
|
pages.extend(fragment);
|
|
}
|
|
|
|
Ok(Document {
|
|
pages,
|
|
title: styles.get(Self::TITLE).clone(),
|
|
author: styles.get(Self::AUTHOR).clone(),
|
|
})
|
|
}
|
|
}
|
|
|
|
impl Debug for DocumentNode {
|
|
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
|
|
f.write_str("Document ")?;
|
|
self.0.fmt(f)
|
|
}
|
|
}
|