Finish off setting sequence offset user interface
[mussa.git] / qui / seqbrowser / seqproperties / PropertiesWindow.hpp
index f369af2014e0ebf9ac8a1495eef8b7c342d99ad1..ed293837616951880731394972f49306c404036c 100644 (file)
@@ -26,18 +26,22 @@ public slots:
   //! create a subanalysis and run it
   void apply();
   //! clear our model and close the window
-  void cancel();
+  void close();
   //! provide a way for the model to tell us to update our gui
   void modelUpdated(const QModelIndex&, int, int);
   //! update our title
   void updateTitle();
-
+  
+signals:
+  //! the user saved their changes
+  void propertiesChanged();
+  
 private:
   //! keep track of what analysis we're attached to
   MussaRef analysis;
   QTableView *table;
-  QPushButton *okButton;
-  QPushButton *cancelButton;
+  QPushButton *applyButton;
+  QPushButton *closeButton;
 
   SequencePropertiesModel model;
 };