X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fentry.cpp;h=91bd9c0ce82072219bdd46efa48e2d40e39392dc;hb=0af3c2393bd00f39db3bfaf5b78a7a44f0fd5ff1;hp=eed2c39a942ced2e7299a6f357be9142cd6b4c15;hpb=ed9873ba7ee862ad76937f579fe371c1a27d5715;p=libs%2Fgltk.git diff --git a/source/entry.cpp b/source/entry.cpp index eed2c39..91bd9c0 100644 --- a/source/entry.cpp +++ b/source/entry.cpp @@ -1,13 +1,14 @@ /* $Id$ This file is part of libmspgltk -Copyright © 2007 Mikko Rasa, Mikkosoft Productions +Copyright © 2007-2010 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ #include #include #include +#include #include "entry.h" #include "graphic.h" #include "part.h" @@ -20,86 +21,98 @@ namespace GLtk { Entry::Entry(const Resources &r, const string &t): Widget(r), - text(t), + text(), + multiline(false), edit_pos(0) { update_style(); + set_text(t); } void Entry::set_text(const string &t) { - text=t; - if(edit_pos>text.size()) - edit_pos=text.size(); + text = t; + edit_pos = text.size(); +} + +void Entry::set_multiline(bool m) +{ + multiline = m; } void Entry::key_press(unsigned key, unsigned, wchar_t ch) { - if(key==100) + if(key==Input::KEY_LEFT) { if(edit_pos>0) --edit_pos; } - else if(key==102) + else if(key==Input::KEY_RIGHT) { if(edit_pos0) + edit_pos = text.coords_to_offset(row-1, col); + else + edit_pos = 0; + } + else if(key==Input::KEY_BACKSPACE) { if(edit_pos>0) text.erase(--edit_pos, 1); } - else + else if(key==Input::KEY_ENTER) + { + if(multiline) + text.insert(edit_pos++, "\n"); + else + signal_enter.emit(); + } + else if(ch>=' ') { - text+=ch; + text.insert(edit_pos, Codecs::encode(Codecs::ustring(1, ch))); ++edit_pos; } } -void Entry::focus_in() -{ - if(state!=DISABLED) - state=ACTIVE; -} - -void Entry::focus_out() -{ - if(state==ACTIVE) - state=NORMAL; -} - void Entry::render_special(const Part &part) const { if(part.get_name()=="text") - render_text(part, text); + text.render(part, geom); else if(part.get_name()=="cursor") { if(!part.get_graphic(state)) return; - const GL::Font *const font=style->get_font(); - const float font_size=font->get_default_size(); - - const Geometry &pgeom=part.get_geometry(); - unsigned gw=pgeom.w; - unsigned gh=(part.get_fill_y() ? geom.h : pgeom.h); + unsigned row, col; + text.offset_to_coords(edit_pos, row, col); - Geometry rgeom; - rgeom.w=static_cast(font->get_string_width(text)*font_size); - rgeom.h=(part.get_fill_y() ? geom.h : pgeom.h); + Geometry rgeom = text.coords_to_geometry(row, col); part.get_alignment().apply(rgeom, geom, part.get_margin()); - rgeom.x+=static_cast(font->get_string_width(text.substr(0, edit_pos))*font_size); GL::push_matrix(); GL::translate(rgeom.x, rgeom.y, 0); - - part.get_graphic(state)->render(gw, gh); - + part.get_graphic(state)->render(part.get_geometry().w, part.get_geometry().h); GL::pop_matrix(); } } +void Entry::on_style_change() +{ + text.set_style(style); +} + Entry::Loader::Loader(Entry &ent): Widget::Loader(ent)