finished merge of cairocanvas with windows and windows+cc branches
[ardour.git] / libs / pbd / pbd / controllable_descriptor.h
1 /*
2     Copyright (C) 2009 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 #ifndef __pbd_controllable_descriptor_h__
20 #define __pbd_controllable_descriptor_h__
21
22 #include <vector>
23 #include <string>
24 #include <stdint.h>
25
26 #include "pbd/libpbd_visibility.h"
27
28 namespace PBD {
29
30 class LIBPBD_API ControllableDescriptor {
31 public:
32     enum TopLevelType {
33             RemoteControlID,
34             NamedRoute
35     };
36
37     enum SubType {
38             Gain,
39             Solo,
40             Mute,
41             Recenable,
42             PanDirection,
43             PanWidth,
44             PanElevation,
45             Balance,
46             SendGain,
47             PluginParameter
48     };
49
50     ControllableDescriptor () 
51             : _top_level_type (RemoteControlID)
52             , _subtype (Gain)
53             , _rid (0)
54             , _banked (false)
55             , _bank_offset (0)
56     {}
57
58     int set (const std::string&);
59
60     /* it is only valid to call top_level_name() if top_level_type() returns
61        NamedRoute
62     */
63
64     TopLevelType top_level_type() const { return _top_level_type; }
65     const std::string& top_level_name() const { return _top_level_name; }
66
67     SubType subtype() const { return _subtype; }
68
69     uint32_t rid() const;
70     uint32_t target (uint32_t n) const;
71     bool banked() const { return _banked; }
72
73     void set_bank_offset (uint32_t o) { _bank_offset = o; }
74
75 private:
76     TopLevelType          _top_level_type;
77     SubType               _subtype;
78     std::string           _top_level_name;
79     uint32_t              _rid;
80     std::vector<uint32_t> _target;
81     uint32_t              _banked;
82     uint32_t              _bank_offset;
83 };
84
85 }
86
87 #endif /* __pbd_controllable_descriptor_h__ */