Don't leave internal edit mode when clicking on an automation region view (#4747).
[ardour.git] / libs / evoral / evoral / TimeConverter.hpp
1 /* This file is part of Evoral.
2  * Copyright (C) 2009 David Robillard <http://drobilla.net>
3  * Copyright (C) 2009 Paul Davis
4  *
5  * Evoral is free software; you can redistribute it and/or modify it under the
6  * terms of the GNU General Public License as published by the Free Software
7  * Foundation; either version 2 of the License, or (at your option) any later
8  * version.
9  *
10  * Evoral is distributed in the hope that it will be useful, but WITHOUT ANY
11  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18
19 #ifndef EVORAL_TIME_CONVERTER_HPP
20 #define EVORAL_TIME_CONVERTER_HPP
21
22 namespace Evoral {
23
24 /** A bidirectional converter between two different time units.
25  *
26  * Think of the conversion method names as if they are written in-between
27  * the two template parameters (i.e. "A <name> B").
28  *
29  * _origin_b should be the origin for conversion in the units of B.
30  * That is, there is some point in time _origin_b, such that:
31  *
32  *    to()   converts a time _origin_b + a into an offset from _origin_b in units of B.
33  *    from() converts a time _origin_b + b into an offset from _origin_b in units of A.
34  */
35 template<typename A, typename B>
36 class TimeConverter {
37 public:
38         TimeConverter () : _origin_b (0) {}
39         TimeConverter (B ob) : _origin_b (ob) {}
40         virtual ~TimeConverter() {}
41
42         /** Convert A time to B time (A to B) */
43         virtual B to(A a) const = 0;
44
45         /** Convert B time to A time (A from B) */
46         virtual A from(B b) const = 0;
47
48         B origin_b () const {
49                 return _origin_b;
50         }
51         
52         void set_origin_b (B o) {
53                 _origin_b = o;
54         }
55
56 protected:
57         B _origin_b;
58 };
59
60
61 /** A stub TimeConverter that simple statically casts between types.
62  *  _origin_b has no bearing here, as there is no time conversion
63  *  going on.
64  */
65 template<typename A, typename B>
66 class IdentityConverter : public TimeConverter<A,B> {
67   public:
68         IdentityConverter() {}
69         B to(A a)   const { return static_cast<B>(a); }
70         A from(B b) const { return static_cast<A>(b); }
71 };
72
73
74 } // namespace Evoral
75
76 #endif // EVORAL_TIME_CONVERTER_HPP