using m_offset to save original offsets during transformation.

This commit is contained in:
rachytski 2011-09-22 17:39:01 +03:00 committed by Alex Zolotarev
parent 686bfc4477
commit 49146b3bbe
3 changed files with 7 additions and 32 deletions

View file

@ -1,26 +0,0 @@
#pragma once
#include "../base/assert.hpp"
#include "../map/window_handle.hpp"
#include <QtGui/QWidget>
namespace qt
{
class WindowHandle : public ::WindowHandle
{
QWidget * m_pWnd;
public:
WindowHandle(QWidget * p) : m_pWnd(p) {}
void invalidateImpl()
{
ASSERT ( m_pWnd != 0, () );
m_pWnd->setUpdatesEnabled(true);
m_pWnd->update();
}
};
}

View file

@ -135,7 +135,10 @@ namespace yg
m_glyphLayouts[i].setPivot(m_glyphLayouts[i].pivot() + m2::PointD(0, allElemHeight / 2));
for (unsigned i = 0; i < res.size(); ++i)
m_glyphLayouts[i].setPivot(m_glyphLayouts[i].pivot() + pivot());
{
m_offsets.push_back(m_glyphLayouts[i].pivot());
m_glyphLayouts[i].setPivot(m_offsets[i] + pivot());
}
}
StraightTextElement::Params::Params()
@ -150,16 +153,13 @@ namespace yg
: TextElement(src),
m_glyphLayouts(src.m_glyphLayouts)
{
static vector<m2::PointD> offsets;
offsets.clear();
for (unsigned i = 0; i < m_glyphLayouts.size(); ++i)
offsets.push_back(m2::PointD(m_glyphLayouts[i].pivot() - pivot()));
m_offsets = src.m_offsets;
setPivot(pivot() * m);
for (unsigned i = 0; i < m_glyphLayouts.size(); ++i)
m_glyphLayouts[i].setPivot(pivot() + offsets[i]);
m_glyphLayouts[i].setPivot(pivot() + m_offsets[i]);
}
vector<m2::AARectD> const & StraightTextElement::boundRects() const

View file

@ -10,6 +10,7 @@ namespace yg
/// glyph layout of the text parts.
vector<GlyphLayout> m_glyphLayouts;
vector<m2::PointD> m_offsets;
public: