Use ::g_rename instead of ::rename in ARDOUR::FileSource class
[ardour.git] / libs / surfaces / wiimote / wiimote.h
1 /*
2     Copyright (C) 2009-2013 Paul Davis
3     Authors: Sampo Savolainen, Jannis Pohlmann
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 #ifndef ardour_wiimote_control_protocol_h
22 #define ardour_wiimote_control_protocol_h
23
24 #include <cwiid.h>
25
26 #define ABSTRACT_UI_EXPORTS
27 #include "pbd/abstract_ui.h"
28 #include "ardour/types.h"
29 #include "control_protocol/control_protocol.h"
30
31 struct WiimoteControlUIRequest : public BaseUI::BaseRequestObject {
32 public:
33         WiimoteControlUIRequest () {}
34         ~WiimoteControlUIRequest () {}
35 };
36
37 class WiimoteControlProtocol
38         : public ARDOUR::ControlProtocol
39         , public AbstractUI<WiimoteControlUIRequest>
40 {
41 public:
42         WiimoteControlProtocol (ARDOUR::Session &);
43         virtual ~WiimoteControlProtocol ();
44
45         static bool probe ();
46         static void* request_factory (uint32_t);
47
48         int set_active (bool yn);
49
50         XMLNode& get_state ();
51         int set_state (const XMLNode&, int version);
52
53         void start_wiimote_discovery ();
54         void stop_wiimote_discovery ();
55
56         void wiimote_callback (int mesg_count, union cwiid_mesg mesg[]);
57
58 protected:
59         void do_request (WiimoteControlUIRequest*);
60         int start ();
61         int stop ();
62
63         void thread_init ();
64
65         bool connect_idle ();
66         bool connect_wiimote ();
67
68         void update_led_state ();
69
70 protected:
71         PBD::ScopedConnectionList session_connections;
72         cwiid_wiimote_t* wiimote;
73         GSource *idle_source;
74         uint16_t button_state;
75         bool callback_thread_registered;
76 };
77
78 #endif  /* ardour_wiimote_control_protocol_h */
79