1 /* === S Y N F I G ========================================================= */
2 /*! \file historytreestore.cpp
3 ** \brief Template File
8 ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
10 ** This package is free software; you can redistribute it and/or
11 ** modify it under the terms of the GNU General Public License as
12 ** published by the Free Software Foundation; either version 2 of
13 ** the License, or (at your option) any later version.
15 ** This package is distributed in the hope that it will be useful,
16 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 ** General Public License for more details.
21 /* ========================================================================= */
23 /* === H E A D E R S ======================================================= */
32 #include "historytreestore.h"
33 #include <synfig/valuenode.h>
34 #include "iconcontroler.h"
35 #include <synfig/valuenode_timedswap.h>
36 #include <gtkmm/button.h>
37 #include <synfigapp/action.h>
42 /* === U S I N G =========================================================== */
46 using namespace synfig;
47 using namespace studio;
49 /* === M A C R O S ========================================================= */
51 /* === G L O B A L S ======================================================= */
53 /* === P R O C E D U R E S ================================================= */
55 /* === M E T H O D S ======================================================= */
57 static HistoryTreeStore::Model& ModelHack()
59 static HistoryTreeStore::Model* model(0);
60 if(!model)model=new HistoryTreeStore::Model;
64 HistoryTreeStore::HistoryTreeStore(etl::loose_handle<studio::Instance> instance_):
65 Gtk::TreeStore (ModelHack()),
68 instance_->signal_undo().connect(sigc::mem_fun(*this,&studio::HistoryTreeStore::on_undo));
69 instance_->signal_redo().connect(sigc::mem_fun(*this,&studio::HistoryTreeStore::on_redo));
70 instance_->signal_undo_stack_cleared().connect(sigc::mem_fun(*this,&studio::HistoryTreeStore::on_undo_stack_cleared));
71 instance_->signal_redo_stack_cleared().connect(sigc::mem_fun(*this,&studio::HistoryTreeStore::on_redo_stack_cleared));
72 instance_->signal_new_action().connect(sigc::mem_fun(*this,&studio::HistoryTreeStore::on_new_action));
73 instance_->signal_action_status_changed().connect(sigc::mem_fun(*this,&studio::HistoryTreeStore::on_action_status_changed));
76 HistoryTreeStore::~HistoryTreeStore()
78 synfig::info("HistoryTreeStore::~HistoryTreeStore(): Deleted");
81 Glib::RefPtr<HistoryTreeStore>
82 HistoryTreeStore::create(etl::loose_handle<studio::Instance> instance_)
84 return Glib::RefPtr<HistoryTreeStore>(new HistoryTreeStore(instance_));
88 HistoryTreeStore::rebuild()
90 synfigapp::Action::Stack::const_iterator iter;
94 for(iter=instance()->undo_action_stack().begin();iter!=instance()->undo_action_stack().end();++iter)
96 insert_action(*(prepend()),*iter,true,true,false);
98 curr_row=*children().end();
99 for(iter=instance()->redo_action_stack().begin();iter!=instance()->redo_action_stack().end();++iter)
101 insert_action(*(append()),*iter,true,false,true);
106 HistoryTreeStore::insert_action(Gtk::TreeRow row,etl::handle<synfigapp::Action::Undoable> action, bool /*is_active*/, bool is_undo, bool is_redo)
110 row[model.action] = action;
111 row[model.name] = static_cast<Glib::ustring>(action->get_local_name());
112 row[model.is_active] = action->is_active();
113 row[model.is_undo] = is_undo;
114 row[model.is_redo] = is_redo;
116 synfigapp::Action::CanvasSpecific *specific_action;
117 specific_action=dynamic_cast<synfigapp::Action::CanvasSpecific*>(action.get());
120 row[model.canvas] = specific_action->get_canvas();
121 row[model.canvas_id] = specific_action->get_canvas()->get_id();
124 etl::handle<synfigapp::Action::Group> group;
125 group=etl::handle<synfigapp::Action::Group>::cast_dynamic(action);
128 synfigapp::Action::ActionList::const_iterator iter;
129 for(iter=group->action_list().begin();iter!=group->action_list().end();++iter)
131 Gtk::TreeRow child_row = *(append(row.children()));
132 insert_action(child_row,*iter,true,is_undo,is_redo);
136 //row[model.icon] = Gtk::Button().render_icon(Gtk::StockID("synfig-canvas"),Gtk::ICON_SIZE_SMALL_TOOLBAR);
141 HistoryTreeStore::on_undo()
147 HistoryTreeStore::on_redo()
153 HistoryTreeStore::on_undo_stack_cleared()
155 Gtk::TreeModel::Children::iterator iter,next;
156 Gtk::TreeModel::Children children_(children());
158 for(next=children_.begin(),iter=next++; iter != children_.end(); iter=(next!=children_.end())?next++:next)
160 Gtk::TreeModel::Row row = *iter;
161 if(row[model.is_undo])
167 HistoryTreeStore::on_redo_stack_cleared()
169 Gtk::TreeModel::Children::iterator iter,next;
170 Gtk::TreeModel::Children children_(children());
172 for(next=children_.begin(),iter=next++; iter != children_.end(); iter=(next!=children_.end())?next++:next)
174 Gtk::TreeModel::Row row = *iter;
175 if(row[model.is_redo])
181 HistoryTreeStore::on_new_action(etl::handle<synfigapp::Action::Undoable> action)
183 // Gtk::TreeRow row = *(append());
185 Gtk::TreeModel::Children::iterator iter;
186 for(iter=children().begin(); iter != children().end(); ++iter)
188 Gtk::TreeModel::Row row = *iter;
189 if(row[model.is_redo])
197 insert_action(row,action);
201 HistoryTreeStore::on_action_status_changed(etl::handle<synfigapp::Action::Undoable> action)
203 Gtk::TreeModel::Children::iterator iter;
204 Gtk::TreeModel::Children children_(children());
206 for(iter=children_.begin(); iter != children_.end(); ++iter)
208 Gtk::TreeModel::Row row = *iter;
209 if(action == (etl::handle<synfigapp::Action::Undoable>)row[model.action])
211 row[model.is_active]=action->is_active();