re-add TLSF
[ardour.git] / gtk2_ardour / keyboard.h
1 /*
2     Copyright (C) 2001 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 #ifndef __ardour_keyboard_h__
21 #define __ardour_keyboard_h__
22
23 #include <map>
24 #include <string>
25
26 #include "ardour/types.h"
27 #include "gtkmm2ext/keyboard.h"
28
29 #include "selection.h"
30
31 class ARDOUR_UI;
32
33 class ArdourKeyboard : public Gtkmm2ext::Keyboard
34 {
35   public:
36         ArdourKeyboard(ARDOUR_UI& ardour_ui) : ui(ardour_ui) {}
37
38         XMLNode& get_state (void);
39         int set_state (const XMLNode&, int version);
40
41         void setup_keybindings ();
42
43         static Selection::Operation selection_type (guint state);
44
45         ARDOUR_UI& ui;
46
47         /** @param state The button state from a GdkEvent.
48          *  @return true if the modifier state indicates snap modifier
49          */
50         static bool indicates_snap (guint state);
51
52         /** @param state The button state from a GdkEvent.
53          *  @return true if the modifier state indicates snap delta
54          */
55         static bool indicates_snap_delta (guint state);
56
57         static void set_constraint_modifier (guint);
58         /** @return Modifier mask to constrain drags in a particular direction;
59          */
60         static ModifierMask constraint_modifier () { return ModifierMask (constraint_mod); }
61
62         static void set_trim_contents_modifier (guint);
63         /** @return Modifier mask to move contents rather than region bounds during trim;
64          */
65         static ModifierMask trim_contents_modifier () { return ModifierMask (trim_contents_mod); }
66
67         static void set_trim_overlap_modifier (guint);
68         /** @return Modifier mask to remove region overlaps during trim;
69          */
70         static ModifierMask trim_overlap_modifier () { return ModifierMask (trim_overlap_mod); }
71
72         static void set_trim_anchored_modifier (guint);
73         /** @return Modifier mask to use anchored trim;
74          */
75         static ModifierMask trim_anchored_modifier () { return ModifierMask (trim_anchored_mod); }
76
77         static void set_fine_adjust_modifier (guint);
78         /** @return Modifier mask to fine adjust (control points only atm);
79          */
80         static ModifierMask fine_adjust_modifier () { return ModifierMask (fine_adjust_mod); }
81
82         static void set_push_points_modifier (guint);
83         /** @return Modifier mask to push proceeding points;
84          */
85         static ModifierMask push_points_modifier () { return ModifierMask (push_points_mod); }
86
87         static void set_note_size_relative_modifier (guint);
88         /** @return Modifier mask to resize notes relatively;
89          */
90         static ModifierMask note_size_relative_modifier () { return ModifierMask (note_size_relative_mod); }
91 private:
92         static guint     constraint_mod;
93         static guint     trim_contents_mod;
94         static guint     trim_overlap_mod;
95         static guint     trim_anchored_mod;
96         static guint     fine_adjust_mod;
97         static guint     push_points_mod;
98         static guint     note_size_relative_mod;
99
100         void find_bindings_files (std::map<std::string,std::string>& files);
101 };
102
103 #endif /* __ardour_keyboard_h__ */