ToolMap
Loading...
Searching...
No Matches
shortcut_defs.h
1/***************************************************************************
2 shortcut_defs.h
3 Some definitions used in DatabaseTM and
4 in Shortcut_Panel_Dlg
5 -------------------
6 copyright : (C) 2007 CREALP Lucien Schreiber
7 ***************************************************************************/
8
9/***************************************************************************
10 * *
11 * This program is free software; you can redistribute it and/or modify *
12 * it under the terms of the GNU General Public License as published by *
13 * the Free Software Foundation; either version 2 of the License, or *
14 * (at your option) any later version. *
15 * *
16 ***************************************************************************/
17
18// comment doxygen
19
20#ifndef _TM_SHORTCUT_DEFS_H_
21#define _TM_SHORTCUT_DEFS_H_
22
23// For compilers that support precompilation, includes "wx/wx.h".
24#include <wx/wxprec.h>
25
26// Include wxWidgets' headers
27#ifndef WX_PRECOMP
28#include <wx/wx.h>
29#endif
30
31/***************************************************************************/
36const wxString tmShortCutKeys[] = {_T("F1"), _T("F2"), _T("F3"), _T("F4"), _T("F5"), _T("F6"),
37 _T("F7"), _T("F8"), _T("F9"), _T("F10"), _T("F11"), _T("F12")};
38
39#endif