add copyright comments
[ardour.git] / libs / surfaces / mackie / jog_wheel.cc
1 /*
2     Copyright (C) 2012 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
20 #include <cmath>
21
22 #include "ardour/session.h"
23
24 #include "jog_wheel.h"
25 #include "mackie_control_protocol.h"
26 #include "surface_port.h"
27 #include "controls.h"
28 #include "surface.h"
29
30 #include <algorithm>
31
32 using namespace Mackie;
33
34 JogWheel::JogWheel (MackieControlProtocol & mcp)
35   : _mcp (mcp)
36   , _mode (scroll)
37 {
38 }
39
40 void
41 JogWheel::set_mode (Mode m)
42 {
43         _mode = m;
44 }
45
46 void JogWheel::jog_event (float delta)
47 {
48         if (_mcp.zoom_mode()) {
49                 if  (delta > 0) {
50                         for  (unsigned int i = 0; i < fabs (delta); ++i) {
51                                 _mcp.ZoomIn();
52                         }
53                 } else {
54                         for  (unsigned int i = 0; i < fabs (delta); ++i) {
55                                 _mcp.ZoomOut();
56                         }
57                 }
58                 return;
59         }
60
61         switch  (_mode) {
62         case scroll:
63                 _mcp.ScrollTimeline (delta/4.0);
64                 break;
65         default:
66                 break;
67         }
68 }
69