Ardour  8.7-14-g57a6773833
osc_controllable.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2009-2015 Paul Davis <paul@linuxaudiosystems.com>
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 along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17  */
18 
19 #ifndef __osc_osccontrollable_h__
20 #define __osc_osccontrollable_h__
21 
22 #include <memory>
23 #include <string>
24 
25 #include <sigc++/sigc++.h>
26 #include <lo/lo.h>
27 
28 #include "pbd/controllable.h"
29 #include "pbd/stateful.h"
30 #include "ardour/types.h"
31 
32 namespace ARDOUR {
33  class Route;
34 }
35 
37 {
38  public:
39  OSCControllable (lo_address addr, const std::string& path, std::shared_ptr<PBD::Controllable>);
40  virtual ~OSCControllable ();
41 
42  lo_address address() const { return addr; }
43 
44  XMLNode& get_state () const;
45  int set_state (const XMLNode& node, int version);
46 
47  protected:
48  std::shared_ptr<PBD::Controllable> controllable;
50  lo_address addr;
51  std::string path;
52 
53  virtual void send_change_message ();
54 };
55 
57 {
58 
59  public:
60  OSCRouteControllable (lo_address addr, const std::string& path,
61  std::shared_ptr<PBD::Controllable>,
62  std::shared_ptr<ARDOUR::Route>);
64 
65  std::shared_ptr<ARDOUR::Route> route() const { return _route; }
66 
67  private:
68  std::shared_ptr<ARDOUR::Route> _route;
69 
71 };
72 
73 #endif /* __osc_osccontrollable_h__ */
PBD::ScopedConnection changed_connection
std::shared_ptr< PBD::Controllable > controllable
std::string path
virtual void send_change_message()
OSCControllable(lo_address addr, const std::string &path, std::shared_ptr< PBD::Controllable >)
virtual ~OSCControllable()
XMLNode & get_state() const
lo_address address() const
int set_state(const XMLNode &node, int version)
std::shared_ptr< ARDOUR::Route > route() const
std::shared_ptr< ARDOUR::Route > _route
OSCRouteControllable(lo_address addr, const std::string &path, std::shared_ptr< PBD::Controllable >, std::shared_ptr< ARDOUR::Route >)
Definition: xml++.h:114