convert set_property("foo", bar) to property_foo() = bar
[ardour.git] / gtk2_ardour / ghostregion.cc
index 0a001da0b6ddff4ae9fe97052bad119c043668ab..2cd26014061273df3b7ecae0f3b85d602db6847a 100644 (file)
@@ -16,16 +16,16 @@ GhostRegion::GhostRegion (AutomationTimeAxisView& atv, double initial_pos)
   //                        "y", 0.0,
   //                        NULL);
        group = new ArdourCanvas::Group (*trackview.canvas_display);
-       group->set_property ("x", initial_pos);
-       group->set_property ("y", 0.0);
+       group->property_x() = initial_pos;
+       group->property_y() = 0.0;
 
        base_rect = new ArdourCanvas::SimpleRect (*group);
-       base_rect->set_property ("x1", (double) 0.0);
-       base_rect->set_property ("y1", (double) 0.0);
-       base_rect->set_property ("y2", (double) trackview.height);
-       base_rect->set_property ("outline_what", (guint32) 0);
-       base_rect->set_property ("outline_color_rgba", color_map[cGhostTrackBaseOutline]);
-       base_rect->set_property ("fill_color_rgba", color_map[cGhostTrackBaseFill]);
+       base_rect->property_x1() = (double) 0.0;
+       base_rect->property_y1() = (double) 0.0;
+       base_rect->property_y2() = (double) trackview.height;
+       base_rect->property_outline_what() = (guint32) 0;
+       base_rect->property_outline_color_rgba() = color_map[cGhostTrackBaseOutline];
+       base_rect->property_fill_color_rgba() = color_map[cGhostTrackBaseFill];
        group->lower_to_bottom ();
 
        atv.add_ghost (this);
@@ -49,7 +49,7 @@ GhostRegion::set_samples_per_unit (double spu)
 void
 GhostRegion::set_duration (double units)
 {
-        base_rect->set_property ("x2", units);
+        base_rect->property_x2() = units;
 }
 
 void
@@ -59,7 +59,7 @@ GhostRegion::set_height ()
        vector<WaveView*>::iterator i;
        uint32_t n;
 
-       base_rect->set_property ("y2", (double) trackview.height);
+       base_rect->property_y2() = (double) trackview.height;
        ht = ((trackview.height) / (double) waves.size());
        
        for (n = 0, i = waves.begin(); i != waves.end(); ++i, ++n) {