further tweaks to canvas tooltip mechanism
[ardour.git] / libs / canvas / canvas / debug.h
1 /*
2     Copyright (C) 2011-2013 Paul Davis
3     Author: Carl Hetherington <cth@carlh.net>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 #ifndef __CANVAS_DEBUG_H__
21 #define __CANVAS_DEBUG_H__
22
23 #include <sys/time.h>
24 #include <map>
25 #include "pbd/debug.h"
26
27 #include "canvas/visibility.h"
28
29 namespace PBD {
30         namespace DEBUG {
31                 LIBCANVAS_API extern uint64_t CanvasItems;
32                 LIBCANVAS_API extern uint64_t CanvasItemsDirtied;
33                 LIBCANVAS_API extern uint64_t CanvasEvents;
34                 LIBCANVAS_API extern uint64_t CanvasRender;
35                 LIBCANVAS_API extern uint64_t CanvasEnterLeave;
36         }
37 }
38
39 #ifdef CANVAS_DEBUG
40 #define CANVAS_DEBUG_NAME(i, n) i->name = n;
41 #else
42 #define CANVAS_DEBUG_NAME(i, n) /* empty */
43 #endif
44
45 namespace ArdourCanvas {
46         LIBCANVAS_API extern struct timeval epoch;
47         LIBCANVAS_API extern std::map<std::string, struct timeval> last_time;
48         LIBCANVAS_API extern void checkpoint (std::string, std::string);
49         LIBCANVAS_API extern void set_epoch ();
50         LIBCANVAS_API extern const char* event_type_string (int event_type);
51         LIBCANVAS_API extern int render_count;
52         LIBCANVAS_API extern int render_depth;
53         LIBCANVAS_API extern int dump_depth;
54 }
55
56 #endif