2013-04-18 03:43:35 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2010-06-03 18:05:08 +00:00
|
|
|
|
|
|
|
#ifndef WXINPUTBASE_H
|
|
|
|
#define WXINPUTBASE_H
|
|
|
|
|
2010-06-06 21:06:58 +00:00
|
|
|
#include "Common.h"
|
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
2010-06-03 18:05:08 +00:00
|
|
|
#include <wx/wx.h>
|
2010-06-06 21:06:58 +00:00
|
|
|
#endif
|
2010-06-03 18:05:08 +00:00
|
|
|
|
|
|
|
namespace InputCommon
|
|
|
|
{
|
2010-06-06 21:06:58 +00:00
|
|
|
#if defined(HAVE_WX) && HAVE_WX
|
2010-06-05 19:03:37 +00:00
|
|
|
const wxString WXKeyToString(int keycode);
|
|
|
|
const wxString WXKeymodToString(int modifier);
|
2010-06-06 21:06:58 +00:00
|
|
|
#endif
|
2010-06-03 18:05:08 +00:00
|
|
|
}
|
|
|
|
#endif
|
2010-06-06 21:06:58 +00:00
|
|
|
|