C++11 tidying.
[dcpomatic.git] / src / wx / timer_display.cc
1 /*
2     Copyright (C) 2019-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #include "timer_display.h"
23 #include "wx_util.h"
24 #include "lib/timer.h"
25 #include <dcp/locale_convert.h>
26 #include <list>
27
28
29 using std::map;
30 using std::list;
31 using std::pair;
32 using std::make_pair;
33 using std::string;
34
35
36 TimerDisplay::TimerDisplay (wxWindow* parent, StateTimer const & timer, int gets)
37         : TableDialog (parent, std_to_wx(timer.name()), 4, 0, false)
38 {
39         auto counts = timer.counts ();
40         list<pair<string, StateTimer::Counts>> sorted;
41         for (auto const& i: counts) {
42                 sorted.push_back (make_pair(i.first, i.second));
43         }
44
45         sorted.sort ([](pair<string, StateTimer::Counts> const& a, pair<string, StateTimer::Counts> const& b) {
46                 return a.second.total_time > b.second.total_time;
47         });
48
49         add (wxString("get() calls"), true);
50         add (std_to_wx(dcp::locale_convert<string>(gets)), false);
51         add_spacer ();
52         add_spacer ();
53
54         for (auto const& i: sorted) {
55                 add (std_to_wx(i.first), true);
56                 add (std_to_wx(dcp::locale_convert<string>(i.second.total_time)), false);
57                 add (std_to_wx(dcp::locale_convert<string>(i.second.number)), false);
58                 add (std_to_wx(dcp::locale_convert<string>(i.second.total_time / i.second.number)), false);
59         }
60
61         layout ();
62 }