Home
last modified time | relevance | path

Searched refs:m_plot (Results 1 – 25 of 28) sorted by relevance

12

/dports/net/ns3/ns-allinone-3.35/netanim-3.108/
H A Dcountertablesscene.cpp33 m_plot (0), in CounterTablesScene()
94 delete m_plot; in reloadContent()
95 m_plot = 0; in reloadContent()
207 m_plot = new QCustomPlot; in reloadContent()
209 m_plotItem->setWidget (m_plot); in reloadContent()
219 m_plot->graph (chartIndex)->setPen (pen); in reloadContent()
228 m_plot->xAxis->setLabel("Time"); in reloadContent()
229 m_plot->yAxis->setLabel(m_currentCounterName); in reloadContent()
230 m_plot->xAxis->setRange (0, maxTime); in reloadContent()
232 m_plot->legend->setVisible (true); in reloadContent()
[all …]
H A Dcountertablesscene.h46 QCustomPlot * m_plot; variable
/dports/x11-toolkits/wxgtk28-contrib/wxGTK-2.8.12/contrib/samples/plot/
H A Dplot.cpp74 wxPlotWindow *m_plot; member in MyFrame
128m_plot = new wxPlotWindow( this, wxID_ANY, wxPoint(0,0), wxSize(100,100), wxSUNKEN_BORDER | wxPLOT… in IMPLEMENT_DYNAMIC_CLASS()
129 m_plot->SetUnitsPerValue( 0.01 ); in IMPLEMENT_DYNAMIC_CLASS()
137 m_plot->AddChartTitle( titleText, titleFont, titleColour ); in IMPLEMENT_DYNAMIC_CLASS()
139 m_plot->Add( new MyPlotCurve( 0, -1.5, 1.5 ) ); in IMPLEMENT_DYNAMIC_CLASS()
140 m_plot->Add( new MyPlotCurve( 50, -1.5, 1.5 ) ); in IMPLEMENT_DYNAMIC_CLASS()
146 m_plot->Add( oo ); in IMPLEMENT_DYNAMIC_CLASS()
156 topsizer->Add( m_plot, 1, wxEXPAND ); in IMPLEMENT_DYNAMIC_CLASS()
181 double x = event.GetPosition() * m_plot->GetUnitsPerValue(); in OnPlotClick()
188 double x = event.GetPosition() * m_plot->GetUnitsPerValue(); in OnPlotDClick()
/dports/x11-toolkits/wxgtk28-common/wxGTK-2.8.12/contrib/samples/plot/
H A Dplot.cpp74 wxPlotWindow *m_plot; member in MyFrame
128m_plot = new wxPlotWindow( this, wxID_ANY, wxPoint(0,0), wxSize(100,100), wxSUNKEN_BORDER | wxPLOT… in IMPLEMENT_DYNAMIC_CLASS()
129 m_plot->SetUnitsPerValue( 0.01 ); in IMPLEMENT_DYNAMIC_CLASS()
137 m_plot->AddChartTitle( titleText, titleFont, titleColour ); in IMPLEMENT_DYNAMIC_CLASS()
139 m_plot->Add( new MyPlotCurve( 0, -1.5, 1.5 ) ); in IMPLEMENT_DYNAMIC_CLASS()
140 m_plot->Add( new MyPlotCurve( 50, -1.5, 1.5 ) ); in IMPLEMENT_DYNAMIC_CLASS()
146 m_plot->Add( oo ); in IMPLEMENT_DYNAMIC_CLASS()
156 topsizer->Add( m_plot, 1, wxEXPAND ); in IMPLEMENT_DYNAMIC_CLASS()
181 double x = event.GetPosition() * m_plot->GetUnitsPerValue(); in OnPlotClick()
188 double x = event.GetPosition() * m_plot->GetUnitsPerValue(); in OnPlotDClick()
/dports/x11-toolkits/wxgtk28-contrib-common/wxGTK-2.8.12/contrib/samples/plot/
H A Dplot.cpp74 wxPlotWindow *m_plot; member in MyFrame
128m_plot = new wxPlotWindow( this, wxID_ANY, wxPoint(0,0), wxSize(100,100), wxSUNKEN_BORDER | wxPLOT… in IMPLEMENT_DYNAMIC_CLASS()
129 m_plot->SetUnitsPerValue( 0.01 ); in IMPLEMENT_DYNAMIC_CLASS()
137 m_plot->AddChartTitle( titleText, titleFont, titleColour ); in IMPLEMENT_DYNAMIC_CLASS()
139 m_plot->Add( new MyPlotCurve( 0, -1.5, 1.5 ) ); in IMPLEMENT_DYNAMIC_CLASS()
140 m_plot->Add( new MyPlotCurve( 50, -1.5, 1.5 ) ); in IMPLEMENT_DYNAMIC_CLASS()
146 m_plot->Add( oo ); in IMPLEMENT_DYNAMIC_CLASS()
156 topsizer->Add( m_plot, 1, wxEXPAND ); in IMPLEMENT_DYNAMIC_CLASS()
181 double x = event.GetPosition() * m_plot->GetUnitsPerValue(); in OnPlotClick()
188 double x = event.GetPosition() * m_plot->GetUnitsPerValue(); in OnPlotDClick()
/dports/x11-toolkits/wxgtk28/wxGTK-2.8.12/contrib/samples/plot/
H A Dplot.cpp74 wxPlotWindow *m_plot; member in MyFrame
128m_plot = new wxPlotWindow( this, wxID_ANY, wxPoint(0,0), wxSize(100,100), wxSUNKEN_BORDER | wxPLOT… in IMPLEMENT_DYNAMIC_CLASS()
129 m_plot->SetUnitsPerValue( 0.01 ); in IMPLEMENT_DYNAMIC_CLASS()
137 m_plot->AddChartTitle( titleText, titleFont, titleColour ); in IMPLEMENT_DYNAMIC_CLASS()
139 m_plot->Add( new MyPlotCurve( 0, -1.5, 1.5 ) ); in IMPLEMENT_DYNAMIC_CLASS()
140 m_plot->Add( new MyPlotCurve( 50, -1.5, 1.5 ) ); in IMPLEMENT_DYNAMIC_CLASS()
146 m_plot->Add( oo ); in IMPLEMENT_DYNAMIC_CLASS()
156 topsizer->Add( m_plot, 1, wxEXPAND ); in IMPLEMENT_DYNAMIC_CLASS()
181 double x = event.GetPosition() * m_plot->GetUnitsPerValue(); in OnPlotClick()
188 double x = event.GetPosition() * m_plot->GetUnitsPerValue(); in OnPlotDClick()
/dports/science/py-avogadrolibs/avogadrolibs-1.94.0/avogadro/qtplugins/plotrmsd/
H A Dplotrmsd.cpp134 if (!m_plot) in displayDialog()
135 m_plot.reset(new VTK::VtkPlot); in displayDialog()
137 m_plot->setData(data); in displayDialog()
138 m_plot->setWindowName(windowName); in displayDialog()
139 m_plot->setXTitle(xTitle); in displayDialog()
140 m_plot->setYTitle(yTitle); in displayDialog()
141 m_plot->setLineLabels(lineLabels); in displayDialog()
142 m_plot->setLineColors(lineColors); in displayDialog()
143 m_plot->show(); in displayDialog()
H A Dplotrmsd.h73 QScopedPointer<VTK::VtkPlot> m_plot; variable
/dports/science/avogadrolibs/avogadrolibs-1.94.0/avogadro/qtplugins/plotrmsd/
H A Dplotrmsd.cpp134 if (!m_plot) in displayDialog()
135 m_plot.reset(new VTK::VtkPlot); in displayDialog()
137 m_plot->setData(data); in displayDialog()
138 m_plot->setWindowName(windowName); in displayDialog()
139 m_plot->setXTitle(xTitle); in displayDialog()
140 m_plot->setYTitle(yTitle); in displayDialog()
141 m_plot->setLineLabels(lineLabels); in displayDialog()
142 m_plot->setLineColors(lineColors); in displayDialog()
143 m_plot->show(); in displayDialog()
H A Dplotrmsd.h73 QScopedPointer<VTK::VtkPlot> m_plot; variable
/dports/science/py-avogadrolibs/avogadrolibs-1.94.0/avogadro/qtplugins/plotpdf/
H A Dplotpdf.cpp155 if (!m_plot) in displayDialog()
156 m_plot.reset(new VTK::VtkPlot); in displayDialog()
158 m_plot->setData(data); in displayDialog()
159 m_plot->setWindowName(windowName); in displayDialog()
160 m_plot->setXTitle(xTitle); in displayDialog()
161 m_plot->setYTitle(yTitle); in displayDialog()
162 m_plot->setLineLabels(lineLabels); in displayDialog()
163 m_plot->setLineColors(lineColors); in displayDialog()
164 m_plot->show(); in displayDialog()
H A Dplotpdf.h78 QScopedPointer<VTK::VtkPlot> m_plot; variable
/dports/science/avogadrolibs/avogadrolibs-1.94.0/avogadro/qtplugins/plotpdf/
H A Dplotpdf.cpp155 if (!m_plot) in displayDialog()
156 m_plot.reset(new VTK::VtkPlot); in displayDialog()
158 m_plot->setData(data); in displayDialog()
159 m_plot->setWindowName(windowName); in displayDialog()
160 m_plot->setXTitle(xTitle); in displayDialog()
161 m_plot->setYTitle(yTitle); in displayDialog()
162 m_plot->setLineLabels(lineLabels); in displayDialog()
163 m_plot->setLineColors(lineColors); in displayDialog()
164 m_plot->show(); in displayDialog()
H A Dplotpdf.h78 QScopedPointer<VTK::VtkPlot> m_plot; variable
/dports/science/py-avogadrolibs/avogadrolibs-1.94.0/avogadro/qtplugins/plotxrd/
H A Dplotxrd.cpp153 if (!m_plot) in displayDialog()
154 m_plot.reset(new VTK::VtkPlot); in displayDialog()
156 m_plot->setData(data); in displayDialog()
157 m_plot->setWindowName(windowName); in displayDialog()
158 m_plot->setXTitle(xTitle); in displayDialog()
159 m_plot->setYTitle(yTitle); in displayDialog()
160 m_plot->setLineLabels(lineLabels); in displayDialog()
161 m_plot->setLineColors(lineColors); in displayDialog()
162 m_plot->show(); in displayDialog()
H A Dplotxrd.h93 QScopedPointer<VTK::VtkPlot> m_plot; variable
/dports/science/avogadrolibs/avogadrolibs-1.94.0/avogadro/qtplugins/plotxrd/
H A Dplotxrd.cpp153 if (!m_plot) in displayDialog()
154 m_plot.reset(new VTK::VtkPlot); in displayDialog()
156 m_plot->setData(data); in displayDialog()
157 m_plot->setWindowName(windowName); in displayDialog()
158 m_plot->setXTitle(xTitle); in displayDialog()
159 m_plot->setYTitle(yTitle); in displayDialog()
160 m_plot->setLineLabels(lineLabels); in displayDialog()
161 m_plot->setLineColors(lineColors); in displayDialog()
162 m_plot->show(); in displayDialog()
H A Dplotxrd.h93 QScopedPointer<VTK::VtkPlot> m_plot; variable
/dports/net-p2p/qbittorrent/qbittorrent-4.3.9/src/gui/properties/
H A Dspeedwidget.cpp112 m_plot = new SpeedPlotView(this); in SpeedWidget()
116 m_layout->addWidget(m_plot); in SpeedWidget()
120 m_plot->show(); in SpeedWidget()
146 m_plot->pushPoint(sampleData); in update()
151 m_plot->setPeriod(static_cast<SpeedPlotView::TimePeriod>(period)); in onPeriodChange()
157 m_plot->setGraphEnable(static_cast<SpeedPlotView::GraphID>(id), action->isChecked()); in onGraphChange()
174 m_plot->setGraphEnable(static_cast<SpeedPlotView::GraphID>(id), enable); in loadSettings()
H A Dspeedwidget.h76 SpeedPlotView *m_plot; variable
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/addons/kodi-dev-kit/include/kodi/addon-instance/pvr/
H A DEPG.h56 m_plot = epg.m_plot; in PVREPGTag()
162 void SetPlot(const std::string& plot) { m_plot = plot; } in SetPlot()
165 std::string GetPlot() const { return m_plot; } in GetPlot()
400 m_cStructure->strPlot = m_plot.c_str(); in GetTag()
425 std::string m_plot; variable
441 m_plot = tag->strPlot == nullptr ? "" : tag->strPlot; in SetData()
/dports/math/gambit/gambit-16.0.1/src/gui/
H A Ddlnfglogit.cc554 wxPlotCtrl *m_plot; member in __anon47bec7a30111::LogitPrintout
558 : wxPrintout(p_label), m_plot(p_plot) { } in LogitPrintout()
563 m_plot->DrawWholePlot(GetDC(), wxRect(50, 50, in OnPrintPage()
584 LogitPlotPanel *m_plot; member in __anon47bec7a30111::LogitMixedDialog
712 m_plot = new LogitPlotPanel(this, m_doc); in BEGIN_EVENT_TABLE()
713 midSizer->Add(m_plot, 0, wxALL | wxALIGN_CENTER, 5); in BEGIN_EVENT_TABLE()
783 m_plot->AddProfile(msg); in OnIdle()
812 m_plot->AddProfile(msg); in OnEndProcess()
831 m_plot->Plot(); in OnEndProcess()
880 m_plot->SetScaleFactor(m_scaler->GetValue()); in OnChangeScale()
[all …]
/dports/devel/agar/agar-1.5.0/math/
H A Dm_plotter.h49 typedef struct m_plot { struct
63 struct m_plot *plot; /* Other plot */ argument
84 AG_TAILQ_ENTRY(m_plot) plots; argument
114 AG_TAILQ_HEAD_(m_plot) plots; /* Plots in this view */
/dports/multimedia/kodi-addon-pvr.iptvsimple/pvr.iptvsimple-19.0.3-Matrix/src/iptvsimple/data/
H A DEpgEntry.h73 const std::string& GetPlot() const { return m_plot; } in GetPlot()
74 void SetPlot(const std::string& value) { m_plot = value; } in SetPlot()
125 std::string m_plot; variable
H A DEpgEntry.cpp34 left.SetPlot(m_plot); in UpdateTo()
217 m_plot = GetNodeValue(channelNode, "desc"); in UpdateFrom()

12