Ardour  9.0-pre0-582-g084a23a80d
emscale.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2014-2015 Paul Davis <paul@linuxaudiosystems.com>
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 along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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 
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;
48 
50 
51  static std::map<std::string,EmScale> _emscales;
52 };
53 
54 } // namespace
55 
56 #endif /* __libgtkmm2ext_emscale_h__ */
unsigned int _char_pixel_width
Definition: emscale.h:45
void recalc_char_pixel_geometry()
float _char_avg_pixel_width
Definition: emscale.h:47
unsigned int char_pixel_height()
Definition: emscale.h:38
unsigned int _char_pixel_height
Definition: emscale.h:46
float char_avg_pixel_width()
Definition: emscale.h:39
unsigned int char_pixel_width()
Definition: emscale.h:37
EmScale(const Pango::FontDescription &)
static std::map< std::string, EmScale > _emscales
Definition: emscale.h:51
static EmScale & by_font(const Pango::FontDescription &)
Pango::FontDescription _font
Definition: emscale.h:44
#define LIBGTKMM2EXT_API