add keybinding editor
[ardour.git] / gtk2_ardour / ghostregion.cc
1 /*
2     Copyright (C) 2000-2007 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "simplerect.h"
21 #include "waveview.h"
22 #include "ghostregion.h"
23 #include "automation_time_axis.h"
24 #include "rgb_macros.h"
25 #include "ardour_ui.h"
26
27 using namespace Editing;
28 using namespace ArdourCanvas;
29 using namespace ARDOUR;
30
31 GhostRegion::GhostRegion (AutomationTimeAxisView& atv, double initial_pos)
32         : trackview (atv)
33 {
34   //group = gnome_canvas_item_new (GNOME_CANVAS_GROUP(trackview.canvas_display),
35   //                         gnome_canvas_group_get_type(),
36   //                         "x", initial_pos,
37   //                         "y", 0.0,
38   //                         NULL);
39         group = new ArdourCanvas::Group (*trackview.canvas_display);
40         group->property_x() = initial_pos;
41         group->property_y() = 0.0;
42
43         base_rect = new ArdourCanvas::SimpleRect (*group);
44         base_rect->property_x1() = (double) 0.0;
45         base_rect->property_y1() = (double) 0.0;
46         base_rect->property_y2() = (double) trackview.height;
47         base_rect->property_outline_what() = (guint32) 0;
48         base_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_GhostTrackBase.get();
49         base_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_GhostTrackBase.get();
50         group->lower_to_bottom ();
51
52         atv.add_ghost (this);
53 }
54
55 GhostRegion::~GhostRegion ()
56 {
57         GoingAway (this);
58         delete base_rect;
59         delete group;
60 }
61
62 void
63 GhostRegion::set_samples_per_unit (double spu)
64 {
65         for (vector<WaveView*>::iterator i = waves.begin(); i != waves.end(); ++i) {
66                 (*i)->property_samples_per_unit() = spu;
67         }               
68 }
69
70 void
71 GhostRegion::set_duration (double units)
72 {
73         base_rect->property_x2() = units;
74 }
75
76 void
77 GhostRegion::set_height ()
78 {
79         gdouble ht;
80         vector<WaveView*>::iterator i;
81         uint32_t n;
82
83         base_rect->property_y2() = (double) trackview.height;
84         ht = ((trackview.height) / (double) waves.size());
85         
86         for (n = 0, i = waves.begin(); i != waves.end(); ++i, ++n) {
87                 gdouble yoff = n * ht;
88                 (*i)->property_height() = ht;
89                 (*i)->property_y() = yoff;
90         }
91 }
92
93 void
94 GhostRegion::set_colors ()
95 {
96         base_rect->property_outline_color_rgba() = ARDOUR_UI::config()->canvasvar_GhostTrackBase.get();
97         base_rect->property_fill_color_rgba() = ARDOUR_UI::config()->canvasvar_GhostTrackBase.get();
98
99     for (uint32_t n=0; n < waves.size(); ++n) {
100         waves[n]->property_wave_color() = ARDOUR_UI::config()->canvasvar_GhostTrackWave.get();
101
102         waves[n]->property_clip_color() = ARDOUR_UI::config()->canvasvar_GhostTrackWaveClip.get();
103         waves[n]->property_zero_color() = ARDOUR_UI::config()->canvasvar_GhostTrackZeroLine.get();
104     }
105 }