diff options
Diffstat (limited to 'widgets/table/e-cell-text.h')
-rw-r--r-- | widgets/table/e-cell-text.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/widgets/table/e-cell-text.h b/widgets/table/e-cell-text.h index f1fc55c1f7..e0296998b3 100644 --- a/widgets/table/e-cell-text.h +++ b/widgets/table/e-cell-text.h @@ -54,7 +54,15 @@ typedef struct { int strikeout_column; int bold_column; + /* This column in the ETable should return a string specifying a color, + either a color name like "red" or a color spec like "rgb:F/0/0". + See the XParseColor man page for the formats available. */ + int color_column; + ECellTextFilter filter; + + /* This stores the colors we have allocated. */ + GHashTable *colors; } ECellText; typedef struct { |