Added the first scope of the visual dive planner.

Added the first files and skeleton code for the visual
dive planner. now I need to fill things. The code is
using the print action borrowed, this will need to move
to a better choice in the future.

Signed-off-by: Tomaz Canabrava <tcanabrava@kde.org>
This commit is contained in:
Tomaz Canabrava 2013-06-20 12:33:26 -03:00
parent 88f0f60439
commit beadeffaf5
4 changed files with 30 additions and 0 deletions

11
qt-ui/diveplanner.cpp Normal file
View file

@ -0,0 +1,11 @@
#include "diveplanner.h"
DivePlanner* DivePlanner::instance()
{
static DivePlanner *self = new DivePlanner();
return self;
}
DivePlanner::DivePlanner(QWidget* parent): QGraphicsView(parent)
{
}