forked from organicmaps/organicmaps-tmp
new structure for convinient drawing of text by lines
This commit is contained in:
parent
da58621aea
commit
37d2c70713
1 changed files with 21 additions and 4 deletions
|
@ -5,8 +5,26 @@
|
|||
|
||||
#include "../geometry/point2d.hpp"
|
||||
|
||||
#include "../base/string_utils.hpp"
|
||||
|
||||
namespace df
|
||||
{
|
||||
|
||||
namespace
|
||||
{
|
||||
struct TextLine
|
||||
{
|
||||
m2::PointF m_offset;
|
||||
strings::UniString m_text;
|
||||
float m_length;
|
||||
FontDecl m_font;
|
||||
|
||||
TextLine() {}
|
||||
TextLine(m2::PointF const & offset, strings::UniString const & text, float length, FontDecl const & font)
|
||||
: m_offset(offset), m_text(text), m_length(length), m_font(font) {}
|
||||
};
|
||||
}
|
||||
|
||||
class TextShape : public MapShape
|
||||
{
|
||||
public:
|
||||
|
@ -15,10 +33,9 @@ public:
|
|||
virtual void Draw(dp::RefPointer<dp::Batcher> batcher, dp::RefPointer<dp::TextureSetHolder> textures) const;
|
||||
|
||||
private:
|
||||
void AddGeometryWithTheSameTextureSet(int setNum, int letterCount, bool auxText,
|
||||
float maxTextLength, m2::PointF const & anchorDelta,
|
||||
dp::RefPointer<dp::Batcher> batcher,
|
||||
dp::RefPointer<dp::TextureSetHolder> textures) const;
|
||||
void DrawTextLine(TextLine const & textLine, dp::RefPointer<dp::Batcher> batcher, dp::RefPointer<dp::TextureSetHolder> textures) const;
|
||||
void DrawUnicalTextLine(TextLine const & textLine, int setNum, int letterCount,
|
||||
dp::RefPointer<dp::Batcher> batcher, dp::RefPointer<dp::TextureSetHolder> textures) const;
|
||||
|
||||
private:
|
||||
m2::PointF m_basePoint;
|
||||
|
|
Loading…
Add table
Reference in a new issue