Fixed i18n system.
[ardour.git] / libs / pbd / pbd / touchable.h
1 /*
2     Copyright (C) 1999 Paul Barton-Davis 
3     This program is free software; you can redistribute it and/or modify
4     it under the terms of the GNU General Public License as published by
5     the Free Software Foundation; either version 2 of the License, or
6     (at your option) any later version.
7
8     This program is distributed in the hope that it will be useful,
9     but WITHOUT ANY WARRANTY; without even the implied warranty of
10     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11     GNU General Public License for more details.
12
13     You should have received a copy of the GNU General Public License
14     along with this program; if not, write to the Free Software
15     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
16
17     $Id$
18 */
19
20 #ifndef __pbd_touchable_h__
21 #define __pbd_touchable_h__
22
23 class Touchable
24 {
25   public:
26         Touchable() : _delete_after_touch (false) {}
27         virtual ~Touchable() {}
28
29         void set_delete_after_touch (bool yn) { _delete_after_touch = yn; }
30         bool delete_after_touch() const { return _delete_after_touch; }
31
32         virtual void touch () = 0;
33
34   protected:
35         bool _delete_after_touch;
36 };
37
38 template<class T>
39 class DynamicTouchable : public Touchable
40 {
41   public:
42         DynamicTouchable (T& t, void (T::*m)(void)) 
43                 : object (t), method (m) { set_delete_after_touch (true); }
44
45         void touch () {
46                 (object.*method)();
47         }
48         
49   protected:
50         T& object;
51         void (T::*method)(void);
52 };
53
54 template<class T1, class T2>
55 class DynamicTouchable1 : public Touchable
56 {
57   public:
58         DynamicTouchable1 (T1& t, void (T1::*m)(T2), T2 a) 
59                 : object (t), method (m), arg (a) { set_delete_after_touch (true); }
60
61         void touch () {
62                 (object.*method)(arg);
63         }
64         
65   protected:
66         T1& object;
67         void (T1::*method)(T2);
68         T2 arg;
69 };
70
71 template<class T1, class T2, class T3>
72 class DynamicTouchable2 : public Touchable
73 {
74   public:
75         DynamicTouchable2 (T1& t, void (T1::*m)(T2, T3), T2 a1, T3 a2) 
76                 : object (t), method (m), arg1 (a1), arg2 (a2) { set_delete_after_touch (true); }
77
78         void touch () {
79                 (object.*method)(arg1, arg2);
80         }
81         
82   protected:
83         T1& object;
84         void (T1::*method)(T2,T3);
85         T2 arg1;
86         T3 arg2;
87 };
88         
89 #endif // __pbd_touchable_h__