update CycleTimer to utilize NDEBUG and PBD::DEBUG so that we can leave them in place...
[ardour.git] / gtk2_ardour / led.h
index 06ac7454dfb301bc9d7494cd0040ee2b0ffcf173..edb08818b3e527e2d1ff0dc8059c21bb7c2199e4 100644 (file)
@@ -29,26 +29,22 @@ class LED : public CairoWidget
   public:
        LED ();
        virtual ~LED ();
-        
-        void set_visual_state (int32_t s);
-        int32_t visual_state() const { return _visual_state; }
-        void set_diameter (float);
+
+       void set_diameter (float);
 
   protected:
        void render (cairo_t *);
-        void on_size_request (Gtk::Requisition* req);
-        void on_realize ();
+       void on_size_request (Gtk::Requisition* req);
+       void on_realize ();
 
   private:
-        int32_t _visual_state;
-        bool  _active;
-        float _diameter;
-        bool  _fixed_diameter;
-        float _red;
-        float _green;
-        float _blue;
-
-        void set_colors_from_style ();
+       float _diameter;
+       float _red;
+       float _green;
+       float _blue;
+       bool  _fixed_diameter;
+
+       void set_colors_from_style ();
 };
 
 #endif /* __gtk2_ardour_led_h__ */