X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fentry.cpp;h=a0df8cb9e423c1372c56997be5cf1ba74db50c9b;hb=4ab33a06c9f8a85b193d7db8bc6ee9b8895aab09;hp=ec6bba702983081fa0de856911da0484a3b50953;hpb=2b70e8801c43875ed3f4135bdd0141265cff0312;p=libs%2Fgltk.git diff --git a/source/entry.cpp b/source/entry.cpp index ec6bba7..a0df8cb 100644 --- a/source/entry.cpp +++ b/source/entry.cpp @@ -35,14 +35,14 @@ void Entry::autosize() if(text_part) { const Sides &margin = text_part->get_margin(); - const GL::Font &font = *style->get_font(); - unsigned en_width = static_cast(font.get_string_width("n")*font.get_native_size()); + const GL::Font &font = style->get_font(); + unsigned en_width = static_cast(font.get_string_width("n")*style->get_font_size()); geom.w = max(geom.w, 10*en_width+margin.left+margin.right); - unsigned line_height = static_cast((font.get_ascent()-font.get_descent())*font.get_native_size()); + unsigned line_height = static_cast((font.get_ascent()-font.get_descent())*style->get_font_size()); if(multiline) { - unsigned line_spacing = font.get_native_size()*6/5; + unsigned line_spacing = style->get_font_size()*6/5; geom.h = max(geom.h, line_height+line_spacing*2+margin.top+margin.bottom); } else @@ -126,7 +126,7 @@ void Entry::render_special(const Part &part) const slider->render(); } -void Entry::key_press(unsigned key, unsigned, wchar_t ch) +void Entry::key_press(unsigned key, unsigned) { if(key==Input::KEY_LEFT) { @@ -181,9 +181,13 @@ void Entry::key_press(unsigned key, unsigned, wchar_t ch) else signal_enter.emit(); } - else if(ch>=' ') +} + +void Entry::character(wchar_t ch) +{ + if(ch>=' ') { - text.insert(edit_pos, Codecs::encode(Codecs::ustring(1, ch))); + text.insert(edit_pos, StringCodec::encode(StringCodec::ustring(1, ch))); ++edit_pos; } } @@ -241,8 +245,7 @@ void Entry::check_view_range() if(!multiline || !text_part) return; - const GL::Font *font = style->get_font(); - float font_size = font->get_default_size(); + float font_size = style->get_font_size(); unsigned line_spacing = static_cast(font_size*6/5); const Sides &margin = text_part->get_margin();