Added a track tree object to the layout helper
This commit is contained in:
parent
e670f42a39
commit
78a9ebb258
1 changed files with 6 additions and 1 deletions
|
|
@ -28,10 +28,13 @@
|
||||||
#define TIMELINE_LAYOUT_HELPER_HPP
|
#define TIMELINE_LAYOUT_HELPER_HPP
|
||||||
|
|
||||||
#include "../../gtk-lumiera.hpp"
|
#include "../../gtk-lumiera.hpp"
|
||||||
|
#include "../../../lib/tree.hpp"
|
||||||
|
|
||||||
namespace gui {
|
namespace gui {
|
||||||
namespace widgets {
|
namespace widgets {
|
||||||
namespace timeline {
|
namespace timeline {
|
||||||
|
|
||||||
|
class Track;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A helper class for the TimelineWidget. TimelineLayoutHelper
|
* A helper class for the TimelineWidget. TimelineLayoutHelper
|
||||||
|
|
@ -40,7 +43,9 @@ namespace timeline {
|
||||||
*/
|
*/
|
||||||
class TimelineLayoutHelper
|
class TimelineLayoutHelper
|
||||||
{
|
{
|
||||||
|
protected:
|
||||||
|
|
||||||
|
lumiera::tree<Track*> currentTrackTree;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace timeline
|
} // namespace timeline
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue