KiCad PCB EDA Suite
|
A class providing graphs functionality for a 2D plot (either continuous or a set of points), from vectors of data. More...
#include <mathplot.h>
Public Member Functions | |
mpFXYVector (const wxString &name=wxEmptyString, int flags=mpALIGN_NE) | |
virtual | ~mpFXYVector () |
virtual void | SetData (const std::vector< double > &xs, const std::vector< double > &ys) |
Changes the internal data: the set of points to draw. | |
void | SetSweepCount (int aSweepCount) |
void | SetSweepSize (size_t aSweepSize) |
void | Clear () |
Clears all the data, leaving the layer empty. | |
double | GetMinX () const override |
Returns the actual minimum X data (loaded in SetData). | |
double | GetMinY () const override |
Returns the actual minimum Y data (loaded in SetData). | |
double | GetMaxX () const override |
Returns the actual maximum X data (loaded in SetData). | |
double | GetMaxY () const override |
Returns the actual maximum Y data (loaded in SetData). | |
virtual void | Plot (wxDC &dc, mpWindow &w) override |
Layer plot handler. | |
virtual void | SetScale (mpScaleBase *scaleX, mpScaleBase *scaleY) |
void | UpdateScales () |
double | s2x (double plotCoordX) const |
double | s2y (double plotCoordY) const |
double | x2s (double x) const |
double | y2s (double y) const |
virtual bool | HasBBox () const |
Check whether this layer has a bounding box. | |
virtual bool | IsInfo () const |
Check whether the layer is an info 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. | |
Protected Member Functions | |
void | Rewind () override |
Rewind value enumeration with mpFXY::GetNextXY. | |
void | SetSweepWindow (int aSweepIdx) override |
bool | GetNextXY (double &x, double &y) override |
Get locus value for next N. | |
size_t | GetCount () const override |
int | GetSweepCount () const override |
void | UpdateViewBoundary (wxCoord xnew, wxCoord ynew) |
Update label positioning data. | |
Protected Attributes | |
std::vector< double > | m_xs |
The internal copy of the set of data to draw. | |
std::vector< double > | m_ys |
size_t | m_index |
size_t | m_sweepWindow |
double | m_minX |
Loaded at SetData. | |
double | m_maxX |
double | m_minY |
double | m_maxY |
int | m_sweepCount = 1 |
size_t | m_sweepSize = std::numeric_limits<size_t>::max() |
int | m_flags |
wxCoord | maxDrawX |
wxCoord | minDrawX |
wxCoord | maxDrawY |
wxCoord | minDrawY |
mpScaleBase * | m_scaleX |
mpScaleBase * | m_scaleY |
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 |
A class providing graphs functionality for a 2D plot (either continuous or a set of points), from vectors of data.
This class can be used directly, the user does not need to derive any new class. Simply pass the data as two vectors with the same length containing the X and Y coordinates to the method SetData.
To generate a graph with a set of points, call
or
to render the sequence of coordinates as a continuous line.
(Added: Jose Luis Blanco, AGO-2007)
Definition at line 1408 of file mathplot.h.
mpFXYVector::mpFXYVector | ( | const wxString & | name = wxEmptyString, |
int | flags = mpALIGN_NE ) |
name | Label |
flags | Label alignment, pass one of mpALIGN_NE, mpALIGN_NW, mpALIGN_SW, mpALIGN_SE. |
Definition at line 2570 of file mathplot.cpp.
References m_index, m_maxX, m_maxY, m_minX, m_minY, m_sweepWindow, mpLayer::m_type, mpFXY::mpFXY(), mpFXYVector(), mpLAYER_PLOT, and name.
Referenced by mpFXYVector(), and TRACE::TRACE().
|
inlinevirtual |
Definition at line 1416 of file mathplot.h.
void mpFXYVector::Clear | ( | ) |
Clears all the data, leaving the layer empty.
Definition at line 2654 of file mathplot.cpp.
|
inlineinherited |
Get brush set for this layer.
Definition at line 299 of file mathplot.h.
References m_brush.
|
inlineinherited |
Gets the 'continuity' property of the layer.
Definition at line 264 of file mathplot.h.
References m_continuous.
|
inlineoverrideprotectedvirtual |
|
inlineinherited |
Definition at line 241 of file mathplot.h.
References m_displayName, and m_name.
Referenced by mpInfoLegend::Plot().
|
inlineinherited |
Get font set for this layer.
Definition at line 249 of file mathplot.h.
References m_font.
|
inlineinherited |
Get layer type: a Layer can be of different types: plot lines, axis, info boxes, etc, this method returns the right value.
Definition at line 287 of file mathplot.h.
References m_type.
Referenced by mpInfoLegend::Plot().
|
inlineoverridevirtual |
Returns the actual maximum X data (loaded in SetData).
Reimplemented from mpLayer.
Definition at line 1473 of file mathplot.h.
References m_maxX.
|
inlineoverridevirtual |
Returns the actual maximum Y data (loaded in SetData).
Reimplemented from mpLayer.
Definition at line 1477 of file mathplot.h.
References m_maxY.
|
inlineoverridevirtual |
Returns the actual minimum X data (loaded in SetData).
Reimplemented from mpLayer.
Definition at line 1465 of file mathplot.h.
References m_minX.
|
inlineoverridevirtual |
Returns the actual minimum Y data (loaded in SetData).
Reimplemented from mpLayer.
Definition at line 1469 of file mathplot.h.
References m_minY.
|
inlineinherited |
Get layer name.
Definition at line 239 of file mathplot.h.
References m_name.
Referenced by SIMULATOR_FRAME_UI::updatePlotCursors(), and SIM_PLOT_TAB::UpdateTraceStyle().
|
overrideprotectedvirtual |
Get locus value for next N.
Overridden in this implementation.
x | Returns X value |
y | Returns Y value |
Implements mpFXY.
Definition at line 2639 of file mathplot.cpp.
References m_index, m_sweepWindow, m_xs, and m_ys.
|
inlineinherited |
Get pen set for this layer.
Definition at line 254 of file mathplot.h.
References m_pen.
Referenced by CURSOR::Plot(), mpInfoLegend::Plot(), and SIMULATOR_FRAME_UI::rebuildSignalsGrid().
|
inlineoverrideprotectedvirtual |
|
inlinevirtualinherited |
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.
true | Has bounding box |
false | Has not bounding box |
Reimplemented in mpInfoLayer, mpScaleBase, and mpScaleY.
Definition at line 162 of file mathplot.h.
|
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.
Reimplemented in mpInfoLayer.
Definition at line 171 of file mathplot.h.
|
inlineinherited |
Checks whether the layer is visible or not.
Definition at line 291 of file mathplot.h.
References m_visible.
Referenced by mpWindow::IsLayerVisible(), and mpInfoLegend::Plot().
|
overridevirtualinherited |
Layer plot handler.
This implementation will plot the locus in the visible area and put a label according to the alignment specified.
Implements mpLayer.
Definition at line 445 of file mathplot.cpp.
References GetCount(), mpWindow::GetMarginBottom(), mpWindow::GetMarginLeft(), mpWindow::GetMarginRight(), mpWindow::GetMarginTop(), GetNextXY(), mpWindow::GetScrX(), mpWindow::GetScrY(), GetSweepCount(), mpLayer::m_continuous, m_flags, mpLayer::m_font, mpLayer::m_name, mpLayer::m_pen, m_scaleX, m_scaleY, mpLayer::m_showName, mpLayer::m_visible, maxDrawX, maxDrawY, minDrawX, minDrawY, mpALIGN_NE, mpALIGN_NW, mpALIGN_SE, mpALIGNMASK, Rewind(), SetSweepWindow(), UpdateViewBoundary(), mpWindow::x2p(), and mpWindow::y2p().
|
overrideprotectedvirtual |
Rewind value enumeration with mpFXY::GetNextXY.
Overridden in this implementation.
Implements mpFXY.
Definition at line 2625 of file mathplot.cpp.
References m_index, and m_sweepWindow.
|
inherited |
Definition at line 2726 of file mathplot.cpp.
References m_scaleX.
|
inherited |
Definition at line 2732 of file mathplot.cpp.
References m_scaleY.
|
inlineinherited |
Set layer brush.
brush | brush, will be copied to internal class member |
Definition at line 303 of file mathplot.h.
References m_brush.
|
inlineinherited |
Set the 'continuity' property of the layer (true:draws a continuous line, false:draws separate points).
Definition at line 259 of file mathplot.h.
References m_continuous.
Referenced by TRACE::TRACE().
|
virtual |
Changes the internal data: the set of points to draw.
Both vectors MUST be of the same length. This method DOES NOT refresh the mpWindow; do it manually.
Reimplemented in TRACE.
Definition at line 2661 of file mathplot.cpp.
References m_maxX, m_maxY, m_minX, m_minY, m_xs, and m_ys.
Referenced by TRACE::SetData().
|
inlineinherited |
Set layer font.
font | Font, will be copied to internal class member |
Definition at line 278 of file mathplot.h.
References m_font.
Referenced by mpLayer(), mpScaleXBase::mpScaleXBase(), and mpScaleY::mpScaleY().
|
inlinevirtualinherited |
Set layer name.
name | Name, will be copied to internal class member |
Reimplemented in TRACE.
Definition at line 273 of file mathplot.h.
Referenced by mpFX::mpFX(), mpFXY::mpFXY(), mpFY::mpFY(), mpScaleXBase::mpScaleXBase(), mpScaleY::mpScaleY(), and TRACE::SetName().
|
inlineinherited |
Set layer pen.
pen | Pen, will be copied to internal class member |
Definition at line 283 of file mathplot.h.
References m_pen.
Referenced by mpLayer(), mpScaleXBase::mpScaleXBase(), mpScaleY::mpScaleY(), mpInfoLegend::Plot(), and SIM_PLOT_TAB::UpdateTraceStyle().
|
virtualinherited |
Definition at line 2707 of file mathplot.cpp.
References m_scaleX, m_scaleY, and UpdateScales().
Referenced by SIM_PLOT_TAB::SetTraceData().
|
inline |
Definition at line 1424 of file mathplot.h.
References m_sweepCount.
Referenced by SIM_PLOT_TAB::SetTraceData().
|
inline |
Definition at line 1425 of file mathplot.h.
References m_sweepSize.
Referenced by SIM_PLOT_TAB::SetTraceData().
|
overrideprotectedvirtual |
Reimplemented from mpFXY.
Definition at line 2632 of file mathplot.cpp.
References m_index, m_sweepSize, and m_sweepWindow.
|
inlineinherited |
Sets layer visibility.
show | visibility bool. |
Definition at line 295 of file mathplot.h.
References m_visible.
|
inlineinherited |
Shows or hides the text label with the name of the layer (default is visible).
Definition at line 268 of file mathplot.h.
References m_showName.
Referenced by TRACE::TRACE().
|
inherited |
Definition at line 2716 of file mathplot.cpp.
References mpLayer::GetMaxX(), mpLayer::GetMaxY(), mpLayer::GetMinX(), mpLayer::GetMinY(), m_scaleX, and m_scaleY.
Referenced by SetScale().
|
protectedinherited |
|
inherited |
Definition at line 2738 of file mathplot.cpp.
References m_scaleX.
|
inherited |
Definition at line 2744 of file mathplot.cpp.
References m_scaleY.
|
protectedinherited |
Definition at line 309 of file mathplot.h.
Referenced by GetBrush(), and SetBrush().
|
protectedinherited |
Definition at line 312 of file mathplot.h.
Referenced by GetContinuity(), mpLayer(), CURSOR::Plot(), mpFXY::Plot(), and SetContinuity().
|
protectedinherited |
Definition at line 311 of file mathplot.h.
Referenced by GetDisplayName(), and TRACE::SetName().
|
protectedinherited |
Definition at line 582 of file mathplot.h.
|
protectedinherited |
Definition at line 307 of file mathplot.h.
Referenced by GetFont(), mpFX::Plot(), mpFXY::Plot(), mpFY::Plot(), mpInfoLegend::Plot(), mpScaleXBase::Plot(), mpScaleY::Plot(), and SetFont().
|
protected |
Definition at line 1437 of file mathplot.h.
Referenced by GetNextXY(), mpFXYVector(), Rewind(), and SetSweepWindow().
|
protected |
Definition at line 1442 of file mathplot.h.
Referenced by GetMaxX(), mpFXYVector(), and SetData().
|
protected |
Definition at line 1442 of file mathplot.h.
Referenced by GetMaxY(), mpFXYVector(), and SetData().
|
protected |
Loaded at SetData.
Definition at line 1442 of file mathplot.h.
Referenced by GetMinX(), mpFXYVector(), and SetData().
|
protected |
Definition at line 1442 of file mathplot.h.
Referenced by GetMinY(), mpFXYVector(), and SetData().
|
protectedinherited |
Definition at line 310 of file mathplot.h.
Referenced by GetDisplayName(), GetName(), mpFX::Plot(), mpFXY::Plot(), mpFY::Plot(), mpScaleXBase::Plot(), mpScaleY::Plot(), and SetName().
|
protectedinherited |
Definition at line 308 of file mathplot.h.
Referenced by GetPen(), mpFX::Plot(), mpFXY::Plot(), mpFY::Plot(), mpInfoLayer::Plot(), mpInfoLegend::Plot(), mpScaleXBase::Plot(), mpScaleY::Plot(), and SetPen().
|
protectedinherited |
Definition at line 587 of file mathplot.h.
Referenced by mpFXY(), Plot(), s2x(), SetScale(), UpdateScales(), and x2s().
|
protectedinherited |
Definition at line 587 of file mathplot.h.
Referenced by mpFXY(), Plot(), s2y(), SetScale(), UpdateScales(), and y2s().
|
protectedinherited |
Definition at line 313 of file mathplot.h.
Referenced by mpLayer(), mpFX::Plot(), mpFXY::Plot(), mpFY::Plot(), and ShowName().
|
protected |
Definition at line 1443 of file mathplot.h.
Referenced by GetSweepCount(), and SetSweepCount().
|
protected |
Definition at line 1444 of file mathplot.h.
Referenced by SetSweepSize(), and SetSweepWindow().
|
protected |
Definition at line 1438 of file mathplot.h.
Referenced by GetNextXY(), mpFXYVector(), Rewind(), and SetSweepWindow().
|
protectedinherited |
Definition at line 314 of file mathplot.h.
Referenced by GetLayerType(), mpFX::mpFX(), mpFXY::mpFXY(), mpFXYVector::mpFXYVector(), mpFY::mpFY(), mpInfoLayer::mpInfoLayer(), mpInfoLayer::mpInfoLayer(), mpLayer(), mpScaleXBase::mpScaleXBase(), and mpScaleY::mpScaleY().
|
protectedinherited |
Definition at line 315 of file mathplot.h.
Referenced by IsVisible(), mpLayer(), CURSOR::Plot(), mpFX::Plot(), mpFXY::Plot(), mpFY::Plot(), mpInfoLayer::Plot(), mpInfoLegend::Plot(), mpScaleXBase::Plot(), mpScaleY::Plot(), and SetVisible().
|
protected |
The internal copy of the set of data to draw.
Definition at line 1435 of file mathplot.h.
Referenced by Clear(), GetCount(), TRACE::GetDataX(), GetNextXY(), and SetData().
|
protected |
Definition at line 1435 of file mathplot.h.
Referenced by Clear(), TRACE::GetDataY(), GetNextXY(), and SetData().
|
protectedinherited |
Definition at line 585 of file mathplot.h.
Referenced by mpFXY(), Plot(), and UpdateViewBoundary().
|
protectedinherited |
Definition at line 585 of file mathplot.h.
Referenced by mpFXY(), Plot(), and UpdateViewBoundary().
|
protectedinherited |
Definition at line 585 of file mathplot.h.
Referenced by mpFXY(), Plot(), and UpdateViewBoundary().
|
protectedinherited |
Definition at line 585 of file mathplot.h.
Referenced by mpFXY(), Plot(), and UpdateViewBoundary().