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
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/styles.R
\docType{class}
\name{PaletteOfStyles-class}
\alias{PaletteOfStyles-class}
\alias{PaletteOfStyles}
\title{Class for Tracking Default Styles by Style Type}
\description{
Provides a mechanism for specifying a style based on the style properties
along dimensions of format, brightness, and color. This allows a user to
request a style that meets a certain description (e.g. a \dQuote{light}
scheme in \dQuote{ansi256} format), without having to provide a specific
\code{\link{Style}} object.
}
\section{An Array of Styles}{
A \code{PaletteOfStyles} object is an \dQuote{array} containing either
\dQuote{classRepresentation} objects that extend \code{StyleHtml} or are
instances of objects that inherit from \code{StyleHtml}. The \code{diff*}
methods then pick an object/class from this array based on the values of
the \code{format}, \code{brightness}, and \code{color.mode} parameters.
For the most part the distinction between actual \code{Style} objects vs
\dQuote{classRepresentation} ones is academic, except that with the latter
you can control the instantiation by providing a parameter list as the
\code{style} argument to the \code{diff*} methods. This is not an option with
already instantiated objects. See examples.
}
\section{Dimensions}{
There are three general orthogonal dimensions of styles that can be used when
rendering diffs: the type of format, the \dQuote{brightness} of the output,
and whether the colors used are distinguishable if you assume reds and greens
are not distinguishable. Defaults for the intersections each of these
dimensions are encoded as a three dimensional list. This list is just an
atomic vector of type \dQuote{list} with a length 3 \code{dim} attribute.
The array/list dimensions are:
\itemize{
\item \code{format}: the format type, one of \dQuote{raw},
\dQuote{ansi8}, \dQuote{ansi256}, or \dQuote{html}
\item \code{brightness}: whether the colors are bright or not, which
allows user to chose a scheme that is compatible with their console,
one of: \dQuote{light}, \dQuote{dark}, \dQuote{normal}
\item \code{color.mode}: \dQuote{rgb} for full color or \dQuote{yb} for
dichromats (yb stands for Yellow Blue).
}
Each of these dimensions can be specified directly via the corresponding
parameters to the \code{diff*} methods.
}
\section{Methods}{
\code{PaletteOfStyles} objects have The following methods implemented:
\itemize{
\item \code{[}, \code{[<-}, \code{[[}
\item show
\item summary
\item dimnames
}
}
\section{Structural Details}{
The array/list is stored in the \code{data} slot of
\code{PaletteOfStyles} objects. Subsetting methods are provided so you
may operate directly on the S4 object as you would on a regular array.
The array/list must be fully populated with objects that are or inherit
\code{Style}, or are \dQuote{classRepresentation} objects (i.e. those of
the type returned by \code{\link{getClassDef}}) that extend \code{Style}.
By default the array is populated only with \dQuote{classRepresentation}
objects as that allows the list form of the \code{style} parameter to the
\code{diff*} methods. If there is a particular combination of coordinates
that does not have a corresponding defined style a reasonable substitution
must be provided. For example, this package only defines \dQuote{light}
HTML styles, so it simply uses that style for all the possible
\code{brightness} values.
There is no explicit check that the objects in the list comply with the
descriptions implied by their coordinates, although the default object
provided by the package does comply for the most part. One check that is
carried out is that any element that has a \dQuote{html} value in the
\code{format} dimension extends \code{StyleHtml}.
While the list may only have the three dimensions described, you can add
values to the dimensions provided the values described above are the first
ones in each of their corresponding dimensions. For example, if you wanted
to allow for styles that would render in \code{grid} graphics, you could
generate a default list with a \dQuote{"grid"} value appended to the values
of the \code{format} dimension.
}
\examples{
\dontrun{
## Look at all "ansi256" styles (assumes compatible terminal)
PaletteOfStyles()["ansi256",,]
}
## Generate the default style object palette, and replace
## the ansi256 / light / rgb style with our modified one
## which for illustrative purposes is the raw style
my.pal <- PaletteOfStyles()
my.style <- StyleRaw() # See `?Style` for custom styles
my.style@funs@word.delete <- function(x) sprintf("--\%s--", x)
my.pal["ansi256", "light", "rgb"] <- list(my.style) # note `list()`
## Output has no format now for format/color.mode/brightness
## we modified ...
## `pager="off"` for CRAN compliance; you may omit in normal use
diffPrint(
1:3, 2:5, format="ansi256", color.mode="rgb", brightness="light",
palette.of.styles=my.pal, pager="off", disp.width=80
)
## If so desired, set our new style palette as the default
## one; could also pass directly as argument to `diff*` funs
\dontrun{
options(diffobj.palette=defs)
}
}
|