X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fgtkmm%2Fhistorytreestore.cpp;h=1f0eb9c0cee2944b531c00b5740eff9a232a044e;hb=99140178a9fac20077b8b4498a6e8e4e8d060abc;hp=1ec068d0d16d2c46b7561ec65591e2dd3eb0b05e;hpb=02252941b29de64037116f4d37991a38d9ff0d94;p=synfig.git diff --git a/synfig-studio/trunk/src/gtkmm/historytreestore.cpp b/synfig-studio/trunk/src/gtkmm/historytreestore.cpp index 1ec068d..1f0eb9c 100644 --- a/synfig-studio/trunk/src/gtkmm/historytreestore.cpp +++ b/synfig-studio/trunk/src/gtkmm/historytreestore.cpp @@ -2,19 +2,21 @@ /*! \file historytreestore.cpp ** \brief Template File ** -** $Id: historytreestore.cpp,v 1.1.1.1 2005/01/07 03:34:36 darco Exp $ +** $Id$ ** ** \legal -** Copyright (c) 2002 Robert B. Quattlebaum Jr. +** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley +** Copyright (c) 2008 Chris Moore ** -** This software and associated documentation -** are CONFIDENTIAL and PROPRIETARY property of -** the above-mentioned copyright holder. +** This package is free software; you can redistribute it and/or +** modify it under the terms of the GNU General Public License as +** published by the Free Software Foundation; either version 2 of +** the License, or (at your option) any later version. ** -** You may not copy, print, publish, or in any -** other way distribute this software without -** a prior written agreement with -** the copyright holder. +** This package is distributed in the hope that it will be useful, +** but WITHOUT ANY WARRANTY; without even the implied warranty of +** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +** General Public License for more details. ** \endlegal */ /* ========================================================================= */ @@ -30,12 +32,14 @@ #include "historytreestore.h" #include -#include "iconcontroler.h" +#include "iconcontroller.h" #include #include #include #include "instance.h" +#include "general.h" + #endif /* === U S I N G =========================================================== */ @@ -74,7 +78,8 @@ HistoryTreeStore::HistoryTreeStore(etl::loose_handle instance_ HistoryTreeStore::~HistoryTreeStore() { - synfig::info("HistoryTreeStore::~HistoryTreeStore(): Deleted"); + if (getenv("SYNFIG_DEBUG_DESTRUCTORS")) + synfig::info("HistoryTreeStore::~HistoryTreeStore(): Deleted"); } Glib::RefPtr @@ -87,22 +92,24 @@ void HistoryTreeStore::rebuild() { synfigapp::Action::Stack::const_iterator iter; - + clear(); - + for(iter=instance()->undo_action_stack().begin();iter!=instance()->undo_action_stack().end();++iter) { - insert_action(*(prepend()),*iter,true,true,false); + insert_action(*(prepend()),*iter,true,true,false); } curr_row=*children().end(); for(iter=instance()->redo_action_stack().begin();iter!=instance()->redo_action_stack().end();++iter) { - insert_action(*(append()),*iter,true,false,true); - } + insert_action(*(append()),*iter,true,false,true); + } + + signal_undo_tree_changed()(); } void -HistoryTreeStore::insert_action(Gtk::TreeRow row,etl::handle action, bool is_active, bool is_undo, bool is_redo) +HistoryTreeStore::insert_action(Gtk::TreeRow row,etl::handle action, bool /*is_active*/, bool is_undo, bool is_redo) { assert(action); @@ -111,13 +118,13 @@ HistoryTreeStore::insert_action(Gtk::TreeRow row,etl::handleis_active(); row[model.is_undo] = is_undo; row[model.is_redo] = is_redo; - + synfigapp::Action::CanvasSpecific *specific_action; specific_action=dynamic_cast(action.get()); if(specific_action) { row[model.canvas] = specific_action->get_canvas(); - row[model.canvas_id] = specific_action->get_canvas()->get_id(); + row[model.canvas_id] = specific_action->get_canvas()->get_id(); } etl::handle group; @@ -131,8 +138,8 @@ HistoryTreeStore::insert_action(Gtk::TreeRow row,etl::handle action) row=*insert(iter); insert_action(row,action); + + signal_undo_tree_changed()(); } void @@ -201,7 +210,7 @@ HistoryTreeStore::on_action_status_changed(etl::handleis_active(); return; } - } + } +} + +bool +HistoryTreeStore::search_func(const Glib::RefPtr&,int,const Glib::ustring& x,const Gtk::TreeModel::iterator& iter) +{ + const Model model; + + Glib::ustring substr(x.uppercase()); + Glib::ustring name((*iter)[model.name]); + name=name.uppercase(); + + return name.find(substr)==Glib::ustring::npos; }