Gtkmm2ext::Pane: attempt to track child lifetime, since Gtkmm 2.4 doesn't do this...
[ardour.git] / libs / gtkmm2ext / gtkmm2ext / emscale.h
1 /*
2     Copyright (C) 2014 Paul Davis, Robin Gareus
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17 */
18
19 #ifndef __libgtkmm2ext_emscale_h__
20 #define __libgtkmm2ext_emscale_h__
21
22 #include <map>
23 #include <string>
24
25 #include <pangomm/fontdescription.h>
26
27 #include "gtkmm2ext/visibility.h"
28
29 namespace Gtkmm2ext
30 {
31
32 class LIBGTKMM2EXT_API EmScale
33 {
34     public:
35         EmScale (const Pango::FontDescription&);
36
37         unsigned int char_pixel_width() { if (_char_pixel_width < 1) recalc_char_pixel_geometry() ; return _char_pixel_width; }
38         unsigned int char_pixel_height() { if (_char_pixel_height < 1) recalc_char_pixel_geometry() ; return _char_pixel_height; }
39         float char_avg_pixel_width() { if (_char_pixel_width < 1) recalc_char_pixel_geometry() ; return _char_avg_pixel_width; }
40
41         static EmScale& by_font (const Pango::FontDescription&);
42
43     private:
44         Pango::FontDescription _font;
45         unsigned int           _char_pixel_width;
46         unsigned int           _char_pixel_height;
47         float                  _char_avg_pixel_width;
48
49         void recalc_char_pixel_geometry ();
50
51         static std::map<std::string,EmScale> _emscales;
52 };
53
54 } // namespace
55
56 #endif /* __libgtkmm2ext_emscale_h__ */