Commit 5543eb85 authored by Adam Goins's avatar Adam Goins Committed by Makayla Shepherd
Browse files

Added m_historyLayout member variable to keep track of history entries. Added...

Added m_historyLayout member variable to keep track of history entries. Added appropriate signal/slots to header.
parent 463cae60
Loading
Loading
Loading
Loading
+8 −5
Original line number Original line Diff line number Diff line
@@ -22,7 +22,6 @@




#include "Tool.h"
#include "Tool.h"

// forward declarations
// forward declarations
class QComboBox;
class QComboBox;
class QDialog;
class QDialog;
@@ -32,6 +31,7 @@ class QListWidgetItem;
class QPushButton;
class QPushButton;
class QStackedWidget;
class QStackedWidget;
class QString;
class QString;
class QVBoxLayout;
class QWidget;
class QWidget;




@@ -125,7 +125,8 @@ namespace Isis {
   *                          management issue that caused the NavTool to go behind the
   *                          management issue that caused the NavTool to go behind the
   *                          ViewportMainWindow (parent widget) when using Gnome or Cinnamon. Fixes
   *                          ViewportMainWindow (parent widget) when using Gnome or Cinnamon. Fixes
   *                          #4541.
   *                          #4541.
   *
   *   @history 2018-01-10 Adam Goins - Added the m_historyLayout member variable the class to keep
   *                          a running history tab of edits made to points.
   *
   *
   */
   */
  class QnetNavTool : public Tool {
  class QnetNavTool : public Tool {
@@ -188,11 +189,12 @@ namespace Isis {
      void ignorePoints();
      void ignorePoints();
      void deletePoints();
      void deletePoints();
      void resetCubeList();
      void resetCubeList();
      
      void updateActivityHistory(QString activityMessage);
      void aprioriDialog();
      void aprioriDialog();
      void setAprioriDialogPoints();
      void setAprioriDialogPoints();


    signals:
    signals:
      void activityUpdate(QString);
      void loadPointImages (ControlPoint *);
      void loadPointImages (ControlPoint *);
      void loadImage(const QString &);
      void loadImage(const QString &);
      void modifyPoint(ControlPoint *);
      void modifyPoint(ControlPoint *);
@@ -219,6 +221,7 @@ namespace Isis {
      QComboBox *m_listCombo;
      QComboBox *m_listCombo;
      QListWidget *m_listBox;
      QListWidget *m_listBox;
      QLabel *m_filterCountLabel;
      QLabel *m_filterCountLabel;
      QVBoxLayout *m_historyLayout;
      int m_filterCount;
      int m_filterCount;


      QString m_editPointId;
      QString m_editPointId;