mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
31 lines
449 B
C++
31 lines
449 B
C++
|
#include "profilewidget2.h"
|
||
|
|
||
|
ProfileWidget2::ProfileWidget2(QWidget *parent)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
// Currently just one dive, but the plan is to enable All of the selected dives.
|
||
|
void ProfileWidget2::plotDives(QList<dive*> dives)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void ProfileWidget2::settingsChanged()
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void ProfileWidget2::contextMenuEvent(QContextMenuEvent* event)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void ProfileWidget2::resizeEvent(QResizeEvent* event)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
|
||
|
void ProfileWidget2::showEvent(QShowEvent* event)
|
||
|
{
|
||
|
|
||
|
}
|