/*
    Copyright (C) 2007 Paul Davis

    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.

    $Id keyboard.h 669 2006/*07/*07 235130Z paul $
*/

#ifndef __ardour_extrakeysyms_h__
#define __ardour_extrakeysyms_h__

/* despite advanced keyboards having buttons like these for a decade, they aren't part of gdk */

#ifndef __GDK_KEYSYMS_H__
#include <gdk/gdkkeysyms.h>
#endif

/* maybe one day gdk will include these */

#ifndef GDK_AudioLowerVolume

#define GDK_AudioLowerVolume 1008FF11 
#define GDK_AudioMute 1008FF12 /* Mute */
#define GDK_AudioRaiseVolume 1008FF13 /* active track volume */
#define GDK_AudioPlay 1008FF14 /* Perhaps change to PlayPause */
#define GDK_AudioStop 1008FF15
#define GDK_AudioPrev 1008FF16
#define GDK_AudioNext 1008FF17

/* other potentially useful keysyms are: */

#define GDK_Start 1008FF1A
#define GDK_Search 1008FF1B
#define GDK_Eject 1008FF2C /* I've always wanted this one mapped by something! */
#define GDK_ScreenSaver 1008FF2D /* guess the window manager should map this */
#define GDK_Favorites 1008FF30 
#define GDK_AudioPause 1008FF31 /* not sure how this would work vs play */
#define GDK_AudioMedia 1008FF32 /* pop up region editor? */
#define GDK_AudioRewind 1008FF3E 
#define GDK_BackForward 1008FF3F /* Assuming this means fast forward */
#define GDK_ZoomIn 1008FF8B 
#define GDK_ZoomOut 1008FF8C 

#endif
#endif

