2020-08-31 04:03:41 +08:00
|
|
|
#ifndef TRACESMITHCHART_H
|
|
|
|
#define TRACESMITHCHART_H
|
|
|
|
|
|
|
|
#include "traceplot.h"
|
|
|
|
#include <QPen>
|
2020-11-20 00:10:47 +08:00
|
|
|
#include <QPainterPath>
|
2020-08-31 04:03:41 +08:00
|
|
|
|
|
|
|
class TraceSmithChart : public TracePlot
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
TraceSmithChart(TraceModel &model, QWidget *parent = 0);
|
2020-11-06 20:05:09 +08:00
|
|
|
public slots:
|
|
|
|
void axisSetupDialog();
|
2020-08-31 04:03:41 +08:00
|
|
|
protected:
|
|
|
|
static constexpr double ReferenceImpedance = 50.0;
|
|
|
|
static constexpr double screenUsage = 0.9;
|
|
|
|
static constexpr int smithCoordMax = 4096;
|
|
|
|
|
|
|
|
QPoint plotToPixel(std::complex<double> S);
|
|
|
|
std::complex<double> pixelToPlot(const QPoint &pos);
|
|
|
|
|
|
|
|
void mousePressEvent(QMouseEvent *event) override;
|
|
|
|
void mouseMoveEvent(QMouseEvent *event) override;
|
|
|
|
void paintEvent(QPaintEvent *event) override;
|
2020-11-06 20:05:09 +08:00
|
|
|
virtual void updateContextMenu() override;
|
2020-08-31 04:03:41 +08:00
|
|
|
bool supported(Trace *t) override;
|
|
|
|
void draw(QPainter * painter, double width_factor);
|
|
|
|
void replot() override;
|
|
|
|
QPen textPen;
|
|
|
|
QPen chartLinesPen;
|
|
|
|
QPen thinPen;
|
|
|
|
QPen pointDataPen;
|
|
|
|
QPen lineDataPen;
|
2020-11-06 20:05:09 +08:00
|
|
|
bool limitToSpan;
|
2020-08-31 04:03:41 +08:00
|
|
|
|
|
|
|
/// Path for the thin arcs
|
|
|
|
QPainterPath thinArcsPath;
|
|
|
|
/// Path for the thick arcs
|
|
|
|
QPainterPath thickArcsPath;
|
|
|
|
|
|
|
|
double plotToPixelXOffset, plotToPixelXScale;
|
|
|
|
double plotToPixelYOffset, plotToPixelYScale;
|
|
|
|
TraceMarker *selectedMarker;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // TRACESMITHCHART_H
|