]> git.tdb.fi Git - libs/gltk.git/commitdiff
Return a reference from Style::get_font
authorMikko Rasa <tdb@tdb.fi>
Wed, 28 Nov 2012 19:45:30 +0000 (21:45 +0200)
committerMikko Rasa <tdb@tdb.fi>
Wed, 28 Nov 2012 19:45:30 +0000 (21:45 +0200)
Styles always have a font, so the returned value could never be null.

source/dropdown.cpp
source/entry.cpp
source/list.cpp
source/style.h
source/table.cpp
source/text.cpp

index d1a7bd7e1433490e364a8d7cf2ec356c809ce0a7..cab6d918e536210190a256b67b7965c0851c2f1b 100644 (file)
@@ -31,9 +31,9 @@ void Dropdown::autosize()
        if(const Part *text_part = style->get_part("text"))
        {
                const Sides &margin = text_part->get_margin();
-               const GL::Font *font = style->get_font();
+               const GL::Font &font = style->get_font();
                float font_size = style->get_font_size();
-               unsigned line_height = static_cast<unsigned>((font->get_ascent()-font->get_descent())*font_size);
+               unsigned line_height = static_cast<unsigned>((font.get_ascent()-font.get_descent())*font_size);
                geom.h = max(geom.h, line_height+margin.top+margin.bottom);
        }
 }
index 261cf8b938dd88f5d0adeb1eb64b682a66458759..a0df8cb9e423c1372c56997be5cf1ba74db50c9b 100644 (file)
@@ -35,7 +35,7 @@ void Entry::autosize()
        if(text_part)
        {
                const Sides &margin = text_part->get_margin();
-               const GL::Font &font = *style->get_font();
+               const GL::Font &font = style->get_font();
                unsigned en_width = static_cast<unsigned>(font.get_string_width("n")*style->get_font_size());
                geom.w = max(geom.w, 10*en_width+margin.left+margin.right);
 
index e1f39b7dc8ecaa67db27c9212ada54ef24199593..a886118ed6c98b8341effd74de1d6fc4c6f61018 100644 (file)
@@ -40,12 +40,13 @@ void List::autosize_rows(unsigned n)
        if(items_part)
        {
                const Sides &margin = items_part->get_margin();
+               const GL::Font &font = style->get_font();
                float font_size = style->get_font_size();
 
                unsigned max_w = 0;
                for(vector<string>::iterator i=items.begin(); i!=items.end(); ++i)
                {
-                       unsigned w = static_cast<unsigned>(style->get_font()->get_string_width(*i)*font_size);
+                       unsigned w = static_cast<unsigned>(font.get_string_width(*i)*font_size);
                        max_w = max(max_w, w);
                }
 
@@ -222,7 +223,7 @@ void List::on_style_change()
 
        items_part = style->get_part("items");
 
-       const GL::Font &font = *style->get_font();
+       const GL::Font &font = style->get_font();
        row_height = static_cast<unsigned>((font.get_ascent()-font.get_descent())*style->get_font_size());
 
        check_view_range();
index 29c5e3430b0fca7a1581312fee3e1a2df5ac999f..56f7ac484afce3e94fd2ee4b639b70466e32eeeb 100644 (file)
@@ -47,7 +47,7 @@ private:
 
 public:
        Style(Resources &);
-       const GL::Font *get_font() const  { return font; }
+       const GL::Font &get_font() const  { return *font; }
        unsigned get_font_size() const { return font_size; }
        const GL::Color &get_font_color() const { return font_color; }
        const PartSeq &get_parts() const { return parts; }
index 67a93bc5bbaf0ccb1466350b90a006006e96c0e6..1fe69619f911aa892563c27b54dba76e613d1c5d 100644 (file)
@@ -56,7 +56,7 @@ void Table::render_special(const Part &part) const
 {
        if(part.get_name()=="cells")
        {
-               const GL::Font *const font = style->get_font();
+               const GL::Font &font = style->get_font();
                float font_size = style->get_font_size();
 
                unsigned free_width = geom.w;
@@ -81,15 +81,15 @@ void Table::render_special(const Part &part) const
                                Geometry rgeom;
                                rgeom.x = cgeom.x;
                                rgeom.y = cgeom.y;
-                               rgeom.w = static_cast<unsigned>(font->get_string_width(text)*font_size);
-                               rgeom.h = static_cast<unsigned>((font->get_ascent()-font->get_descent())*font_size);
+                               rgeom.w = static_cast<unsigned>(font.get_string_width(text)*font_size);
+                               rgeom.h = static_cast<unsigned>((font.get_ascent()-font.get_descent())*font_size);
 
                                part.get_alignment().apply(rgeom, cgeom, part.get_margin());
 
                                GL::push_matrix();
                                GL::translate(rgeom.x, rgeom.y, 0);
                                GL::scale_uniform(font_size);
-                               font->draw_string(text);
+                               font.draw_string(text);
                                GL::pop_matrix();
 
                                cgeom.x += cgeom.w;
index a4ec22668537946a6d72e4ded8c0adbfdaadfb43..0b582c5e8b6c0eb47b64784eef13fb3182161971 100644 (file)
@@ -38,9 +38,10 @@ void Text::set_style(const Style *s)
 
        if(style)
        {
+               const GL::Font &font = style->get_font();
                float font_size = style->get_font_size();
                for(vector<Line>::iterator i=lines.begin(); i!=lines.end(); ++i)
-                       i->width = static_cast<unsigned>(style->get_font()->get_string_width(text.substr(i->start, i->length))*font_size);
+                       i->width = static_cast<unsigned>(font.get_string_width(text.substr(i->start, i->length))*font_size);
        }
 }
 
@@ -57,9 +58,9 @@ unsigned Text::get_height() const
        if(!style)
                return lines.size();
 
-       const GL::Font *font = style->get_font();
+       const GL::Font &font = style->get_font();
        float font_size = style->get_font_size();
-       unsigned line_height = static_cast<unsigned>((font->get_ascent()-font->get_descent())*font_size);
+       unsigned line_height = static_cast<unsigned>((font.get_ascent()-font.get_descent())*font_size);
        unsigned line_spacing = line_height*6/5;
        return line_height+(lines.size()-1)*line_spacing;
 }
@@ -161,7 +162,7 @@ void Text::render(const Part &part, const Geometry &parent, unsigned first_row)
        if(!style || lines.empty())
                return;
 
-       const GL::Font *font = style->get_font();
+       const GL::Font &font = style->get_font();
        const GL::Color &color = style->get_font_color();
        GL::Immediate imm((GL::COLOR4_UBYTE, GL::TEXCOORD2, GL::VERTEX2));
        imm.color(color.r, color.g, color.b);
@@ -169,7 +170,7 @@ void Text::render(const Part &part, const Geometry &parent, unsigned first_row)
        RenderData data;
        data.bld = &imm;
 
-       GL::Bind bind_tex(font->get_texture());
+       GL::Bind bind_tex(font.get_texture());
 
        process_lines<RenderData, &Text::render_line>(part, parent, first_row, data);
 }
@@ -196,7 +197,7 @@ void Text::find_lines()
                if(style)
                {
                        string str = text.substr(line.start, line.length);
-                       line.width = static_cast<unsigned>(style->get_font()->get_string_width(str)*font_size);
+                       line.width = static_cast<unsigned>(style->get_font().get_string_width(str)*font_size);
                }
                lines.push_back(line);
 
@@ -212,12 +213,12 @@ void Text::process_lines(const Part &part, const Geometry &parent, unsigned firs
        if(!style)
                return;
 
-       const GL::Font *font = style->get_font();
+       const GL::Font &font = style->get_font();
        float font_size = style->get_font_size();
-       unsigned line_height = static_cast<unsigned>((font->get_ascent()-font->get_descent())*font_size);
+       unsigned line_height = static_cast<unsigned>((font.get_ascent()-font.get_descent())*font_size);
        unsigned line_spacing = static_cast<unsigned>(font_size*6/5);
        unsigned height = line_height+(lines.size()-1)*line_spacing;
-       int y_offset = static_cast<int>(-font->get_descent()*font_size);
+       int y_offset = static_cast<int>(-font.get_descent()*font_size);
 
        const Sides &margin = part.get_margin();
        unsigned n_lines = min(lines.size(), max((parent.h-margin.top-margin.bottom)/line_spacing, 1U));
@@ -240,24 +241,21 @@ void Text::process_lines(const Part &part, const Geometry &parent, unsigned firs
 void Text::render_line(unsigned i, const Geometry &rgeom, RenderData &data) const
 {
        const Line &line = lines[i];
-       const GL::Font *font = style->get_font();
 
        GL::PushMatrix _pushm;
        GL::translate(rgeom.x, rgeom.y, 0);
        GL::scale_uniform(style->get_font_size());
 
-       font->build_string(text.substr(line.start, line.length), *data.bld);
+       style->get_font().build_string(text.substr(line.start, line.length), *data.bld);
 }
 
 void Text::coords_to_geom_line(unsigned i, const Geometry &rgeom, CoordsToGeomData &data) const
 {
        if(i==data.row)
        {
-               const Line &line = lines[i];
-               const GL::Font *font = style->get_font();
-
+               float w = style->get_font().get_string_width(text.substr(lines[i].start, data.col));
                data.result = rgeom;
-               data.result.x += static_cast<unsigned>(font->get_string_width(text.substr(line.start, data.col))*style->get_font_size());
+               data.result.x += static_cast<unsigned>(w*style->get_font_size());
        }
 }