repository for casafeather app
Source
20
20
//# Postal address: AIPS++ Project Office
21
21
//# National Radio Astronomy Observatory
22
22
//# 520 Edgemont Road
23
23
//# Charlottesville, VA 22903-2475 USA
24
24
//#
25
25
26
26
#include "ExternalAxisControl.h"
27
27
#include <guitools/Feather/ExternalAxis.h>
28
28
#include <QPainter>
29
29
#include <QDebug>
30
-
#include <qwt/qwt_plot_canvas.h>
31
-
#include <qwt/qwt_text_label.h>
30
+
#include <qwt_plot_canvas.h>
31
+
#include <qwt_text_label.h>
32
32
33
33
namespace casa {
34
34
35
35
ExternalAxisControl::ExternalAxisControl(QWidget* parent) :QWidget( parent ),
36
36
plot( NULL ), AXIS_SMALL_SIDE(100), MARGIN(5), MIN_START_Y(22),
37
37
FONT_SIZE(8), FONT_SIZE_AXIS_LABEL(8){
38
38
}
39
39
40
40
41
41
void ExternalAxisControl::setPlot( QwtPlot* plotOwner ){