mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-15 10:05:47 +08:00
improved documentation
This commit is contained in:
parent
7d37140837
commit
9b877f9ed6
@ -821,10 +821,12 @@ void JKQTBasePlotter::setXY(double xminn, double xmaxx, double yminn, double yma
|
||||
yAxis->setRange(yminn, ymaxx);
|
||||
|
||||
if (affectsSecondaryAxes) {
|
||||
for (auto ax: getXAxes(false)) {
|
||||
const auto xaxes=getXAxes(false);
|
||||
for (auto ax: xaxes) {
|
||||
ax->setRange(ax->p2x(xminpix), ax->p2x(xmaxpix));
|
||||
}
|
||||
for (auto ax: getYAxes(false)) {
|
||||
const auto yaxes=getYAxes(false);
|
||||
for (auto ax: yaxes) {
|
||||
ax->setRange(ax->p2x(yminpix), ax->p2x(ymaxpix));
|
||||
}
|
||||
}
|
||||
|
@ -1771,7 +1771,15 @@ public Q_SLOTS:
|
||||
/**@}*/
|
||||
|
||||
Q_SIGNALS:
|
||||
/** \brief signal: emitted whenever the user selects a new x-y zoom range (by mouse) */
|
||||
/** \brief signal: emitted whenever the user selects a new x-y zoom range (in the major axes, e.g. setX(), setY(), setXY(), zoomToFit()... )
|
||||
*
|
||||
* \param newxmin start of the selected x-range (in plot coordinates)
|
||||
* \param newxmax end of the selected x-range (in plot coordinates)
|
||||
* \param newymin start of the selected x-range (in plot coordinates)
|
||||
* \param newymax end of the selected x-range (in plot coordinates)
|
||||
* \param sender JKQTPlotter sending this event
|
||||
*
|
||||
*/
|
||||
void zoomChangedLocally(double newxmin, double newxmax, double newymin, double newymax, JKQTBasePlotter* sender);
|
||||
|
||||
/** \brief emitted when the plot has to be updated */
|
||||
|
@ -1248,7 +1248,7 @@ class JKQTPLOTTER_LIB_EXPORT JKQTPlotter: public QWidget {
|
||||
void contextMenuOpened(double x, double y, QMenu* contextMenu);
|
||||
|
||||
|
||||
/** \brief signal: emitted whenever the user selects a new x-y zoom range (by mouse)
|
||||
/** \brief signal: emitted whenever the user selects a new x-y zoom range (in the major axes, e.g. by mouse, setX(), setY(), setXY(), zoomToFit()... )
|
||||
*
|
||||
* \param newxmin start of the selected x-range (in plot coordinates)
|
||||
* \param newxmax end of the selected x-range (in plot coordinates)
|
||||
@ -1257,6 +1257,8 @@ class JKQTPLOTTER_LIB_EXPORT JKQTPlotter: public QWidget {
|
||||
* \param sender JKQTPlotter sending this event
|
||||
*
|
||||
* This signal is designed to be connected to these Q_SLOTS: synchronizeXAxis(), synchronizeYAxis(), synchronizeXYAxis()
|
||||
*
|
||||
* \see JKQTBasePlotter::zoomChangedLocally()
|
||||
*/
|
||||
void zoomChangedLocally(double newxmin, double newxmax, double newymin, double newymax, JKQTPlotter* sender);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user