From 43c8fc41eea3b1bdea2a6004eb553f2e9f618e7e Mon Sep 17 00:00:00 2001 From: Linas Vepstas Date: Sun, 9 Aug 1998 04:59:57 +0000 Subject: [PATCH] some documentation improvements git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@968 57a11ea4-9604-0410-9ed3-97b8803252fd --- src/register/basiccell.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/register/basiccell.h b/src/register/basiccell.h index 42c45eab2b..9fe4980ff3 100644 --- a/src/register/basiccell.h +++ b/src/register/basiccell.h @@ -49,6 +49,13 @@ * set, then the callbacks below are used to when the * cell is entered. * + * If ALLOW_SHADOW is not set, then register contents + * will never be copied into this cell. This may result + * in undesirable behaviour when the cell is moved around, + * as the cell contents will be imprinted onto every location + * where it is moved. On the other hand, this can be useful + * for, e.g. blanking out cells. + * * * USER CALLBACKS: * The enter_cell() callback is called when the user first @@ -154,6 +161,8 @@ struct _BasicCell { short width; /* column width, in chars, not pixels */ short alignment; /* column text alignment */ char input_output; /* zero if output-only */ + + /* hack alert -- may want to redesign color to used named color strings. */ uint32 bg_color; /* background color, ARGB format */ uint32 fg_color; /* forground (text) color ARGB format */