KiCad PCB EDA Suite
Loading...
Searching...
No Matches
SMITH_GRID Class Reference

Reflection coefficient locus, Re in X and Im in Y, drawn on the Smith chart. More...

#include <sim_plot_tab.h>

Inheritance diagram for SMITH_GRID:
mpLayer

Public Member Functions

 SMITH_GRID ()
 
void Plot (wxDC &aDC, mpWindow &aWindow) override
 Plot given view of layer to the given device context.
 
bool HasBBox () const override
 Check whether this layer has a bounding box.
 
void SetReferenceImpedance (double aZ0)
 
void SetNormalizedLabels (bool aNormalized)
 Chart placement including pan/zoom.
 
virtual bool IsInfo () const
 Check whether the layer is an info box.
 
virtual double GetMinX () const
 Get inclusive left border of bounding box.
 
virtual double GetMaxX () const
 Get inclusive right border of bounding box.
 
virtual double GetMinY () const
 Get inclusive bottom border of bounding box.
 
virtual double GetMaxY () const
 Get inclusive top border of bounding box.
 
const wxString & GetName () const
 Get layer name.
 
const wxString & GetDisplayName () const
 
const wxFont & GetFont () const
 Get font set for this layer.
 
const wxPen & GetPen () const
 Get pen set for this layer.
 
void SetContinuity (bool continuity)
 Set the 'continuity' property of the layer (true:draws a continuous line, false:draws separate points).
 
bool GetContinuity () const
 Gets the 'continuity' property of the layer.
 
void ShowName (bool show)
 Shows or hides the text label with the name of the layer (default is visible).
 
virtual void SetName (const wxString &name)
 Set layer name.
 
void SetFont (const wxFont &font)
 Set layer font.
 
void SetPen (const wxPen &pen)
 Set layer pen.
 
mpLayerType GetLayerType () const
 Get layer type: a Layer can be of different types: plot lines, axis, info boxes, etc, this method returns the right value.
 
bool IsVisible () const
 Checks whether the layer is visible or not.
 
void SetVisible (bool show)
 Sets layer visibility.
 
const wxBrush & GetBrush () const
 Get brush set for this layer.
 
void SetBrush (const wxBrush &brush)
 Set layer brush.
 

Static Public Member Functions

static bool GetChartView (mpWindow &aWindow, double aZoom, const wxRealPoint &aPan, SMITH_VIEW &aView)
 

Protected Attributes

wxFont m_font
 
wxPen m_pen
 
wxBrush m_brush
 
wxString m_name
 
wxString m_displayName
 
bool m_continuous
 
bool m_showName
 
mpLayerType m_type
 
bool m_visible
 

Private Attributes

double m_z0 = 50.0
 
bool m_normalized = false
 

Detailed Description

Reflection coefficient locus, Re in X and Im in Y, drawn on the Smith chart.

Definition at line 205 of file sim_plot_tab.h.

Constructor & Destructor Documentation

◆ SMITH_GRID()

SMITH_GRID::SMITH_GRID ( )
inline

Definition at line 208 of file sim_plot_tab.h.

References mpLayer::m_type, and mpLAYER_AXIS.

Member Function Documentation

◆ GetBrush()

const wxBrush & mpLayer::GetBrush ( ) const
inlineinherited

Get brush set for this layer.

Returns
brush.

Definition at line 309 of file mathplot.h.

References m_brush.

◆ GetChartView()

◆ GetContinuity()

bool mpLayer::GetContinuity ( ) const
inlineinherited

Gets the 'continuity' property of the layer.

See also
SetContinuity

Definition at line 274 of file mathplot.h.

References m_continuous.

◆ GetDisplayName()

const wxString & mpLayer::GetDisplayName ( ) const
inlineinherited

Definition at line 251 of file mathplot.h.

References m_displayName, and m_name.

Referenced by mpInfoLegend::Plot().

◆ GetFont()

const wxFont & mpLayer::GetFont ( ) const
inlineinherited

Get font set for this layer.

Returns
Font

Definition at line 259 of file mathplot.h.

References m_font.

Referenced by SMITH_CURSOR::Plot().

◆ GetLayerType()

mpLayerType mpLayer::GetLayerType ( ) const
inlineinherited

Get layer type: a Layer can be of different types: plot lines, axis, info boxes, etc, this method returns the right value.

Returns
An integer indicating layer type

Definition at line 297 of file mathplot.h.

References m_type.

Referenced by mpInfoLegend::Plot().

◆ GetMaxX()

virtual double mpLayer::GetMaxX ( ) const
inlinevirtualinherited

Get inclusive right border of bounding box.

Returns
Value

Reimplemented in mpFXYVector.

Definition at line 191 of file mathplot.h.

Referenced by mpFXY::UpdateScales().

◆ GetMaxY()

virtual double mpLayer::GetMaxY ( ) const
inlinevirtualinherited

Get inclusive top border of bounding box.

Returns
Value

Reimplemented in mpFXYVector.

Definition at line 201 of file mathplot.h.

Referenced by mpFXY::UpdateScales().

◆ GetMinX()

virtual double mpLayer::GetMinX ( ) const
inlinevirtualinherited

Get inclusive left border of bounding box.

Returns
Value

Reimplemented in mpFXYVector.

Definition at line 186 of file mathplot.h.

Referenced by mpFXY::UpdateScales().

◆ GetMinY()

virtual double mpLayer::GetMinY ( ) const
inlinevirtualinherited

Get inclusive bottom border of bounding box.

Returns
Value

Reimplemented in mpFXYVector.

Definition at line 196 of file mathplot.h.

Referenced by mpFXY::UpdateScales().

◆ GetName()

const wxString & mpLayer::GetName ( ) const
inlineinherited

Get layer name.

Returns
Name

Definition at line 249 of file mathplot.h.

References m_name.

Referenced by SIMULATOR_FRAME_UI::ToggleSmithChart(), SIMULATOR_FRAME_UI::updatePlotCursors(), and SIM_PLOT_TAB::UpdateTraceStyle().

◆ GetPen()

const wxPen & mpLayer::GetPen ( ) const
inlineinherited

Get pen set for this layer.

Returns
Pen

Definition at line 264 of file mathplot.h.

References m_pen.

Referenced by CURSOR::Plot(), mpInfoLegend::Plot(), SMITH_CURSOR::Plot(), and SIMULATOR_FRAME_UI::rebuildSignalsGrid().

◆ HasBBox()

bool SMITH_GRID::HasBBox ( ) const
inlineoverridevirtual

Check whether this layer has a bounding box.

The default implementation returns true. Override and return false if your mpLayer implementation should be ignored by the calculation of the global bounding box for all layers in a mpWindow.

Return values
trueHas bounding box
falseHas not bounding box

Reimplemented from mpLayer.

Definition at line 212 of file sim_plot_tab.h.

◆ IsInfo()

virtual bool mpLayer::IsInfo ( ) const
inlinevirtualinherited

Check whether the layer is an info box.

The default implementation returns false. It is overridden to true for mpInfoLayer class and its derivative. It is necessary to define mouse actions behaviour over info boxes.

Returns
whether the layer is an info boxes
See also
mpInfoLayer::IsInfo

Reimplemented in mpInfoLayer.

Definition at line 181 of file mathplot.h.

◆ IsVisible()

bool mpLayer::IsVisible ( ) const
inlineinherited

Checks whether the layer is visible or not.

Returns
true if visible

Definition at line 301 of file mathplot.h.

References m_visible.

Referenced by mpWindow::IsLayerVisible(), and mpInfoLegend::Plot().

◆ Plot()

void SMITH_GRID::Plot ( wxDC & dc,
mpWindow & w )
overridevirtual

Plot given view of layer to the given device context.

An implementation of this function has to transform layer coordinates to wxDC coordinates based on the view parameters retrievable from the mpWindow passed in w. Note that the public methods of mpWindow: x2p,y2p and p2x,p2y are already provided which transform layer coordinates to DC pixel coordinates, and user code should rely on them for portability and future changes to be applied transparently, instead of implementing the following formulas manually.

The passed device context dc has its coordinate origin set to the top-left corner of the visible area (the default). The coordinate orientation is as shown in the following picture:

(wxDC origin 0,0)
x-------------> ascending X ----------------+
|                                           |
|                                           |
|  V ascending Y                            |
|                                           |
|                                           |
|                                           |
|+------------------------------------------+  <-- right-bottom corner of the mpWindow visible area.

Note that Y ascends in downward direction, whereas the usual vertical orientation for mathematical plots is vice versa. Thus Y-orientation will be swapped usually, when transforming between wxDC and mpLayer coordinates. This change of coordinates is taken into account in the methods p2x,p2y,x2p,y2p.

Rules for transformation between mpLayer and wxDC coordinates

dc_X = (layer_X - mpWindow::GetPosX()) * mpWindow::GetScaleX()
dc_Y = (mpWindow::GetPosY() - layer_Y) * mpWindow::GetScaleY() // swapping Y-orientation
layer_X = (dc_X / mpWindow::GetScaleX()) + mpWindow::GetPosX() // scale guaranteed to be not 0
layer_Y = mpWindow::GetPosY() - (dc_Y / mpWindow::GetScaleY()) // swapping Y-orientation
double GetScaleY() const
Get current view's Y scale.
Definition mathplot.h:1021
double GetScaleX() const
Get current view's X scale.
Definition mathplot.h:1015
double GetPosY() const
Get current view's Y position.
Definition mathplot.h:1033
double GetPosX() const
Get current view's X position.
Definition mathplot.h:1027
Parameters
dcDevice context to plot to.
wView to plot. The visible area can be retrieved from this object.
See also
mpWindow::p2x,mpWindow::p2y,mpWindow::x2p,mpWindow::y2p

Implements mpLayer.

Definition at line 293 of file sim_plot_tab.cpp.

References _, KiROUND(), mpLayer::m_font, m_normalized, mpLayer::m_pen, M_PI, mpLayer::m_visible, m_z0, SMITH_VIEW::plotRect, SMITH_VIEW::radius, smithView(), SMITH_VIEW::ToScreen(), and SMITH_VIEW::zoom.

◆ SetBrush()

void mpLayer::SetBrush ( const wxBrush & brush)
inlineinherited

Set layer brush.

Parameters
brushbrush, will be copied to internal class member

Definition at line 313 of file mathplot.h.

References m_brush.

◆ SetContinuity()

void mpLayer::SetContinuity ( bool continuity)
inlineinherited

Set the 'continuity' property of the layer (true:draws a continuous line, false:draws separate points).

See also
GetContinuity

Definition at line 269 of file mathplot.h.

References m_continuous.

Referenced by TRACE::TRACE().

◆ SetFont()

void mpLayer::SetFont ( const wxFont & font)
inlineinherited

Set layer font.

Parameters
fontFont, will be copied to internal class member

Definition at line 288 of file mathplot.h.

References m_font.

Referenced by mpLayer(), mpScaleXBase::mpScaleXBase(), and mpScaleY::mpScaleY().

◆ SetName()

virtual void mpLayer::SetName ( const wxString & name)
inlinevirtualinherited

Set layer name.

Parameters
nameName, will be copied to internal class member

Reimplemented in TRACE.

Definition at line 283 of file mathplot.h.

References m_name, and name.

Referenced by mpFX::mpFX(), mpFXY::mpFXY(), mpFY::mpFY(), mpScaleXBase::mpScaleXBase(), mpScaleY::mpScaleY(), and TRACE::SetName().

◆ SetNormalizedLabels()

void SMITH_GRID::SetNormalizedLabels ( bool aNormalized)
inline

Chart placement including pan/zoom.

Definition at line 216 of file sim_plot_tab.h.

References m_normalized.

◆ SetPen()

void mpLayer::SetPen ( const wxPen & pen)
inlineinherited

Set layer pen.

Parameters
penPen, will be copied to internal class member

Definition at line 293 of file mathplot.h.

References m_pen.

Referenced by mpLayer(), mpScaleXBase::mpScaleXBase(), mpScaleY::mpScaleY(), mpInfoLegend::Plot(), and SIM_PLOT_TAB::UpdateTraceStyle().

◆ SetReferenceImpedance()

void SMITH_GRID::SetReferenceImpedance ( double aZ0)
inline

Definition at line 214 of file sim_plot_tab.h.

References m_z0.

◆ SetVisible()

void mpLayer::SetVisible ( bool show)
inlineinherited

Sets layer visibility.

Parameters
showvisibility bool.

Definition at line 305 of file mathplot.h.

References m_visible.

◆ ShowName()

void mpLayer::ShowName ( bool show)
inlineinherited

Shows or hides the text label with the name of the layer (default is visible).

Definition at line 278 of file mathplot.h.

References m_showName.

Referenced by TRACE::TRACE().

Member Data Documentation

◆ m_brush

wxBrush mpLayer::m_brush
protectedinherited

Definition at line 319 of file mathplot.h.

Referenced by GetBrush(), and SetBrush().

◆ m_continuous

bool mpLayer::m_continuous
protectedinherited

Definition at line 322 of file mathplot.h.

Referenced by GetContinuity(), mpLayer(), CURSOR::Plot(), mpFXY::Plot(), and SetContinuity().

◆ m_displayName

wxString mpLayer::m_displayName
protectedinherited

Definition at line 321 of file mathplot.h.

Referenced by GetDisplayName(), and TRACE::SetName().

◆ m_font

wxFont mpLayer::m_font
protectedinherited

◆ m_name

wxString mpLayer::m_name
protectedinherited

◆ m_normalized

bool SMITH_GRID::m_normalized = false
private

Definition at line 223 of file sim_plot_tab.h.

Referenced by Plot(), and SetNormalizedLabels().

◆ m_pen

◆ m_showName

bool mpLayer::m_showName
protectedinherited

Definition at line 323 of file mathplot.h.

Referenced by mpLayer(), mpFX::Plot(), mpFXY::Plot(), mpFY::Plot(), and ShowName().

◆ m_type

◆ m_visible

◆ m_z0

double SMITH_GRID::m_z0 = 50.0
private

Definition at line 222 of file sim_plot_tab.h.

Referenced by Plot(), and SetReferenceImpedance().


The documentation for this class was generated from the following files: