2008-11-19 23:56:46 +01:00
|
|
|
/*
|
2010-12-24 02:21:31 +01:00
|
|
|
timeline-clip.cpp - Implementation of the timeline clip object
|
2010-12-27 10:35:57 +01:00
|
|
|
|
2008-11-19 23:56:46 +01:00
|
|
|
Copyright (C) Lumiera.org
|
|
|
|
|
2008, Joel Holdsworth <joel@airwebreathe.org.uk>
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2008-11-19 23:56:46 +01:00
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
|
modify it under the terms of the GNU General Public License as
|
2010-12-17 23:28:49 +01:00
|
|
|
published by the Free Software Foundation; either version 2 of
|
|
|
|
|
the License, or (at your option) any later version.
|
|
|
|
|
|
2008-11-19 23:56:46 +01:00
|
|
|
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.
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2008-11-19 23:56:46 +01:00
|
|
|
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.
|
2010-12-17 23:28:49 +01:00
|
|
|
|
2008-11-19 23:56:46 +01:00
|
|
|
* *****************************************************/
|
|
|
|
|
|
2008-11-25 22:31:45 +01:00
|
|
|
#include "timeline-clip.hpp"
|
2008-11-19 23:56:46 +01:00
|
|
|
|
|
|
|
|
namespace gui {
|
|
|
|
|
namespace widgets {
|
|
|
|
|
namespace timeline {
|
|
|
|
|
|
2011-01-12 23:59:12 +01:00
|
|
|
Clip::Clip(boost::shared_ptr<model::Clip> clip,
|
|
|
|
|
boost::shared_ptr<timeline::DrawStrategy> drawStrategy)
|
|
|
|
|
: Entity(drawStrategy),
|
2011-01-03 10:24:08 +01:00
|
|
|
modelClip(clip),
|
2011-01-02 16:57:14 +01:00
|
|
|
selected(false)
|
|
|
|
|
{
|
|
|
|
|
REQUIRE(modelClip);
|
|
|
|
|
|
|
|
|
|
// TODO: Connect signals
|
|
|
|
|
//modelClip->signalNameChanged().connect(mem_fun(this,
|
|
|
|
|
// &Clip::onNameChanged);
|
|
|
|
|
}
|
|
|
|
|
|
2011-01-12 23:59:12 +01:00
|
|
|
gavl_time_t
|
|
|
|
|
Clip::getBegin () const
|
|
|
|
|
{
|
|
|
|
|
REQUIRE (modelClip);
|
|
|
|
|
return modelClip->getBegin();
|
|
|
|
|
}
|
2011-01-02 16:57:14 +01:00
|
|
|
|
2011-01-12 23:59:12 +01:00
|
|
|
gavl_time_t
|
|
|
|
|
Clip::getEnd () const
|
|
|
|
|
{
|
|
|
|
|
REQUIRE (modelClip);
|
|
|
|
|
return modelClip->getEnd();
|
|
|
|
|
}
|
2011-01-02 16:57:14 +01:00
|
|
|
|
2011-01-12 23:59:12 +01:00
|
|
|
std::string
|
|
|
|
|
Clip::getName () const
|
|
|
|
|
{
|
|
|
|
|
REQUIRE (modelClip);
|
|
|
|
|
return modelClip->getName();
|
2011-01-02 16:57:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
Clip::setSelected(bool selected)
|
|
|
|
|
{
|
|
|
|
|
this->selected = selected;
|
|
|
|
|
}
|
2008-11-19 23:56:46 +01:00
|
|
|
|
2011-01-12 23:59:12 +01:00
|
|
|
|
2008-11-19 23:56:46 +01:00
|
|
|
} // namespace timeline
|
|
|
|
|
} // namespace widgets
|
|
|
|
|
} // namespace gui
|
|
|
|
|
|