X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=inline;f=source%2Ftext.cpp;h=2e4d9cb88f4c5c0394b2edf137866dc14cbb295f;hb=b59fab7e533ef96d72c92b224d4f24718bc6b0a1;hp=a3ed762a2cd560754dcd973094e547d5977eae20;hpb=2aa99730d8c3106deeac1186e057055604835752;p=libs%2Fgltk.git diff --git a/source/text.cpp b/source/text.cpp index a3ed762..2e4d9cb 100644 --- a/source/text.cpp +++ b/source/text.cpp @@ -1,3 +1,4 @@ +#include #include #include #include @@ -17,14 +18,14 @@ struct Text::RenderData struct Text::CoordsToGeomData { - unsigned row; - unsigned col; + size_t row; + size_t col; Geometry result; }; Text::Text(): - style(0) + lines(1) { } Text::Text(const Style &s, const string &t): @@ -41,16 +42,16 @@ void Text::set_style(const Style *s) { const GL::Font &font = style->get_font(); float font_size = style->get_font_size(); - for(vector::iterator i=lines.begin(); i!=lines.end(); ++i) - i->width = static_cast(font.get_string_width(text.substr(i->start, i->bytes))*font_size); + for(Line &l: lines) + l.width = static_cast(font.get_string_width(text.substr(l.start, l.bytes))*font_size); } } unsigned Text::get_width() const { unsigned width = 0; - for(vector::const_iterator i=lines.begin(); i!=lines.end(); ++i) - width = max(width, i->width); + for(const Line &l: lines) + width = max(width, l.width); return width; } @@ -79,14 +80,13 @@ void Text::set(const string &t) find_lines(); } -void Text::erase(unsigned pos, unsigned len) +void Text::erase(size_t pos, size_t len) { check_alignment(pos); check_alignment(pos+len); text.erase(pos, len); - vector::iterator i; - for(i=lines.begin(); (i!=lines.end() && i->start+i->bytes=pos; }); if(pos+len>i->start+i->bytes) find_lines(); @@ -100,7 +100,7 @@ void Text::erase(unsigned pos, unsigned len) } } -void Text::insert(unsigned pos, const string &s) +void Text::insert(size_t pos, const string &s) { check_alignment(pos); text.insert(pos, s); @@ -109,8 +109,7 @@ void Text::insert(unsigned pos, const string &s) find_lines(); else { - vector::iterator i; - for(i=lines.begin(); (i!=lines.end() && i->start+i->bytes=pos; }); i->bytes += s.size(); i->length = count_characters(i->start, i->bytes); @@ -120,7 +119,7 @@ void Text::insert(unsigned pos, const string &s) } } -unsigned Text::get_visible_lines(const Part &part, const Geometry &parent, unsigned *fit_height) const +size_t Text::get_visible_lines(const Part &part, const Geometry &parent, unsigned *fit_height) const { const GL::Font &font = style->get_font(); float font_size = style->get_font_size(); @@ -130,28 +129,28 @@ unsigned Text::get_visible_lines(const Part &part, const Geometry &parent, unsig const Sides &margin = part.get_margin(); unsigned vmargin = margin.top+margin.bottom; unsigned free_height = max(parent.h, vmargin)-vmargin+line_spacing-line_height; - unsigned n_lines = min(lines.size(), max(free_height/line_spacing, 1U)); + size_t n_lines = min(lines.size(), max(free_height/line_spacing, 1U)); if(fit_height) *fit_height = line_height+(n_lines-1)*line_spacing; return n_lines; } -unsigned Text::get_line_length(unsigned i) const +size_t Text::get_line_length(size_t i) const { if(i>=lines.size()) throw out_of_range("Text::get_line_length"); return lines[i].length; } -unsigned Text::move_offset(unsigned offs, int change) const +size_t Text::move_offset(size_t offs, ptrdiff_t change) const { check_alignment(offs); if(!change) return offs; StringCodec::Utf8::Decoder dec(StringCodec::IGNORE_ERRORS); - string::const_iterator i = text.begin()+offs; + auto i = text.begin()+offs; if(change>0) { for(; change>0; --change) @@ -162,7 +161,7 @@ unsigned Text::move_offset(unsigned offs, int change) const while(change<0 && i!=text.begin()) { --i; - string::const_iterator j = i; + auto j = i; if(dec.decode_char(text, j)!=-1) ++change; } @@ -170,7 +169,7 @@ unsigned Text::move_offset(unsigned offs, int change) const return i-text.begin(); } -void Text::offset_to_coords(unsigned offs, unsigned &row, unsigned &col) const +void Text::offset_to_coords(size_t offs, size_t &row, size_t &col) const { if(lines.empty()) { @@ -179,7 +178,7 @@ void Text::offset_to_coords(unsigned offs, unsigned &row, unsigned &col) const return; } - for(unsigned i=0; i=lines[i].start && offs<=lines[i].start+lines[i].bytes) { row = i; @@ -191,7 +190,7 @@ void Text::offset_to_coords(unsigned offs, unsigned &row, unsigned &col) const } } -unsigned Text::coords_to_offset(unsigned row, unsigned col) const +size_t Text::coords_to_offset(size_t row, size_t col) const { if(row>=lines.size()) return text.size(); @@ -204,14 +203,14 @@ unsigned Text::coords_to_offset(unsigned row, unsigned col) const else { StringCodec::Utf8::Decoder dec; - string::const_iterator i = text.begin()+line.start; + auto i = text.begin()+line.start; for(col=min(col, line.length); col; --col) dec.decode_char(text, i); return i-text.begin(); } } -Geometry Text::coords_to_geometry(const Part &part, const Geometry &parent, unsigned first_row, unsigned row, unsigned col) const +Geometry Text::coords_to_geometry(const Part &part, const Geometry &parent, size_t first_row, size_t row, size_t col) const { if(row>=lines.size()) row = lines.size()-1; @@ -233,7 +232,7 @@ void Text::build(const Part &part, State state, const Geometry &parent, PartCach build(part, state, parent, 0, cache); } -void Text::build(const Part &part, State state, const Geometry &parent, unsigned first_row, PartCache &cache) const +void Text::build(const Part &part, State state, const Geometry &parent, size_t first_row, PartCache &cache) const { if(!style || lines.empty()) return; @@ -281,26 +280,26 @@ void Text::find_lines() } } -unsigned Text::count_characters(unsigned start, unsigned bytes) const +size_t Text::count_characters(size_t start, size_t bytes) const { StringCodec::Utf8::Decoder dec; - string::const_iterator i = text.begin()+start; - string::const_iterator end = i+bytes; - unsigned count = 0; + auto i = text.begin()+start; + auto end = i+bytes; + size_t count = 0; for(; i -void Text::process_lines(const Part &part, const Geometry &parent, unsigned first_row, void (Text::*func)(unsigned, const Geometry &, T &) const, T &data) const +void Text::process_lines(const Part &part, const Geometry &parent, size_t first_row, void (Text::*func)(size_t, const Geometry &, T &) const, T &data) const { if(!style) return; @@ -311,10 +310,10 @@ void Text::process_lines(const Part &part, const Geometry &parent, unsigned firs int y_offset = static_cast(-font.get_descent()*font_size); unsigned fit_height; - unsigned n_lines = get_visible_lines(part, parent, &fit_height); - first_row = min(first_row, lines.size()-n_lines); + size_t n_lines = get_visible_lines(part, parent, &fit_height); + first_row = min(first_row, lines.size()-n_lines); - for(unsigned i=0; imatrix()); - data.bld->matrix() *= GL::Matrix::translation(rgeom.x, rgeom.y, 0); - data.bld->matrix() *= GL::Matrix::scaling(style->get_font_size()); + GL::VertexBuilder::PushMatrix _pushm(*data.bld); + data.bld->transform(GL::Matrix::translation(rgeom.x, rgeom.y, 0)); + data.bld->transform(GL::Matrix::scaling(style->get_font_size())); style->get_font().build_string(text.substr(line.start, line.bytes), *data.bld); } -void Text::coords_to_geom_line(unsigned i, const Geometry &rgeom, CoordsToGeomData &data) const +void Text::coords_to_geom_line(size_t i, const Geometry &rgeom, CoordsToGeomData &data) const { if(i==data.row) { - string::const_iterator begin = text.begin()+lines[i].start; - string::const_iterator j = begin; + auto begin = text.begin()+lines[i].start; + auto j = begin; if(lines[i].length==lines[i].bytes) j += data.col; else { StringCodec::Utf8::Decoder dec; - for(unsigned c=data.col; c; --c) + for(size_t c=data.col; c; --c) dec.decode_char(text, j); } float w = style->get_font().get_string_width(string(begin, j));