a reverb is a reverb is a reverb
[ardour.git] / gtk2_ardour / time_info_box.cc
index a384ae5ed8db594ef7ba47f1ff5531fd71886742..d0d6871cbb0c07a3626e035b12e3e9b4f986c89e 100644 (file)
@@ -36,7 +36,7 @@
 #include "control_point.h"
 #include "automation_line.h"
 
-#include "i18n.h"
+#include "pbd/i18n.h"
 
 using namespace Gtk;
 using namespace ARDOUR;
@@ -58,12 +58,6 @@ TimeInfoBox::TimeInfoBox ()
        punch_start = new AudioClock ("punch-start", false, "punch", false, false, false, false);
        punch_end = new AudioClock ("punch-end", false, "punch", false, false, false, false);
 
-       selection_start->set_draw_background (false);
-       selection_end->set_draw_background (false);
-       selection_length->set_draw_background (false);
-       punch_start->set_draw_background (false);
-       punch_end->set_draw_background (false);
-
        selection_title.set_text (_("Selection"));
        punch_title.set_text (_("Punch"));
 
@@ -158,7 +152,7 @@ TimeInfoBox::~TimeInfoBox ()
         delete selection_length;
         delete selection_end;
         delete selection_start;
-        
+
         delete punch_start;
         delete punch_end;
 }
@@ -193,7 +187,7 @@ TimeInfoBox::region_property_change (boost::shared_ptr<ARDOUR::Region> /* r */,
         * RegionView (not Region itself).
         */
 
-       selection_changed ();
+       //selection_changed ();
 }
 
 bool
@@ -235,7 +229,7 @@ TimeInfoBox::sync_punch_mode (AudioClock* src)
                syncing_punch = false;
        }
 }
-       
+
 
 void
 TimeInfoBox::set_session (Session* s)
@@ -251,14 +245,14 @@ TimeInfoBox::set_session (Session* s)
 
        if (s) {
                Location* punch = s->locations()->auto_punch_location ();
-               
+
                if (punch) {
                        watch_punch (punch);
                }
-               
+
                punch_changed (punch);
 
-               _session->auto_punch_location_changed.connect (_session_connections, MISSING_INVALIDATOR, 
+               _session->auto_punch_location_changed.connect (_session_connections, MISSING_INVALIDATOR,
                                                               boost::bind (&TimeInfoBox::punch_location_changed, this, _1), gui_context());
        }
 }
@@ -329,7 +323,7 @@ TimeInfoBox::selection_changed ()
                        Glib::RefPtr<Action> act = ActionManager::get_action ("MouseMode", "set-mouse-mode-object-range");
                        Glib::RefPtr<ToggleAction> tact = Glib::RefPtr<ToggleAction>::cast_dynamic (act);
 
-                       if (tact && tact->get_active() &&  !selection.regions.empty()) {        
+                       if (tact && tact->get_active() &&  !selection.regions.empty()) {
                                /* show selected regions */
                                s = selection.regions.start();
                                e = selection.regions.end_frame();
@@ -357,7 +351,7 @@ TimeInfoBox::selection_changed ()
        default:
                selection_start->set_off (true);
                selection_end->set_off (true);
-               selection_length->set_off (true);       
+               selection_length->set_off (true);
                break;
        }
 }
@@ -367,7 +361,7 @@ TimeInfoBox::punch_location_changed (Location* loc)
 {
        if (loc) {
                watch_punch (loc);
-       } 
+       }
 }
 
 void
@@ -395,5 +389,5 @@ TimeInfoBox::punch_changed (Location* loc)
 
        punch_start->set (loc->start());
        punch_end->set (loc->end());
-}      
+}