2005-09-25 14:42:24 -04:00
|
|
|
/*
|
2019-08-02 17:26:43 -04:00
|
|
|
* Copyright (C) 2005-2015 Paul Davis <paul@linuxaudiosystems.com>
|
|
|
|
* Copyright (C) 2005 Taybin Rutkin <taybin@taybin.com>
|
|
|
|
* Copyright (C) 2008-2010 David Robillard <d@drobilla.net>
|
|
|
|
* Copyright (C) 2009 Carl Hetherington <carl@carlh.net>
|
|
|
|
* Copyright (C) 2015-2016 Nick Mainsbridge <mainsbridge@gmail.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
#ifndef __ardour_keyboard_h__
|
|
|
|
#define __ardour_keyboard_h__
|
|
|
|
|
2015-10-26 13:35:45 -04:00
|
|
|
#include <map>
|
|
|
|
#include <string>
|
|
|
|
|
2009-02-25 13:26:51 -05:00
|
|
|
#include "ardour/types.h"
|
2009-12-04 17:51:32 -05:00
|
|
|
#include "gtkmm2ext/keyboard.h"
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-03-05 14:39:16 -05:00
|
|
|
#include "selection.h"
|
|
|
|
|
2010-02-08 19:50:24 -05:00
|
|
|
class ARDOUR_UI;
|
2009-12-04 17:51:32 -05:00
|
|
|
|
2010-02-08 19:50:24 -05:00
|
|
|
class ArdourKeyboard : public Gtkmm2ext::Keyboard
|
2005-09-25 14:42:24 -04:00
|
|
|
{
|
2017-07-01 15:11:14 -04:00
|
|
|
public:
|
2016-08-13 11:16:48 -04:00
|
|
|
ArdourKeyboard(ARDOUR_UI&);
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2015-05-20 15:32:23 -04:00
|
|
|
XMLNode& get_state (void);
|
|
|
|
int set_state (const XMLNode&, int version);
|
|
|
|
|
2009-12-04 17:51:32 -05:00
|
|
|
void setup_keybindings ();
|
2005-09-25 14:42:24 -04:00
|
|
|
|
2006-03-05 14:39:16 -05:00
|
|
|
static Selection::Operation selection_type (guint state);
|
2010-02-08 19:50:24 -05:00
|
|
|
|
|
|
|
ARDOUR_UI& ui;
|
2015-05-20 15:32:23 -04:00
|
|
|
|
2016-08-13 11:16:48 -04:00
|
|
|
void reset_relevant_modifier_key_mask ();
|
|
|
|
|
2015-05-23 11:10:06 -04:00
|
|
|
/** @param state The button state from a GdkEvent.
|
|
|
|
* @return true if the modifier state indicates snap modifier
|
|
|
|
*/
|
2015-05-21 12:12:58 -04:00
|
|
|
static bool indicates_snap (guint state);
|
2015-05-23 11:10:06 -04:00
|
|
|
|
|
|
|
/** @param state The button state from a GdkEvent.
|
|
|
|
* @return true if the modifier state indicates snap delta
|
|
|
|
*/
|
2015-05-21 12:12:58 -04:00
|
|
|
static bool indicates_snap_delta (guint state);
|
|
|
|
|
2016-08-13 11:50:51 -04:00
|
|
|
/** @param state The button state from a GdkEvent.
|
|
|
|
* @return true if the modifier state indicates copy modifier
|
|
|
|
*/
|
|
|
|
static bool indicates_copy (guint state);
|
|
|
|
|
|
|
|
/** @param state The button state from a GdkEvent.
|
|
|
|
* @return true if the modifier state indicates constraint modifier
|
|
|
|
*/
|
|
|
|
static bool indicates_constraint (guint state);
|
|
|
|
|
2015-05-22 15:36:03 -04:00
|
|
|
static void set_constraint_modifier (guint);
|
2017-07-01 15:11:14 -04:00
|
|
|
/** @return Modifier mask to constrain drags in a particular direction; */
|
2015-05-22 15:36:03 -04:00
|
|
|
static ModifierMask constraint_modifier () { return ModifierMask (constraint_mod); }
|
|
|
|
|
2015-05-20 15:32:23 -04:00
|
|
|
static void set_trim_contents_modifier (guint);
|
2017-07-01 15:11:14 -04:00
|
|
|
/** @return Modifier mask to move contents rather than region bounds during trim; */
|
2015-05-20 15:32:23 -04:00
|
|
|
static ModifierMask trim_contents_modifier () { return ModifierMask (trim_contents_mod); }
|
|
|
|
|
|
|
|
static void set_trim_overlap_modifier (guint);
|
2017-07-01 15:11:14 -04:00
|
|
|
/** @return Modifier mask to remove region overlaps during trim; */
|
2015-05-20 15:32:23 -04:00
|
|
|
static ModifierMask trim_overlap_modifier () { return ModifierMask (trim_overlap_mod); }
|
|
|
|
|
|
|
|
static void set_trim_anchored_modifier (guint);
|
2017-07-01 15:11:14 -04:00
|
|
|
/** @return Modifier mask to use anchored trim; */
|
2015-05-20 15:32:23 -04:00
|
|
|
static ModifierMask trim_anchored_modifier () { return ModifierMask (trim_anchored_mod); }
|
|
|
|
|
|
|
|
static void set_fine_adjust_modifier (guint);
|
2017-07-01 15:11:14 -04:00
|
|
|
/** @return Modifier mask to fine adjust (control points only atm); */
|
2015-05-20 15:32:23 -04:00
|
|
|
static ModifierMask fine_adjust_modifier () { return ModifierMask (fine_adjust_mod); }
|
|
|
|
|
|
|
|
static void set_push_points_modifier (guint);
|
2017-07-01 15:11:14 -04:00
|
|
|
/** @return Modifier mask to push proceeding points; */
|
2015-05-20 15:32:23 -04:00
|
|
|
static ModifierMask push_points_modifier () { return ModifierMask (push_points_mod); }
|
|
|
|
|
|
|
|
static void set_note_size_relative_modifier (guint);
|
2017-07-01 15:11:14 -04:00
|
|
|
/** @return Modifier mask to resize notes relatively; */
|
2015-05-20 15:32:23 -04:00
|
|
|
static ModifierMask note_size_relative_modifier () { return ModifierMask (note_size_relative_mod); }
|
|
|
|
private:
|
2015-05-22 15:36:03 -04:00
|
|
|
static guint constraint_mod;
|
2015-05-20 15:32:23 -04:00
|
|
|
static guint trim_contents_mod;
|
|
|
|
static guint trim_overlap_mod;
|
|
|
|
static guint trim_anchored_mod;
|
|
|
|
static guint fine_adjust_mod;
|
|
|
|
static guint push_points_mod;
|
|
|
|
static guint note_size_relative_mod;
|
2015-10-26 13:35:45 -04:00
|
|
|
|
|
|
|
void find_bindings_files (std::map<std::string,std::string>& files);
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ardour_keyboard_h__ */
|