2005-09-25 14:42:24 -04:00
|
|
|
/*
|
2009-10-14 12:10:01 -04:00
|
|
|
Copyright (C) 2001 Paul Davis
|
2005-09-25 14:42:24 -04:00
|
|
|
|
|
|
|
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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ardour_keyboard_h__
|
|
|
|
#define __ardour_keyboard_h__
|
|
|
|
|
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
|
|
|
{
|
|
|
|
public:
|
2010-02-08 19:50:24 -05:00
|
|
|
ArdourKeyboard(ARDOUR_UI& ardour_ui) : ui(ardour_ui) {}
|
2005-09-25 14:42:24 -04:00
|
|
|
|
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;
|
2005-09-25 14:42:24 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* __ardour_keyboard_h__ */
|