11 #ifndef TIMERASTER_DISPLAY_PLOT_H
12 #define TIMERASTER_DISPLAY_PLOT_H
18 #include <qwt_plot_rasteritem.h>
23 #if QWT_VERSION < 0x060000
26 #include <qwt_interval.h>
28 typedef QwtInterval QwtDoubleInterval;
46 int nplots,
double samp_rate,
double rows,
double cols, QWidget*);
68 const std::string& strunits);
70 void plotNewData(
const std::vector<double*> dataPoints,
const uint64_t numDataPoints);
72 void plotNewData(
const double* dataPoints,
const uint64_t numDataPoints);
96 void _updateIntensityRangeDisplay();
98 std::vector<TimeRasterData*> d_data;
99 std::vector<PlotTimeRaster*> d_raster;
102 double d_rows, d_cols;
104 std::vector<int> d_color_map_type;
105 QColor d_low_intensity;
106 QColor d_high_intensity;
108 int d_color_bar_title_font_size;
110 std::string d_x_label;
111 double d_x_start_value;
112 double d_x_end_value;
113 std::string d_y_label;
114 double d_y_start_value;
115 double d_y_end_value;
QWidget base plot to build QTGUI plotting tools.
Definition: DisplayPlot.h:53
QWidget for time raster (time vs. time) plots.
Definition: TimeRasterDisplayPlot.h:36
void updatedUpperIntensityLevel(const double)
void plotNewData(const double *dataPoints, const uint64_t numDataPoints)
void setPlotDimensions(const double rows, const double cols, const double units, const std::string &strunits)
void setXLabel(const std::string &label)
void setColorMapTitleFontSize(int tfs)
~TimeRasterDisplayPlot() override
void setSampleRate(double samprate)
void setYLabel(const std::string &label)
void replot(void) override
int getColorMapTitleFontSize() const
void setXAxis(double start, double end)
void plotNewData(const std::vector< double * > dataPoints, const uint64_t numDataPoints)
void setNumRows(double rows)
int getAlpha(unsigned int which)
int getIntensityColorMapType1() const
int getIntensityColorMapType(unsigned int) const
int intensity_color_map_type1
Definition: TimeRasterDisplayPlot.h:40
void updatedLowerIntensityLevel(const double)
void setYAxis(double start, double end)
void setNumCols(double cols)
int color_map_title_font_size
Definition: TimeRasterDisplayPlot.h:42
void setIntensityRange(const double minIntensity, const double maxIntensity)
double getMinIntensity(unsigned int which) const
const QColor getUserDefinedHighIntensityColor() const
const QColor getUserDefinedLowIntensityColor() const
double getMaxIntensity(unsigned int which) const
TimeRasterDisplayPlot(int nplots, double samp_rate, double rows, double cols, QWidget *)
void setAlpha(unsigned int which, int alpha)
void setIntensityColorMapType1(int)
void setIntensityColorMapType(const unsigned int, const int, const QColor, const QColor)