repository for casafeather app
Source
21
21
//# National Radio Astronomy Observatory
22
22
//# 520 Edgemont Road
23
23
//# Charlottesville, VA 22903-2475 USA
24
24
//#
25
25
#include "FeatherPlotWidget.qo.h"
26
26
27
27
#include <QDebug>
28
28
#include <QGridLayout>
29
29
#include <QMouseEvent>
30
30
#include <QtCore/qmath.h>
31
-
#include <qwt/qwt_plot_picker.h>
32
-
#include <qwt/qwt_plot_marker.h>
33
-
#include <qwt/qwt_symbol.h>
31
+
#include <qwt_plot_picker.h>
32
+
#include <qwt_plot_marker.h>
33
+
#include <qwt_symbol.h>
34
34
#include <casacore/casa/Arrays/Vector.h>
35
35
#include <casacore/casa/aipstype.h>
36
36
37
37
#if QWT_VERSION >= 0x060000
38
-
#include <qwt/qwt_picker_machine.h>
38
+
#include <qwt_picker_machine.h>
39
39
#endif
40
40
41
41
#include <limits>
42
42
43
43
using namespace casacore;
44
44
namespace casa {
45
45
46
46
FeatherPlotWidget::FeatherPlotWidget(const QString& title, FeatherPlot::PlotType plotType, QWidget *parent)
47
47
: QWidget(parent), plot( NULL ),
48
48
plotTitle(title), MARKER_WIDTH(2){