[glom/cellrenderer_revert] Do the re-editing in an idle handler.
- From: Murray Cumming <murrayc src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glom/cellrenderer_revert] Do the re-editing in an idle handler.
- Date: Thu, 11 Nov 2010 08:45:59 +0000 (UTC)
commit 79417e3ae75ce3784405f5dc486f588d4444baed
Author: Murray Cumming <murrayc murrayc com>
Date: Thu Nov 11 09:45:31 2010 +0100
Do the re-editing in an idle handler.
glom/mode_data/db_adddel/db_adddel.cc | 82 +++++++++++++++++++-------------
glom/mode_data/db_adddel/db_adddel.h | 1 +
2 files changed, 50 insertions(+), 33 deletions(-)
---
diff --git a/glom/mode_data/db_adddel/db_adddel.cc b/glom/mode_data/db_adddel/db_adddel.cc
index 52bd4fd..826cb53 100644
--- a/glom/mode_data/db_adddel/db_adddel.cc
+++ b/glom/mode_data/db_adddel/db_adddel.cc
@@ -1450,6 +1450,36 @@ void DbAddDel::on_treeview_cell_edited_bool(const Glib::ustring& path_string, in
}
}
+void DbAddDel::on_idle_treeview_cell_edited_revert(const Gtk::TreeModel::Row& row, guint model_column_index)
+{
+ Glib::RefPtr<Gtk::TreeSelection> refTreeSelection = m_TreeView.get_selection();
+ if(!refTreeSelection)
+ return;
+
+ refTreeSelection->select(row); //TODO: This does not seem to work.
+
+ guint view_column_index = 0;
+ get_view_column_index(model_column_index, view_column_index);
+ Gtk::TreeView::Column* pColumn = m_TreeView.get_column(view_column_index);
+ if(!pColumn)
+ {
+ std::cerr << G_STRFUNC << ": pColumn is null." << std::endl;
+ return;
+ }
+
+ Gtk::CellRendererText* pCell = dynamic_cast<Gtk::CellRendererText*>(pColumn->get_first_cell());
+ if(!pCell)
+ {
+ std::cerr << G_STRFUNC << ": pCell is null." << std::endl;
+ return;
+ }
+
+ const Gtk::TreeModel::Path path = get_model()->get_path(row);
+
+ //Highlights the cell, and start the editing:
+ m_TreeView.set_cursor(path, *pColumn, *pCell, true /* start_editing */);
+}
+
void DbAddDel::on_treeview_cell_edited(const Glib::ustring& path_string, const Glib::ustring& new_text, int model_column_index, int data_model_column_index)
{
//Note:: model_column_index is actually the AddDel column index, not the TreeModel column index.
@@ -1460,6 +1490,12 @@ void DbAddDel::on_treeview_cell_edited(const Glib::ustring& path_string, const G
return;
const Gtk::TreeModel::Path path(path_string);
+
+ if(path.empty())
+ {
+ std::cerr << G_STRFUNC << ": path is empty." << std::endl;
+ return;
+ }
//Get the row from the path:
Gtk::TreeModel::iterator iter = m_refListStore->get_iter(path);
@@ -1515,9 +1551,9 @@ void DbAddDel::on_treeview_cell_edited(const Glib::ustring& path_string, const G
const Gnome::Gda::Value value = Conversions::parse_value(field_type, new_text, item_field->get_formatting_used().m_numeric_format, success);
if(!success)
- {
+ {
//Tell the user and offer to revert or try again:
- bool revert = glom_show_dialog_invalid_data(field_type);
+ const bool revert = glom_show_dialog_invalid_data(field_type);
if(revert)
{
//Revert the data:
@@ -1526,34 +1562,17 @@ void DbAddDel::on_treeview_cell_edited(const Glib::ustring& path_string, const G
else
{
//Reactivate the cell so that the data can be corrected.
-
- Glib::RefPtr<Gtk::TreeSelection> refTreeSelection = m_TreeView.get_selection();
- if(refTreeSelection)
- {
- refTreeSelection->select(row); //TODO: This does not seem to work.
-
- if(!path.empty())
- {
- Gtk::TreeView::Column* pColumn = m_TreeView.get_column(model_column_index);
- if(pColumn)
- {
- Gtk::CellRendererText* pCell = dynamic_cast<Gtk::CellRendererText*>(pColumn->get_first_cell());
- if(pCell)
- {
- //Set the text to be used in the start_editing signal handler:
- m_validation_invalid_text_for_retry = new_text;
- m_validation_retry = true;
-
- //Highlights the cell, and start the editing:
- m_TreeView.set_cursor(path, *pColumn, *pCell, true /* start_editing */);
- }
- }
- }
- else
- {
- g_warning("DbAddDel::on_treeview_cell_edited(): path is invalid.");
- }
- }
+
+ //Set the text to be used in the start_editing signal handler:
+ m_validation_invalid_text_for_retry = new_text;
+ m_validation_retry = true;
+
+ //But do this in an idle timout, so that the TreeView doesn't get
+ //confused by us changing editing state in this signal handler.
+ Glib::signal_idle().connect_once(
+ sigc::bind(
+ sigc::mem_fun(*this, &DbAddDel::on_idle_treeview_cell_edited_revert),
+ row, model_column_index));
}
do_change = false;
@@ -2205,7 +2224,6 @@ bool DbAddDel::start_new_record()
}
else
{
- std::cout << "debug: " << G_STRFUNC << ": no editable rows." << std::endl;
//The only keys are non-editable, so just add a row:
select_item(iter); //without start_editing.
//g_warning("start_new_record(): index_field_to_edit does not exist: %d", index_field_to_edit);
@@ -2366,8 +2384,6 @@ void DbAddDel::user_changed(const Gtk::TreeModel::iterator& row, guint col)
void DbAddDel::user_added(const Gtk::TreeModel::iterator& row)
{
- std::cout << "DEBUG: DbAddDel::user_added()" << std::endl;
-
//Prevent impossible multiple related records:
//The developer-mode UI now prevents the developer from using such a relationship anyway.
if(m_allow_only_one_related_record && (get_count() > 0))
diff --git a/glom/mode_data/db_adddel/db_adddel.h b/glom/mode_data/db_adddel/db_adddel.h
index 7fbdecd..cb61646 100644
--- a/glom/mode_data/db_adddel/db_adddel.h
+++ b/glom/mode_data/db_adddel/db_adddel.h
@@ -307,6 +307,7 @@ private:
#ifndef GLOM_ENABLE_MAEMO
virtual void on_treeview_cell_edited(const Glib::ustring& path_string, const Glib::ustring& new_text, int model_column_index, int data_model_column_index);
virtual void on_treeview_cell_edited_bool(const Glib::ustring& path_string, int model_column_index, int data_model_column_index);
+ void on_idle_treeview_cell_edited_revert(const Gtk::TreeModel::Row& row, guint model_column_index);
bool on_treeview_column_drop(Gtk::TreeView* treeview, Gtk::TreeViewColumn* column, Gtk::TreeViewColumn* prev_column, Gtk::TreeViewColumn* next_column);
void on_treeview_columns_changed();
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]