1 /******************************************************************************
2  *
3  * Project:  OpenCPN
4  *
5  ***************************************************************************
6  *   Copyright (C) 2013 by David S. Register                               *
7  *                                                                         *
8  *   This program is free software; you can redistribute it and/or modify  *
9  *   it under the terms of the GNU General Public License as published by  *
10  *   the Free Software Foundation; either version 2 of the License, or     *
11  *   (at your option) any later version.                                   *
12  *                                                                         *
13  *   This program is distributed in the hope that it will be useful,       *
14  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
15  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
16  *   GNU General Public License for more details.                          *
17  *                                                                         *
18  *   You should have received a copy of the GNU General Public License     *
19  *   along with this program; if not, write to the                         *
20  *   Free Software Foundation, Inc.,                                       *
21  *   51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,  USA.         *
22  ***************************************************************************
23  */
24 
25 #ifndef __TIMERS_H__
26 #define __TIMERS_H__
27 
28 #define RESCALE_TIMER     1
29 #define PAN_TIMER         2
30 #define CURTRACK_TIMER    3
31 #define ROT_TIMER         4
32 #define ROPOPUP_TIMER     5
33 #define TCWININF_TIMER    6
34 #define ROLLOVER_TIMER    7
35 #define MOVEMENT_TIMER    8
36 #define MOVEMENT_STOP_TIMER      9
37 #define DBLCLICK_TIMER   10
38 #define POPUP_TIMER      11
39 #define MOUSEWHEEL_TIMER 12
40 #define DEFERRED_FOCUS_TIMER 13
41 #define ROUTEFINISH_TIMER  14
42 
43 #endif
44