-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathmargins.R
266 lines (229 loc) · 8.21 KB
/
margins.R
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
#' @include properties.R
#' @param t,r,b,l Dimensions of each margin. (To remember order, think trouble).
#' @param unit Default units of dimensions. Defaults to "pt" so it
#' can be most easily scaled with the text.
#' @rdname element
#' @export
margin <- S7::new_class(
"margin", parent = S7::new_S3_class(c("simpleUnit", "unit", "unit_v2")),
constructor = function(t = 0, r = 0, b = 0, l = 0, unit = "pt") {
u <- unit(c(t, r, b, l), unit)
S7::new_object(u)
}
)
#' @export
#' @rdname is_tests
is_margin <- function(x) S7::S7_inherits(x, margin)
is.margin <- function(x) lifecycle::deprecate_stop("3.5.2", "is.margin()", "is_margin()")
#' @rdname element
#' @export
margin_part <- function(t = NA, r = NA, b = NA, l = NA, unit = "pt") {
margin(t = t, r = r, b = b, l = l, unit = unit)
}
#' @rdname element
#' @export
margin_auto <- function(t = 0, r = t, b = t, l = r, unit = "pt") {
margin(t = t, r = r, b = b, l = l, unit)
}
#' Create a text grob with the proper location and margins
#'
#' `titleGrob()` is called when creating titles and labels for axes, legends,
#' and facet strips.
#'
#' @param label Text to place on the plot. These maybe axis titles, axis labels,
#' facet strip titles, etc.
#' @param x,y x and y locations where the text is to be placed.
#' @param hjust,vjust Horizontal and vertical justification of the text.
#' @param angle Angle of rotation of the text.
#' @param gp Additional graphical parameters in a call to `gpar()`.
#' @param margin Margins around the text. See [margin()] for more
#' details.
#' @param margin_x,margin_y Whether or not to add margins in the x/y direction.
#' @param debug If `TRUE`, aids visual debugging by drawing a solid
#' rectangle behind the complete text area, and a point where each label
#' is anchored.
#'
#' @noRd
titleGrob <- function(label, x, y, hjust, vjust, angle = 0, gp = gpar(),
margin = NULL, margin_x = FALSE, margin_y = FALSE,
debug = FALSE, check.overlap = FALSE) {
if (is.null(label)) {
return(zeroGrob())
}
# We rotate the justification values to obtain the correct x and y reference point,
# since hjust and vjust are applied relative to the rotated text frame in textGrob
just <- rotate_just(angle, hjust, vjust)
n <- max(length(x), length(y), 1)
x <- x %||% unit(rep(just$hjust, n), "npc")
y <- y %||% unit(rep(just$vjust, n), "npc")
if (!is.unit(x)) {
x <- unit(x, "npc")
}
if (!is.unit(y)) {
y <- unit(y, "npc")
}
grob <- textGrob(
label, x, y,
hjust = hjust, vjust = vjust,
rot = angle, gp = gp, check.overlap = check.overlap
)
# The grob dimensions don't include the text descenders, so these need to be added
# manually. Because descentDetails calculates the actual descenders of the specific
# text label, which depends on the label content, we replace the label with one that
# has the common letters with descenders. This guarantees that the grob always has
# the same height regardless of whether the text actually contains letters with
# descenders or not. The same happens automatically with ascenders already.
descent <- font_descent(gp$fontfamily, gp$fontface, gp$fontsize, gp$cex)
# Use trigonometry to calculate grobheight and width for rotated grobs. This is only
# exactly correct when vjust = 1. We need to take the absolute value so we don't make
# the grob smaller when it's flipped over.
rad <- (angle[1] %% 360) / 180 * pi
x_descent <- abs(sin(rad)) * descent
y_descent <- abs(cos(rad)) * descent
# Set text size to actual size including descenders
width <- unit(1, "grobwidth", grob) + x_descent
height <- unit(1, "grobheight", grob) + y_descent
# Resolve margin
if (is.null(margin)) {
margin <- margin(0, 0, 0, 0)
}
margin_x <- isTRUE(margin_x)
margin_y <- isTRUE(margin_y)
# Initialise new values for position and dimensions
new_x <- NULL
new_y <- NULL
new_width <- NULL
new_height <- NULL
# Calculate new x/width
if (margin_x) {
new_width <- unit.c(margin[4], width, margin[2])
new_x <- x - margin[2] * just$hjust + margin[4] * (1 - just$hjust)
}
# Calculate new y/height
if (margin_y) {
new_height <- unit.c(margin[1], height, margin[3])
new_y <- y - margin[1] * just$vjust + margin[3] * (1 - just$vjust)
}
# If only one margin is set, the other dimension is a null unit
if (xor(margin_x, margin_y)) {
new_width <- new_width %||% unit(1, "null")
new_height <- new_height %||% unit(1, "null")
}
# If we haven't touched the new positions/dimensions, use the previous ones
new_width <- new_width %||% width
new_height <- new_height %||% height
x <- new_x %||% x
y <- new_y %||% y
# Adjust the grob
grob$x <- x
grob$y <- y
# Add debug rectangles/points if necessary
if (isTRUE(debug)) {
children <- gList(
rectGrob(
x = x, y = y, width = width, height = height,
hjust = just$hjust, vjust = just$vjust,
gp = gg_par(fill = "cornsilk", col = NA)
),
pointsGrob(x, y, pch = 20, gp = gg_par(col = "gold")),
grob
)
} else {
children <- gList(grob)
}
gTree(
children = children,
widths = new_width,
heights = new_height,
cl = "titleGrob"
)
}
#' @export
widthDetails.titleGrob <- function(x) {
sum(x$widths)
}
#' @export
heightDetails.titleGrob <- function(x) {
sum(x$heights)
}
#' Rotate justification parameters counter-clockwise
#'
#' @param angle angle of rotation, in degrees
#' @param hjust horizontal justification
#' @param vjust vertical justification
#' @return A list with two components, `hjust` and `vjust`, containing the rotated hjust and vjust values
#'
#' @noRd
rotate_just <- function(angle, hjust, vjust) {
## Ideally we would like to do something like the following commented-out lines,
## but it currently yields unexpected results for angles other than 0, 90, 180, 270.
## Problems arise in particular in cases where the horizontal and the vertical
## alignment model differ, for example, where horizontal alignment is relative to a
## point but vertical alignment is relative to an interval. This case arises for
## x and y axis tick labels.
##
## For more details, see: https://github.com/tidyverse/ggplot2/issues/2653
# # convert angle to radians
#rad <- (angle %||% 0) * pi / 180
#
#hnew <- cos(rad) * hjust - sin(rad) * vjust + (1 - cos(rad) + sin(rad)) / 2
#vnew <- sin(rad) * hjust + cos(rad) * vjust + (1 - cos(rad) - sin(rad)) / 2
angle <- (angle %||% 0) %% 360
if (is.character(hjust)) {
hjust <- match(hjust, c("left", "right")) - 1
hjust[is.na(hjust)] <- 0.5
}
if (is.character(vjust)) {
vjust <- match(vjust, c("bottom", "top")) - 1
vjust[is.na(vjust)] <- 0.5
}
# Apply recycle rules
size <- vec_size_common(angle, hjust, vjust)
angle <- vec_recycle(angle, size)
hjust <- vec_recycle(hjust, size)
vjust <- vec_recycle(vjust, size)
# Find quadrant on circle
case <- findInterval(angle, c(0, 90, 180, 270, 360))
hnew <- hjust
vnew <- vjust
is_case <- which(case == 2) # 90 <= x < 180
hnew[is_case] <- 1 - vjust[is_case]
vnew[is_case] <- hjust[is_case]
is_case <- which(case == 3) # 180 <= x < 270
hnew[is_case] <- 1 - hjust[is_case]
vnew[is_case] <- 1 - vjust[is_case]
is_case <- which(case == 4) # 270 <= x < 360
hnew[is_case] <- vjust[is_case]
vnew[is_case] <- 1 - hjust[is_case]
list(hjust = hnew, vjust = vnew)
}
descent_cache <- new.env(parent = emptyenv())
# Important: This function is not vectorized. Do not use to look up multiple
# font descents at once.
font_descent <- function(family = "", face = "plain", size = 12, cex = 1) {
cur_dev <- names(grDevices::dev.cur())
if (cur_dev == "null device") {
cache <- FALSE # don't cache if no device open
} else {
cache <- TRUE
}
key <- paste0(cur_dev, ':', family, ':', face, ":", size, ":", cex)
# we only look up the first result; this function is not vectorized
key <- key[1]
descent <- descent_cache[[key]]
if (is.null(descent)) {
descent <- convertHeight(grobDescent(textGrob(
label = "gjpqyQ",
gp = gg_par(
fontsize = size,
cex = cex,
fontfamily = family,
fontface = face
)
)), 'inches')
if (cache) {
descent_cache[[key]] <- descent
}
}
descent
}