WhatsThis update
[mussa.git] / qui / ThresholdWidget.hpp
index 319175a985f91527af48563c0e53be8aa55ef594..47a7778f4accb6d272435a7d6a79232c84ba66ab 100644 (file)
@@ -12,6 +12,11 @@ class ThresholdWidget : public QWidget
 
 public: 
   ThresholdWidget(QWidget *parent = 0, int min=20, int max=30);
+  
+  //! is the widget in read only mode
+  bool isReadOnly() const;
+  //! set the widget to specified read only state
+  void setReadOnly(bool);
 
   //! return min_threshold/max_threshold
   double min_ratio() const;
@@ -33,6 +38,7 @@ signals:
   void thresholdChanged(int new_threshold);
 
 protected:
+  void setupWidgets();
   QHBoxLayout *layout;
   QSpinBox *basepair_spinner;
   QLabel *window_size_label;