You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
#ifndef _FITK_XYPLOT_WINDOW_H___
|
|
|
|
|
#define _FITK_XYPLOT_WINDOW_H___
|
|
|
|
|
|
|
|
|
|
#include "FITKPlotWindowAPI.h"
|
|
|
|
|
#include "FITK_Kernel/FITKCore/FITKAbstractGraphWidget.h"
|
|
|
|
|
|
|
|
|
|
class QwtPlot;
|
|
|
|
|
|
|
|
|
|
namespace Ui
|
|
|
|
|
{
|
|
|
|
|
class FITKXYPlotWindow;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace Plot
|
|
|
|
|
{
|
|
|
|
|
class FITKPlotWindowAPI FITKXYPlotWindow : public Core::FITKAbstractGraph2DWidget
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
explicit FITKXYPlotWindow(QWidget* parent = nullptr);
|
|
|
|
|
virtual ~FITKXYPlotWindow();
|
|
|
|
|
|
|
|
|
|
QwtPlot* getPlotWidget();
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
Ui::FITKXYPlotWindow* _ui{};
|
|
|
|
|
QwtPlot* _plotWidget{};
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|