]> git.sesse.net Git - casparcg/blob - common/diagnostics/graph.h
x64-exp
[casparcg] / common / diagnostics / graph.h
1 /*\r
2 * Copyright (c) 2011 Sveriges Television AB <info@casparcg.com>\r
3 *\r
4 * This file is part of CasparCG (www.casparcg.com).\r
5 *\r
6 * CasparCG is free software: you can redistribute it and/or modify\r
7 * it under the terms of the GNU General Public License as published by\r
8 * the Free Software Foundation, either version 3 of the License, or\r
9 * (at your option) any later version.\r
10 *\r
11 * CasparCG is distributed in the hope that it will be useful,\r
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14 * GNU General Public License for more details.\r
15 *\r
16 * You should have received a copy of the GNU General Public License\r
17 * along with CasparCG. If not, see <http://www.gnu.org/licenses/>.\r
18 *\r
19 * Author: Robert Nagy, ronag89@gmail.com\r
20 */\r
21 \r
22 #pragma once\r
23 \r
24 #include "../memory/safe_ptr.h"\r
25 \r
26 #include <string>\r
27 #include <vector>\r
28 #include <map>\r
29 \r
30 #include <boost/range/iterator_range.hpp>\r
31 #include <boost/circular_buffer.hpp>\r
32 \r
33 namespace caspar { namespace diagnostics {\r
34         \r
35 struct color\r
36 {\r
37         float red;\r
38         float green;\r
39         float blue;\r
40         float alpha;\r
41         \r
42         color(float r = 0.0f, float g = 0.0f, float b = 0.0f, float a = 1.0f)\r
43                 : red(r)\r
44                 , green(g)\r
45                 , blue(b)\r
46                 , alpha(a){}\r
47 };\r
48 \r
49 class graph\r
50 {\r
51         friend void register_graph(const safe_ptr<graph>& graph);\r
52 public:\r
53         graph();\r
54         void set_text(const std::string& value);\r
55         void set_text(const std::wstring& value);\r
56         void update_value(const std::string& name, double value);\r
57         void set_value(const std::string& name, double value);\r
58         void set_color(const std::string& name, color c);\r
59         void add_tag(const std::string& name);\r
60         void add_guide(const std::string& name, double value);\r
61 private:\r
62         struct implementation;\r
63         std::shared_ptr<implementation> impl_;\r
64 };\r
65 \r
66 void register_graph(const safe_ptr<graph>& graph);\r
67 void show_graphs(bool value);\r
68 \r
69 }}