makeTheme

Create a new theme defined from D code given through a template argument. The code will define the default style for each node, and can use Node.(...)Add calls to define other styles within the theme.

  1. Theme makeTheme(Theme theme)
    template makeTheme(string init)
    @safe
    makeTheme
  2. const(Theme) makeTheme(Theme theme)
  3. immutable(Theme) makeTheme(Theme theme)

Members

Functions

makeTheme
Theme makeTheme(Theme theme)
Undocumented in source. Be warned that the author may not have intended to support it.
makeTheme
const(Theme) makeTheme(Theme theme)
Undocumented in source. Be warned that the author may not have intended to support it.
makeTheme
immutable(Theme) makeTheme(Theme theme)
Undocumented in source. Be warned that the author may not have intended to support it.

Parameters

init

D code to initialize the Node style with.

Return Value

The created theme.

Meta