/* parent-track-.cpp - Implementation of the ParentTrack class Copyright (C) Lumiera.org 2008, Joel Holdsworth This program 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. This program 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. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * *****************************************************/ #include "parent-track.hpp" #include using namespace boost; using std::tr1::shared_ptr; namespace gui { namespace model { ParentTrack::ParentTrack() { } const std::list< std::tr1::shared_ptr >& ParentTrack::get_child_tracks() const { return tracks.get_list(); } lumiera::observable_list< std::tr1::shared_ptr >& ParentTrack::get_child_track_list() { return tracks; } bool ParentTrack::can_host_children() const { return true; } bool ParentTrack::remove_descendant_track( const std::tr1::shared_ptr track) { REQUIRE(track); std::tr1::shared_ptr parent = find_descendant_track_parent(track); if(parent) { parent->tracks.remove(track); return true; } return false; } std::tr1::shared_ptr ParentTrack::find_descendant_track_parent( std::tr1::shared_ptr child) { REQUIRE(child != NULL); BOOST_FOREACH(std::tr1::shared_ptr track, tracks) { if(track == child) return shared_from_this(); std::tr1::shared_ptr result = track->find_descendant_track_parent(child); if(result) return result; } return std::tr1::shared_ptr(); } } // namespace model } // namespace gui