(merge from 2.0-ongoing -r1911:1912) fix audio clock handling of key press; fix crash bug caused by mapping over a region list selection that includes rows without regions; also merge sampo's redirect undo/state fixes from 2.0-ongoing

git-svn-id: svn://localhost/ardour2/trunk@1913 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2007-05-23 00:06:16 +00:00
parent dc348fb613
commit 376c5381ed
8 changed files with 241 additions and 62 deletions

View file

@ -90,6 +90,10 @@ class Keyboard : public sigc::trackable, Stateful
static Keyboard& the_keyboard() { return *_the_keyboard; }
static bool some_magic_widget_has_focus ();
static void magic_widget_grab_focus ();
static void magic_widget_drop_focus ();
private:
static Keyboard* _the_keyboard;
@ -104,6 +108,8 @@ class Keyboard : public sigc::trackable, Stateful
static gint _snooper (GtkWidget*, GdkEventKey*, gpointer);
gint snooper (GtkWidget*, GdkEventKey*);
static bool _some_magic_widget_has_focus;
};
#endif /* __ardour_keyboard_h__ */