merged with 1697 revision of trunk (which is post-rc1 but pre-rc2
[ardour.git] / gtk2_ardour / marker.h
1 /*
2     Copyright (C) 2001 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 #ifndef __gtk_ardour_marker_h__
21 #define __gtk_ardour_marker_h__
22
23 #include <string>
24 #include <glib.h>
25 #include <ardour/ardour.h>
26 #include <sigc++/signal.h>
27
28 #include "canvas.h"
29
30 namespace ARDOUR {
31         class TempoSection;
32         class MeterSection;
33 }
34
35 class PublicEditor;
36
37 class Marker : public sigc::trackable
38 {
39   public:
40         enum Type {
41                 Mark,
42                 Tempo,
43                 Meter,
44                 Start,
45                 End,
46                 LoopStart,
47                 LoopEnd,
48                 PunchIn,
49                 PunchOut
50         };
51
52
53         Marker (PublicEditor& editor, ArdourCanvas::Group& parent, guint32 rgba, const string& text, Type, 
54                 nframes_t frame = 0, bool handle_events = true);
55
56         virtual ~Marker ();
57
58         ArdourCanvas::Item& the_item() const;
59
60         void set_position (nframes_t);
61         void set_name (const string&);
62         void set_color_rgba (uint32_t rgba);
63
64         void hide ();
65         void show ();
66
67         Type type () { return _type; }
68         
69   protected:
70         PublicEditor& editor;
71
72         ArdourCanvas::Group *group;
73         ArdourCanvas::Polygon *mark;
74         ArdourCanvas::Text *text;
75         ArdourCanvas::Points *points;
76
77         double    unit_position;
78         nframes_t frame_position;
79         unsigned char      shift; /* should be double, but its always small and integral */
80         Type      _type;
81         
82         void reposition ();
83 };
84
85 class TempoMarker : public Marker
86 {
87   public:
88         TempoMarker (PublicEditor& editor, ArdourCanvas::Group& parent, guint32 rgba, const string& text, ARDOUR::TempoSection&);
89         ~TempoMarker ();
90
91         ARDOUR::TempoSection& tempo() const { return _tempo; }
92
93   private:
94         ARDOUR::TempoSection& _tempo;
95 };
96
97 class MeterMarker : public Marker
98 {
99   public:
100         MeterMarker (PublicEditor& editor, ArdourCanvas::Group& parent, guint32 rgba, const string& text, ARDOUR::MeterSection&);
101         ~MeterMarker ();
102
103         ARDOUR::MeterSection& meter() const { return _meter; }
104
105   private:
106         ARDOUR::MeterSection& _meter;
107 };
108
109 #endif /* __gtk_ardour_marker_h__ */