hivemind 1.0.0
Loading...
Searching...
No Matches
planner.cpp
Go to the documentation of this file.
1#include "gui/planner.h"
2
3namespace Gui
4{
5 Planner::Planner(QWidget* parent)
6 : QSplitter(Qt::Vertical, parent),
7 m_MapViewer(new MapViewer(this)),
8 m_Timeline(new Timeline(this))
9 {
10 addWidget(m_MapViewer);
11 addWidget(m_Timeline);
12
13 setStretchFactor(0, 1000);
14 setStretchFactor(1, 1);
15
16 setChildrenCollapsible(false);
17 }
18
20} // namespace Gui
Timeline * m_Timeline
Definition: planner.h:27
~Planner()
Destructs the planner widget.
Definition: planner.cpp:19
Planner(QWidget *parent=nullptr)
Constructs the planner widget.
Definition: planner.cpp:5
MapViewer * m_MapViewer
The layout of the planner widget.
Definition: planner.h:26
A custom QWidget to represent a timeline with keyframes.
Definition: timeline.h:13
Definition: action.h:6