##// END OF EJS Templates
Calls plot refresh when the editor is closed
Calls plot refresh when the editor is closed

File last commit:

r1008:76aa4956fdf0
r1013:121d1ac0be46
Show More
SqpColorScale.h
24 lines | 868 B | text/x-c | CLexer
#ifndef SCIQLOP_SQPCOLORSCALE_H
#define SCIQLOP_SQPCOLORSCALE_H
#include <Visualization/qcustomplot.h>
/**
* @brief The SqpColorScale struct represents the color scale for some graphs (such as
* spectrograms).
*
* Its implementation is based on the QCustomPlot color scale (@sa QCPColorScale) to which are added
* other useful properties for viewing in SciQlop
*/
struct SqpColorScale {
explicit SqpColorScale(QCustomPlot &plot);
/// QCustomPlot object representing the color scale.
/// @remarks The SqpColorScale instance has not the property on this pointer. The pointer must
/// remain valid throughout the existence of the SqpColorScale instance
QCPColorScale *m_Scale{nullptr};
bool m_AutomaticThreshold{false};
QCPColorGradient::GradientPreset m_GradientPreset{QCPColorGradient::gpJet};
};
#endif // SCIQLOP_SQPCOLORSCALE_H