drawDetails               package:grid               R Documentation

_C_u_s_t_o_m_i_s_i_n_g _g_r_i_d _D_r_a_w_i_n_g

_D_e_s_c_r_i_p_t_i_o_n:

     These generic hook functions are called whenever a grid grob is
     drawn. They provide an opportunity for customising the drawing of
     a new class derived from grob (or gTree).

_U_s_a_g_e:

     drawDetails(x, recording)
     draw.details(x, recording)
     preDrawDetails(x)
     postDrawDetails(x)

_A_r_g_u_m_e_n_t_s:

       x: A grid grob. 

recording: A logical value indicating whether a grob is being added to
          the display list or redrawn from the display list. 

_D_e_t_a_i_l_s:

     These functions are called by the 'grid.draw' methods for grobs
     and gTrees.

     'preDrawDetails' is called first during the drawing of a grob.
     This is where any additional viewports should be pushed (see, for
     example, 'grid:::preDrawDetails.frame').  Note that the default
     behaviour for grobs is to push any viewports in the 'vp' slot, and
     for gTrees is to also push and up any viewports in the
     'childrenvp' slot so there is typically nothing to do here.

     'drawDetails' is called next and is where any additional
     calculations and graphical output should occur (see, for example,
     'grid:::drawDetails.xaxis'.  Note that the default behaviour for
     gTrees is to draw all grobs in the 'children' slot so there is
     typically nothing to do here.

     'postDrawDetails' is called last and should reverse anything done
     in 'preDrawDetails' (i.e., pop or up any viewports that were
     pushed;  again, see, for example, 'grid:::postDrawDetails.frame').
      Note that the default behaviour for grobs is to pop any viewports
     that were pushed so there is typically nothing to do here.

     Note that 'preDrawDetails' and 'postDrawDetails' are also called
     in the calculation of '"grobwidth"' and '"grobheight"' units.

_V_a_l_u_e:

     None of these functions are expected to return a value.

_A_u_t_h_o_r(_s):

     Paul Murrell

_S_e_e _A_l_s_o:

     'grid.draw'

