mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
18 lines
282 B
C
18 lines
282 B
C
|
#ifndef PROFILEGRAPHICS_H
|
||
|
#define PROFILEGRAPHICS_H
|
||
|
|
||
|
#include <QGraphicsView>
|
||
|
|
||
|
class ProfileGraphicsView : public QGraphicsView {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
ProfileGraphicsView(QWidget* parent = 0);
|
||
|
void plot(struct dive *d);
|
||
|
|
||
|
protected:
|
||
|
void resizeEvent(QResizeEvent *event);
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|