From 04e48cd798a28ad8df3233fa46b185d02d2d3f96 Mon Sep 17 00:00:00 2001 From: Samuel Fadel Date: Thu, 27 Aug 2015 15:22:29 -0300 Subject: Renamed member m_currentState and reordered to match declaration and initialization. --- scatterplot.h | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'scatterplot.h') diff --git a/scatterplot.h b/scatterplot.h index a942217..a115755 100644 --- a/scatterplot.h +++ b/scatterplot.h @@ -43,21 +43,22 @@ private: arma::mat m_xy; float m_xmin, m_xmax, m_ymin, m_ymax; - bool m_shouldUpdateGeometry, m_shouldUpdateMaterials; - - arma::vec m_colorData; - - ColorScale m_colorScale; - enum InteractionState { INTERACTION_NONE, INTERACTION_SELECTING, INTERACTION_SELECTED, INTERACTION_MOVING - } m_currentState; + } m_currentInteractionState; + QPointF m_dragOriginPos, m_dragCurrentPos; QSet m_selectedGlyphs; + + bool m_shouldUpdateGeometry, m_shouldUpdateMaterials; + + arma::vec m_colorData; + + ColorScale m_colorScale; }; #endif // SCATTERPLOT_H -- cgit v1.2.3