X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fentry.cpp;h=271c49a4b6cda21ca063f9e7e7339ea460c96de5;hb=73afd124ab87e8bace98db55517a56c797a9b8c7;hp=6daa8ef1b1083c1361522d64bc3e845df228c2ad;hpb=68c4aa0eaaade8b163cf9b3a96aa640ea16b1def;p=libs%2Fgltk.git diff --git a/source/entry.cpp b/source/entry.cpp index 6daa8ef..271c49a 100644 --- a/source/entry.cpp +++ b/source/entry.cpp @@ -1,98 +1,228 @@ -#include +/* $Id$ + +This file is part of libmspgltk +Copyright © 2007-2011 Mikko Rasa, Mikkosoft Productions +Distributed under the LGPL +*/ + #include +#include #include +#include #include "entry.h" +#include "graphic.h" #include "part.h" #include "style.h" +#include "vslider.h" using namespace std; namespace Msp { namespace GLtk { -Entry::Entry(const Resources &r, const string &t): - Widget(r), - text(t), +Entry::Entry(const string &t): + text(), + multiline(false), edit_pos(0), - active(false) + first_row(0), + visible_rows(1), + text_part(0), + slider(0) { + 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(); + + if(multiline) + check_view_range(); +} + +void Entry::set_multiline(bool m) +{ + multiline = m; + if(multiline) + { + if(!slider) + { + slider = new VSlider; + add(*slider); + slider->set_step(1); + slider->signal_value_changed.connect(sigc::mem_fun(this, &Entry::slider_value_changed)); + reposition_slider(); + } + check_view_range(); + } +} + +void Entry::render_special(const Part &part) const +{ + if(part.get_name()=="text") + text.render(part, geom, first_row); + else if(part.get_name()=="cursor") + { + if(!text_part || !part.get_graphic(state)) + return; + + unsigned row, col; + text.offset_to_coords(edit_pos, row, col); + + if(row=first_row+visible_rows) + return; + + Geometry rgeom = text.coords_to_geometry(*text_part, geom, first_row, row, col); + + GL::push_matrix(); + GL::translate(rgeom.x, rgeom.y, 0); + part.get_graphic(state)->render(part.get_geometry().w, part.get_geometry().h); + GL::pop_matrix(); + } + else if(part.get_name()=="slider") + slider->render(); } void Entry::key_press(unsigned key, unsigned, wchar_t ch) { - if(key==SDLK_LEFT) + if(key==Input::KEY_LEFT) { if(edit_pos>0) + { --edit_pos; + check_view_range(); + } } - else if(key==SDLK_RIGHT) + else if(key==Input::KEY_RIGHT) { if(edit_pos0) + { + edit_pos = text.coords_to_offset(row-1, col); + check_view_range(); + } + else + edit_pos = 0; } - else if(key==SDLK_BACKSPACE) + else if(key==Input::KEY_BACKSPACE) { if(edit_pos>0) + { text.erase(--edit_pos, 1); + check_view_range(); + } + } + else if(key==Input::KEY_ENTER) + { + if(multiline) + { + text.insert(edit_pos++, "\n"); + check_view_range(); + } + else + signal_enter.emit(); } - else + else if(ch>=' ') { - text+=ch; + text.insert(edit_pos, Codecs::encode(Codecs::ustring(1, ch))); + ++edit_pos; } } -void Entry::focus_in() +void Entry::on_geometry_change() { - active=true; + reposition_slider(); + + if(multiline) + check_view_range(); } -void Entry::focus_out() +void Entry::on_style_change() { - active=false; + text.set_style(style); + + if(!style) + { + text_part = 0; + return; + } + + text_part = style->get_part("text"); + + reposition_slider(); + + if(multiline) + check_view_range(); } -void Entry::render_part(const Part &part) const +void Entry::reposition_slider() { - if(part.get_name()=="text") + if(!style || !slider) + return; + + if(const Part *slider_part = style->get_part("slider")) { - const GL::Font *const font=style->get_font(); + Geometry sgeom = slider_part->get_geometry(); + slider_part->get_alignment().apply(sgeom, geom, slider_part->get_margin()); + slider->set_geometry(sgeom); + } +} - const float font_size=font->get_default_size(); - unsigned text_w=static_cast(font->get_string_width(text)*font_size); +void Entry::check_view_range() +{ + if(!multiline || !text_part) + return; - GL::push_matrix(); + const GL::Font *font = style->get_font(); + float font_size = font->get_default_size(); + unsigned line_spacing = static_cast(font_size*6/5); - part.get_alignment().apply(geom, text_w, static_cast(font->get_ascent()*font_size)); - GL::scale_uniform(font_size); + const Sides &margin = text_part->get_margin(); + visible_rows = max((geom.h-margin.top-margin.bottom)/line_spacing, 1U); - const Color &color=style->get_font_color(); - glColor3f(color.r, color.g, color.b); - if(active) - { - font->draw_string(text.substr(0, edit_pos)); - glBegin(GL_LINES); - glVertex2f(0, 0); - glVertex2f(0, 1); - glEnd(); - font->draw_string(text.substr(edit_pos)); - } - else - font->draw_string(text); - glColor3f(1, 1, 1); + unsigned row, col; + text.offset_to_coords(edit_pos, row, col); - GL::pop_matrix(); - render_text(part, text); + if(first_row>row) + first_row = row; + else if(row>=first_row+visible_rows) + first_row = row+1-visible_rows; + + if(slider) + { + unsigned scroll = max(text.get_n_lines(), visible_rows)-visible_rows; + slider->set_range(0, scroll); + slider->set_value(scroll-first_row); } - else - Widget::render_part(part); } +void Entry::slider_value_changed(double value) +{ + if(text.get_n_lines()>visible_rows) + first_row = text.get_n_lines()-visible_rows-static_cast(value); +} + + +Entry::Loader::Loader(Entry &ent): + Widget::Loader(ent) +{ } + } // namespace GLtk } // namespace Msp