diff options
author | Damon Chaplin <damon@ximian.com> | 2001-03-05 07:45:29 +0800 |
---|---|---|
committer | Damon Chaplin <damon@src.gnome.org> | 2001-03-05 07:45:29 +0800 |
commit | 49ba8c5c71000ccae7f21177e8e18081ac254a31 (patch) | |
tree | c33125edb85bd48480f1a59f511b7d4d034b423c /widgets/table/e-cell-text.h | |
parent | f3573fb2c91f02498dab4aa00e3b3ef191756025 (diff) | |
download | gsoc2013-evolution-49ba8c5c71000ccae7f21177e8e18081ac254a31.tar.gz gsoc2013-evolution-49ba8c5c71000ccae7f21177e8e18081ac254a31.tar.zst gsoc2013-evolution-49ba8c5c71000ccae7f21177e8e18081ac254a31.zip |
added "editable" Arg, to stop the user from editing the text. The user can
2001-03-04 Damon Chaplin <damon@ximian.com>
* e-cell-text.c: added "editable" Arg, to stop the user from editing
the text. The user can still select the text, though. The "editable"
Arg is useful for ECellCombo where we want the user to select an item
in the popup but not edit the field itself.
* e-cell-combo.c: updated to select the matcing item before it pops up
the list.
svn path=/trunk/; revision=8544
Diffstat (limited to 'widgets/table/e-cell-text.h')
-rw-r--r-- | widgets/table/e-cell-text.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/widgets/table/e-cell-text.h b/widgets/table/e-cell-text.h index 78e9576a07..8ea9c509bd 100644 --- a/widgets/table/e-cell-text.h +++ b/widgets/table/e-cell-text.h @@ -49,6 +49,7 @@ typedef struct { char *ellipsis; /* The ellipsis characters. NULL = "...". */ guint use_ellipsis : 1; /* Whether to use the ellipsis. */ + guint editable : 1; /* Whether the text can be edited. */ int strikeout_column; int bold_column; |