mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Merge with 2.0-ongoing R3071.
git-svn-id: svn://localhost/ardour2/branches/3.0@3073 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
1b65758557
commit
8aa9508c82
67 changed files with 2417 additions and 2421 deletions
|
|
@ -109,6 +109,13 @@ class Keyboard : public sigc::trackable, PBD::Stateful
|
|||
static void magic_widget_grab_focus ();
|
||||
static void magic_widget_drop_focus ();
|
||||
|
||||
static void setup_keybindings ();
|
||||
static void save_keybindings ();
|
||||
static bool load_keybindings (std::string path);
|
||||
static void set_can_save_keybindings (bool yn);
|
||||
static std::string current_binding_name () { return _current_binding_name; }
|
||||
static std::map<std::string,std::string> binding_files;
|
||||
|
||||
private:
|
||||
static Keyboard* _the_keyboard;
|
||||
|
||||
|
|
@ -121,6 +128,9 @@ class Keyboard : public sigc::trackable, PBD::Stateful
|
|||
static guint delete_mod;
|
||||
static guint snap_mod;
|
||||
static Gtk::Window* current_window;
|
||||
static std::string user_keybindings_path;
|
||||
static bool can_save_keybindings;
|
||||
static std::string _current_binding_name;
|
||||
|
||||
static gint _snooper (GtkWidget*, GdkEventKey*, gpointer);
|
||||
gint snooper (GtkWidget*, GdkEventKey*);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue