ToolMap
Loading...
Searching...
No Matches
tmmanagerevent.h
1/***************************************************************************
2 tmmanagerevent.h
3 Definition of event for GIS manager (layer, attribution)
4 -------------------
5 copyright : (C) 2007 CREALP Lucien Schreiber
6 ***************************************************************************/
7
8/***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. *
14 * *
15 ***************************************************************************/
16
17// comment doxygen
18
19#ifndef _TM_MANAGER_EVENT_H_
20#define _TM_MANAGER_EVENT_H_
21
22// For compilers that support precompilation, includes "wx/wx.h".
23#include <wx/wxprec.h>
24
25// Include wxWidgets' headers
26#ifndef WX_PRECOMP
27#include <wx/wx.h>
28#endif
29
30DECLARE_EVENT_TYPE(tmEVT_SELECTION_DONE, -1)
31
32DECLARE_EVENT_TYPE(tmEVT_QUERY_RUN, -1);
33
34DECLARE_EVENT_TYPE(tmEVT_TOGGLE_FREQUENT, -1)
35
36DECLARE_EVENT_TYPE(tmEVT_ENABLE_ACCELERATORS, -1)
37DECLARE_EVENT_TYPE(tmEVT_DISABLE_ACCELERATORS, -1)
38
39// DEFINE_EVENT_TYPE (tmEVT_SHORTCUT_REFRESH);
40DECLARE_EVENT_TYPE(tmEVT_SHORTCUT_REFRESH, -1);
41
42// DECLARE_EVENT_TYPE (tmEVT_VIEW_REFRESHED, -1);
43DECLARE_EVENT_TYPE(tmEVT_AM_COPY_ATTRIBUTION, -1);
44
45DECLARE_EVENT_TYPE(tmEVT_LM_ANGLE_CHANGED, -1);
46DECLARE_EVENT_TYPE(tmEVT_FOCUS_RENDERER, -1);
47
48DECLARE_EVENT_TYPE(tmEVT_LM_MOVE_TO_FEATURE, -1);
49DECLARE_EVENT_TYPE(tmEVT_LM_ZOOM_TO_FEATURE, -1);
50
51#endif