use new action map API instead of ActionManager::get_action
[ardour.git] / gtk2_ardour / meter_patterns.h
1 /*
2     Copyright (C) 2013 Paul Davis
3     Author: Robin Gareus
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 __ardour_meter_patterns__
21 #define __ardour_meter_patterns__
22
23 #include <list>
24 #include <vector>
25
26 #include "ardour/types.h"
27 #include "gtkmm2ext/cairo_widget.h"
28
29 #include <sigc++/signal.h>
30
31 namespace ARDOUR {
32         class Route;
33         class RouteGroup;
34 }
35
36 namespace ArdourMeter {
37
38 extern sigc::signal<void> ResetAllPeakDisplays;
39 extern sigc::signal<void,ARDOUR::Route*> ResetRoutePeakDisplays;
40 extern sigc::signal<void,ARDOUR::RouteGroup*> ResetGroupPeakDisplays;
41 extern sigc::signal<void> RedrawMetrics;
42
43 extern sigc::signal<void, int, ARDOUR::RouteGroup*, ARDOUR::MeterType> SetMeterTypeMulti;
44
45 gint meter_expose_ticks (GdkEventExpose *ev, ARDOUR::MeterType type, std::vector<ARDOUR::DataType> types, Gtk::DrawingArea *mta);
46 gint meter_expose_metrics (GdkEventExpose *ev, ARDOUR::MeterType type, std::vector<ARDOUR::DataType> types, Gtk::DrawingArea *mma);
47
48 void meter_clear_pattern_cache(int which=7);
49
50 const std::string meter_type_string (ARDOUR::MeterType);
51
52 }
53
54 #endif
55