X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftext.h;h=c49b167a844945d3a55cab385e9bbb5fa7c2f502;hb=HEAD;hp=5daeb9bae70db324014f330ee04b5edf76adba34;hpb=62417b367503a9b26510c75e2332db21af1497bf;p=libs%2Fgltk.git diff --git a/source/text.h b/source/text.h index 5daeb9b..3387f36 100644 --- a/source/text.h +++ b/source/text.h @@ -3,49 +3,75 @@ #include #include +#include "mspgltk_api.h" +#include "state.h" namespace Msp { namespace GLtk { class Geometry; class Part; +class PartCache; class Style; /** Stores and renders text. Supports multiline text. */ -class Text +class MSPGLTK_API Text { private: struct Line { - unsigned start; - unsigned length; - unsigned width; + std::size_t start = 0; + std::size_t bytes = 0; + std::size_t length = 0; + unsigned width = 0; }; - const Style *const &style; + struct RenderData; + struct CoordsToGeomData; + + const Style *style = nullptr; std::string text; std::vector lines; public: - Text(const Style *const &); - Text(const Style *const &, const std::string &); + Text(); + Text(const Style &, const std::string &); + + void set_style(const Style *); unsigned get_width() const; unsigned get_height() const; + void autosize(const Part &, Geometry &) const; void set(const std::string &); - void erase(unsigned, unsigned); - void insert(unsigned, const std::string &); + void erase(std::size_t, std::size_t); + void insert(std::size_t, const std::string &); const std::string &get() const { return text; } - unsigned size() const { return text.size(); } + std::size_t size() const { return text.size(); } + std::size_t get_n_lines() const { return lines.size(); } + std::size_t get_visible_lines(const Part &, const Geometry &, unsigned *) const; + std::size_t get_line_length(std::size_t) const; + std::size_t move_offset(std::size_t, std::ptrdiff_t) const; + void offset_to_coords(std::size_t, std::size_t &, std::size_t &) const; + std::size_t coords_to_offset(std::size_t, std::size_t) const; + Geometry coords_to_geometry(const Part &, const Geometry &, std::size_t, std::size_t, std::size_t) const; - void render(const Part &, const Geometry &) const; + void build(const Part &, State, const Geometry &, PartCache &) const; + void build(const Part &, State, const Geometry &, std::size_t, PartCache &) const; Text &operator=(const std::string &); private: void find_lines(); + std::size_t count_characters(std::size_t, std::size_t) const; + void check_alignment(std::size_t) const; + + template + void process_lines(const Part &, const Geometry &, std::size_t, void (Text::*)(std::size_t, const Geometry &, T &) const, T &) const; + + void build_line(std::size_t, const Geometry &, RenderData &) const; + void coords_to_geom_line(std::size_t, const Geometry &, CoordsToGeomData &) const; }; } // namespace GLtk