aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher James Lahey <clahey@ximian.com>2001-12-17 15:54:10 +0800
committerChris Lahey <clahey@src.gnome.org>2001-12-17 15:54:10 +0800
commit78406c4d1cac48ff05eea6c43f2d09503bb97605 (patch)
tree10d7e29c8f9e46d96ba9c9997babb2b3753a7819
parent4ca3db91acb3434149a3634cdefc27327d1cc53c (diff)
downloadgsoc2013-evolution-78406c4d1cac48ff05eea6c43f2d09503bb97605.tar
gsoc2013-evolution-78406c4d1cac48ff05eea6c43f2d09503bb97605.tar.gz
gsoc2013-evolution-78406c4d1cac48ff05eea6c43f2d09503bb97605.tar.bz2
gsoc2013-evolution-78406c4d1cac48ff05eea6c43f2d09503bb97605.tar.lz
gsoc2013-evolution-78406c4d1cac48ff05eea6c43f2d09503bb97605.tar.xz
gsoc2013-evolution-78406c4d1cac48ff05eea6c43f2d09503bb97605.tar.zst
gsoc2013-evolution-78406c4d1cac48ff05eea6c43f2d09503bb97605.zip
Merging changes:
2001-12-12 Christopher James Lahey <clahey@ximian.com> * e-cell-text.c (ect_stop_editing): Change to not editing before committing values. Then commit the values. svn path=/trunk/; revision=15104
-rw-r--r--widgets/table/e-cell-text.c55
1 files changed, 27 insertions, 28 deletions
diff --git a/widgets/table/e-cell-text.c b/widgets/table/e-cell-text.c
index f57816ed29..9f57710d81 100644
--- a/widgets/table/e-cell-text.c
+++ b/widgets/table/e-cell-text.c
@@ -281,40 +281,25 @@ ect_queue_redraw (ECellTextView *text_view, int view_col, int view_row)
}
/*
- * Accept the currently edited text. if it's the same as what's in the cell, do nothing.
- */
-static void
-ect_accept_edits (ECellTextView *text_view)
-{
- CurrentCell *cell = (CurrentCell *) text_view->edit;
- ECellView *ecell_view = (ECellView *) text_view;
- ECellText *ect = (ECellText *) ecell_view->ecell;
-
- if (strcmp (text_view->edit->old_text, cell->text)) {
- e_cell_text_set_value (ect, ecell_view->e_table_model,
- cell->model_col, cell->row, cell->text);
- }
-}
-
-/*
* Shuts down the editing process
*/
static void
-ect_stop_editing (ECellTextView *text_view)
+ect_stop_editing (ECellTextView *text_view, gboolean commit)
{
CellEdit *edit = text_view->edit;
- int row, view_col;
+ int row, view_col, model_col;
+ char *old_text, *text;
+ CurrentCell *cell = (CurrentCell *) text_view->edit;
if (!edit)
return;
- row = edit->cell.row;
- view_col = edit->cell.view_col;
+ row = cell->row;
+ view_col = cell->view_col;
+ model_col = cell->model_col;
- g_free (edit->old_text);
- edit->old_text = NULL;
- g_free (edit->cell.text);
- edit->cell.text = NULL;
+ old_text = edit->old_text;
+ text = cell->text;
if (edit->invisible)
gtk_widget_unref (edit->invisible);
if (edit->tep)
@@ -338,8 +323,23 @@ ect_stop_editing (ECellTextView *text_view)
}
g_free (edit);
-
+
text_view->edit = NULL;
+ if (commit) {
+ /*
+ * Accept the currently edited text. if it's the same as what's in the cell, do nothing.
+ */
+ ECellView *ecell_view = (ECellView *) text_view;
+ ECellText *ect = (ECellText *) ecell_view->ecell;
+
+ if (strcmp (old_text, text)) {
+ e_cell_text_set_value (ect, ecell_view->e_table_model,
+ model_col, row, text);
+ }
+ }
+ g_free (text);
+ g_free (old_text);
+
ect_queue_redraw (text_view, view_col, row);
}
@@ -349,7 +349,7 @@ ect_stop_editing (ECellTextView *text_view)
static void
ect_cancel_edit (ECellTextView *text_view)
{
- ect_stop_editing (text_view);
+ ect_stop_editing (text_view, FALSE);
e_table_item_leave_edit_ (text_view->cell_view.e_table_item_view);
}
@@ -1082,8 +1082,7 @@ ect_leave_edit (ECellView *ecell_view, int model_col, int view_col, int row, voi
CellEdit *edit = text_view->edit;
if (edit){
- ect_accept_edits (text_view);
- ect_stop_editing (text_view);
+ ect_stop_editing (text_view, TRUE);
/* FIXME: edit is freed in ect_stop_editing() so I've
commented this out - Damon. */
/*unbuild_current_cell (CURRENT_CELL(edit));*/