Source
130
130
void setTitle(const casacore::String& title);
131
131
132
132
// Implements PlotCanvas::titleFont().
133
133
PlotFontPtr titleFont() const;
134
134
135
135
// Implements PlotCanvas::setTitleFont().
136
136
void setTitleFont(const PlotFont& font);
137
137
138
138
// Implements PlotCanvas::background().
139
139
PlotAreaFillPtr background() const;
140
+
PlotAreaFillPtr defaultBackground() const;
140
141
141
142
// Implements PlotCanvas::setBackground().
142
143
void setBackground(const PlotAreaFill& areaFill);
143
144
144
145
// Implements PlotCanvas::cursor().
145
146
PlotCursor cursor() const;
146
147
147
148
// Implements PlotCanvas::setCursor().
148
149
void setCursor(PlotCursor cursor);
149
150
577
578
static unsigned int axisIndex(PlotAxis a);
578
579
static PlotAxis axisIndex(unsigned int i);
579
580
// </group>
580
581
581
582
const QwtScaleDiv* getAxisScaleDiv(int axisId) const;
582
583
// set time scale to even hh:mm
583
584
void setTimeScaleDiv(PlotAxis axis, double from, double to);
584
585
585
586
QSize minSizeHint;
586
587
588
+
// default background
589
+
PlotAreaFillPtr defaultBackground_;
590
+
587
591
588
592
private slots:
589
593
// For when the selecter has selected a region; emit a PlotSelectEvent.
590
594
// Include Qwt5 and Qwt6 definitions for moc;
591
595
// signal comes from QwtPlotPicker
592
596
void regionSelected(const QwtDoubleRect&);
593
597
void regionSelected2(const QRectF&);
594
598
595
599
// For catching single vs. double clicks.
596
600
// void timeout();