a-High/LowPass allow 8K samples inclusive
[ardour.git] / gtk2_ardour / main_clock.h
index fc9075432ff3044181960452a3dd5b34a5408e1e..25ddff45a9f07845343611f060b052da69b0ea62 100644 (file)
@@ -17,6 +17,9 @@
 
 */
 
+#ifndef __gtk_ardour_main_clock_h__
+#define __gtk_ardour_main_clock_h__
+
 #include "audio_clock.h"
 
 /** A simple subclass of AudioClock that adds a few things to its context menu:
 class MainClock : public AudioClock
 {
 public:
-       MainClock (const std::string& clock_name, bool is_transient, const std::string& widget_name,
-                  bool editable, bool follows_playhead, bool primary, bool duration = false, bool with_info = false);
+       MainClock (const std::string& clock_name, const std::string& widget_name, bool primary);
 
 private:
-       
+
        // Editor *_editor;
 
        void build_ops_menu ();
@@ -40,4 +42,8 @@ private:
        void insert_new_meter ();
        framepos_t absolute_time () const;
        bool _primary;
+
+       bool on_button_press_event (GdkEventButton *ev);
 };
+
+#endif // __gtk_ardour_main_clock_h__