lumiera_/src/gui/controller/controller.hpp
Ichthyostega 371c13f790 add TODO markers regarding #959
Some parts of the GUI model will be remoulded
2015-01-05 15:47:23 +01:00

65 lines
1.5 KiB
C++

/*
controller.hpp - Declaration of the controller object
Copyright (C) Lumiera.org
2009, Joel Holdsworth <joel@airwebreathe.org.uk>
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.
*/
/** @file controller.hpp
** The top level UI controller.
**
** @todo as of 1/2015, this needs to be reshaped ////////////////////TICKET #959
*/
#ifndef CONTROLLER_HPP
#define CONTROLLER_HPP
#include "gui/controller/playback-controller.hpp"
namespace gui {
namespace model {
class Project;
} // namespace model
namespace controller {
/**
* @todo needs to be reshaped for communication with Proc-Layer /////////////////TICKET #959
*/
class Controller
{
public:
Controller(model::Project &modelProject);
PlaybackController& get_playback_controller();
private:
model::Project &project;
PlaybackController playback;
};
} // namespace controller
} // namespace gui
#endif // CONTROLLER_HPP