customizable font sizes on graphs

This commit is contained in:
Jan Käberich 2022-04-20 15:19:58 +02:00
parent 2cf4c5a311
commit d7830de8d1
9 changed files with 133 additions and 55 deletions

View file

@ -88,13 +88,10 @@ protected slots:
virtual void markerRemoved(Marker *m);
virtual bool markerVisible(double x) = 0;
protected:
static constexpr unsigned int marginTop = 20;
static constexpr unsigned int marginBottom = 0;
static constexpr unsigned int marginLeft = 0;
static constexpr unsigned int marginRight = 0;
static constexpr unsigned int marginMarkerData = 150;
double sweep_fmin, sweep_fmax;
TraceModel &model;
Marker *selectedMarker;
@ -108,6 +105,7 @@ protected:
QLabel *cursorLabel;
unsigned int marginTop;
};
#endif // TRACEPLOT_H