Make waveform show / scale / shape a global option in the prefs dialog to clean thing...
[ardour.git] / gtk2_ardour / audio_time_axis.h
index 291a900e8be865b1b25c11736b67c7435305124a..48ea7cc816efab5f14d0eeaeb66bbfee750b1db0 100644 (file)
 #include <gtkmm2ext/selector.h>
 #include <list>
 
-#include <ardour/types.h>
+#include "ardour/types.h"
 
 #include "ardour_dialog.h"
 #include "route_ui.h"
 #include "enums.h"
+#include "editing.h"
 #include "route_time_axis.h"
 #include "canvas.h"
-#include "color.h"
 
 namespace ARDOUR {
        class Session;
@@ -71,20 +71,22 @@ class AudioTimeAxisView : public RouteTimeAxisView
        
        AudioStreamView* audio_view();
 
-       void set_show_waveforms (bool yn);
        void set_show_waveforms_recording (bool yn);
        void show_all_xfades ();
        void hide_all_xfades ();
        void hide_dependent_views (TimeAxisViewItem&);
        void reveal_dependent_views (TimeAxisViewItem&);
-       void set_layer_display (LayerDisplay d);
                
        /* Overridden from parent to store display state */
        guint32 show_at (double y, int& nth, Gtk::VBox *parent);
        void hide ();
        
-       void create_automation_child (ARDOUR::ParamID param);
+       void create_automation_child (const Evoral::Parameter& param, bool show);
        
+       void first_idle ();
+
+       XMLNode* get_child_xml_node (const std::string & childname);
+
   private:
        friend class AudioStreamView;
        friend class AudioRegionView;
@@ -92,12 +94,8 @@ class AudioTimeAxisView : public RouteTimeAxisView
        void route_active_changed ();
 
        void append_extra_display_menu_items ();
+       Gtk::Menu* build_mode_menu();
        
-       void toggle_show_waveforms ();
-       void set_waveform_shape (WaveformShape);
-       void toggle_waveforms ();
-       void set_waveform_scale (WaveformScale);
-
        void show_all_automation ();
        void show_existing_automation ();
        void hide_all_automation ();
@@ -105,16 +103,8 @@ class AudioTimeAxisView : public RouteTimeAxisView
        void gain_hidden ();
        void pan_hidden ();
 
-       void update_pans ();
+       void ensure_pan_views (bool show = true);
        void update_control_names ();
-
-       Gtk::CheckMenuItem* waveform_item;
-       Gtk::RadioMenuItem* traditional_item;
-       Gtk::RadioMenuItem* rectified_item;
-       Gtk::RadioMenuItem* linearscale_item;
-       Gtk::RadioMenuItem* logscale_item;
-       Gtk::CheckMenuItem* gain_automation_item;
-       Gtk::CheckMenuItem* pan_automation_item;
 };
 
 #endif /* __ardour_audio_time_axis_h__ */