diff --git a/android/res/values/dimens.xml b/android/res/values/dimens.xml
index f34d99629d..c4e09819ec 100644
--- a/android/res/values/dimens.xml
+++ b/android/res/values/dimens.xml
@@ -69,6 +69,8 @@
26dp
10dp
58dp
+ 10dp
+ 58dp
40dp
20dp
2dp
diff --git a/android/src/com/mapswithme/maps/MapFragment.java b/android/src/com/mapswithme/maps/MapFragment.java
index c76e9b8df9..9c7ac70623 100644
--- a/android/src/com/mapswithme/maps/MapFragment.java
+++ b/android/src/com/mapswithme/maps/MapFragment.java
@@ -43,6 +43,7 @@ public class MapFragment extends BaseMwmFragment
private static final int WIDGET_COMPASS = 0x02;
private static final int WIDGET_COPYRIGHT = 0x04;
private static final int WIDGET_SCALE_LABEL = 0x08;
+ private static final int WIDGET_WATERMARK = 0x10;
// Should correspond to dp::Anchor from drape_global.hpp
private static final int ANCHOR_CENTER = 0x00;
@@ -96,6 +97,11 @@ public class MapFragment extends BaseMwmFragment
mHeight - UiUtils.dimen(R.dimen.margin_ruler_bottom),
ANCHOR_LEFT_BOTTOM);
+ nativeSetupWidget(WIDGET_WATERMARK,
+ UiUtils.dimen(R.dimen.margin_watermark_right),
+ mHeight - UiUtils.dimen(R.dimen.margin_watermark_bottom),
+ ANCHOR_RIGHT_BOTTOM);
+
if (BuildConfig.DEBUG)
{
nativeSetupWidget(WIDGET_SCALE_LABEL,
@@ -130,6 +136,16 @@ public class MapFragment extends BaseMwmFragment
nativeApplyWidgets();
}
+ void setupWatermark(int offsetX, int offsetY, boolean forceRedraw)
+ {
+ nativeSetupWidget(WIDGET_WATERMARK,
+ UiUtils.dimen(R.dimen.margin_watermark_right) + offsetX,
+ mHeight - UiUtils.dimen(R.dimen.margin_watermark_bottom) + offsetY,
+ ANCHOR_RIGHT_BOTTOM);
+ if (forceRedraw && mContextCreated)
+ nativeApplyWidgets();
+ }
+
private void onRenderingInitialized()
{
final Activity activity = getActivity();
diff --git a/android/src/com/mapswithme/maps/MwmActivity.java b/android/src/com/mapswithme/maps/MwmActivity.java
index f198742671..4f25d578d9 100644
--- a/android/src/com/mapswithme/maps/MwmActivity.java
+++ b/android/src/com/mapswithme/maps/MwmActivity.java
@@ -1539,7 +1539,7 @@ public class MwmActivity extends BaseMwmFragmentActivity
public void run()
{
final int menuHeight = menu.getFrame().getHeight();
- adjustRuler(0, menuHeight);
+ adjustBottomWidgets(0, menuHeight);
mIsFullscreenAnimating = false;
if (mIsAppearMenuLater)
@@ -1573,7 +1573,7 @@ public class MwmActivity extends BaseMwmFragmentActivity
@Override
public void run()
{
- adjustRuler(0, 0);
+ adjustBottomWidgets(0, 0);
}
});
if (mNavMyPosition != null)
@@ -1762,12 +1762,13 @@ public class MwmActivity extends BaseMwmFragmentActivity
MapFragment.nativeCompassUpdated(compass.getMagneticNorth(), compass.getTrueNorth(), true);
}
- private void adjustRuler(int offsetX, int offsetY)
+ private void adjustBottomWidgets(int offsetX, int offsetY)
{
if (mMapFragment == null || !mMapFragment.isAdded())
return;
mMapFragment.setupRuler(offsetX, offsetY, true);
+ mMapFragment.setupWatermark(offsetX, offsetY, true);
}
@Override
@@ -1854,7 +1855,7 @@ public class MwmActivity extends BaseMwmFragmentActivity
public void run()
{
final int menuHeight = getCurrentMenu().getFrame().getHeight();
- adjustRuler(0, menuHeight);
+ adjustBottomWidgets(0, menuHeight);
if (completion != null)
completion.run();
}
@@ -1956,7 +1957,7 @@ public class MwmActivity extends BaseMwmFragmentActivity
@Override
public void run()
{
- adjustRuler(0, 0);
+ adjustBottomWidgets(0, 0);
}
});
}
diff --git a/data/resources-default/default.ui b/data/resources-default/default.ui
index e808493d6a..d2dd14fbf7 100644
--- a/data/resources-default/default.ui
+++ b/data/resources-default/default.ui
@@ -35,4 +35,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/drape_frontend/CMakeLists.txt b/drape_frontend/CMakeLists.txt
index 33fad5d37a..c497e442aa 100644
--- a/drape_frontend/CMakeLists.txt
+++ b/drape_frontend/CMakeLists.txt
@@ -114,6 +114,8 @@ set(
gui/shape.hpp
gui/skin.cpp
gui/skin.hpp
+ gui/watermark.cpp
+ gui/watermark.hpp
kinetic_scroller.cpp
kinetic_scroller.hpp
line_shape.cpp
diff --git a/drape_frontend/backend_renderer.cpp b/drape_frontend/backend_renderer.cpp
index 566e45cce6..2ff33c5092 100644
--- a/drape_frontend/backend_renderer.cpp
+++ b/drape_frontend/backend_renderer.cpp
@@ -91,7 +91,7 @@ void BackendRenderer::RecacheGui(gui::TWidgetsInitInfo const & initInfo, bool ne
m_commutator->PostMessage(ThreadsCommutator::RenderThread, move(outputMsg), MessagePriority::Normal);
}
-#ifdef RENRER_DEBUG_INFO_LABELS
+#ifdef RENDER_DEBUG_INFO_LABELS
void BackendRenderer::RecacheDebugLabels()
{
drape_ptr layerRenderer = m_guiCacher.RecacheDebugLabels(m_texMng);
@@ -149,7 +149,7 @@ void BackendRenderer::AcceptMessage(ref_ptr message)
ref_ptr msg = message;
RecacheGui(msg->GetInitInfo(), msg->NeedResetOldGui());
-#ifdef RENRER_DEBUG_INFO_LABELS
+#ifdef RENDER_DEBUG_INFO_LABELS
RecacheDebugLabels();
#endif
break;
diff --git a/drape_frontend/backend_renderer.hpp b/drape_frontend/backend_renderer.hpp
index 670728d3bb..3f945f9aec 100644
--- a/drape_frontend/backend_renderer.hpp
+++ b/drape_frontend/backend_renderer.hpp
@@ -77,7 +77,7 @@ private:
void RecacheChoosePositionMark();
void RecacheMapShapes();
-#ifdef RENRER_DEBUG_INFO_LABELS
+#ifdef RENDER_DEBUG_INFO_LABELS
void RecacheDebugLabels();
#endif
diff --git a/drape_frontend/gui/choose_position_mark.cpp b/drape_frontend/gui/choose_position_mark.cpp
index 1a5cd2b2d3..f1cb552ac0 100644
--- a/drape_frontend/gui/choose_position_mark.cpp
+++ b/drape_frontend/gui/choose_position_mark.cpp
@@ -4,19 +4,19 @@
#include "drape/utils/vertex_decl.hpp"
-#include "std/bind.hpp"
+#include
+#include
+
+using namespace std::placeholders;
namespace gui
{
-
namespace
{
-
struct ChoosePositionMarkVertex
{
ChoosePositionMarkVertex(glsl::vec2 const & position, glsl::vec2 const & texCoord)
- : m_position(position)
- , m_texCoord(texCoord)
+ : m_position(position), m_texCoord(texCoord)
{}
glsl::vec2 m_position;
@@ -40,8 +40,7 @@ public:
return TBase::Update(screen);
}
};
-
-} // namespace
+} // namespace
drape_ptr ChoosePositionMark::Draw(ref_ptr tex) const
{
@@ -82,16 +81,14 @@ drape_ptr ChoosePositionMark::Draw(ref_ptr te
provider.InitStream(0, info, make_ref(&vertexes));
m2::PointF const markSize = region.GetPixelSize();
- drape_ptr handle = make_unique_dp(EGuiHandle::GuiHandleChoosePositionMark,
- m_position.m_pixelPivot,
- markSize);
+ drape_ptr handle = make_unique_dp(
+ EGuiHandle::GuiHandleChoosePositionMark, m_position.m_pixelPivot, markSize);
drape_ptr renderer = make_unique_dp();
dp::Batcher batcher(dp::Batcher::IndexPerQuad, dp::Batcher::VertexPerQuad);
- dp::SessionGuard guard(batcher, bind(&ShapeRenderer::AddShape, renderer.get(), _1, _2));
- batcher.InsertTriangleStrip(state, make_ref(&provider), move(handle));
+ dp::SessionGuard guard(batcher, std::bind(&ShapeRenderer::AddShape, renderer.get(), _1, _2));
+ batcher.InsertTriangleStrip(state, make_ref(&provider), std::move(handle));
return renderer;
}
-
-} // namespace gui
+} // namespace gui
diff --git a/drape_frontend/gui/choose_position_mark.hpp b/drape_frontend/gui/choose_position_mark.hpp
index 6696df7df0..8965906e2b 100644
--- a/drape_frontend/gui/choose_position_mark.hpp
+++ b/drape_frontend/gui/choose_position_mark.hpp
@@ -1,18 +1,14 @@
#pragma once
-#include "shape.hpp"
+#include "drape_frontend/gui/shape.hpp"
namespace gui
{
-
class ChoosePositionMark : public Shape
{
public:
- ChoosePositionMark(gui::Position const & position)
- : Shape(position)
- {}
+ explicit ChoosePositionMark(gui::Position const & position) : Shape(position) {}
drape_ptr Draw(ref_ptr tex) const;
};
-
-} // namespace gui
+} // namespace gui
diff --git a/drape_frontend/gui/compass.cpp b/drape_frontend/gui/compass.cpp
index 3f0efdb133..d2ae879ea0 100644
--- a/drape_frontend/gui/compass.cpp
+++ b/drape_frontend/gui/compass.cpp
@@ -9,91 +9,93 @@
#include "drape/utils/vertex_decl.hpp"
-#include "std/bind.hpp"
+#include
+#include
+
+using namespace std::placeholders;
namespace gui
{
-
namespace
{
- struct CompassVertex
+struct CompassVertex
+{
+ CompassVertex(glsl::vec2 const & position, glsl::vec2 const & texCoord)
+ : m_position(position)
+ , m_texCoord(texCoord)
+ {}
+
+ glsl::vec2 m_position;
+ glsl::vec2 m_texCoord;
+};
+
+class CompassHandle : public TappableHandle
+{
+ using TBase = TappableHandle;
+ double const VisibleStartAngle = my::DegToRad(5.0);
+ double const VisibleEndAngle = my::DegToRad(355.0);
+
+public:
+ CompassHandle(uint32_t id, m2::PointF const & pivot, m2::PointF const & size,
+ Shape::TTapHandler const & tapHandler)
+ : TappableHandle(id, dp::Center, pivot, size)
+ , m_tapHandler(tapHandler)
+ , m_animation(false, 0.25)
+ {}
+
+ void OnTap() override
{
- CompassVertex(glsl::vec2 const & position, glsl::vec2 const & texCoord)
- : m_position(position)
- , m_texCoord(texCoord) {}
+ if (m_tapHandler != nullptr)
+ m_tapHandler();
+ }
- glsl::vec2 m_position;
- glsl::vec2 m_texCoord;
- };
-
- class CompassHandle : public TappableHandle
+ bool Update(ScreenBase const & screen) override
{
- using TBase = TappableHandle;
- double const VisibleStartAngle = my::DegToRad(5.0);
- double const VisibleEndAngle = my::DegToRad(355.0);
+ float angle = ang::AngleIn2PI(screen.GetAngle());
- public:
- CompassHandle(uint32_t id, m2::PointF const & pivot, m2::PointF const & size,
- Shape::TTapHandler const & tapHandler)
- : TappableHandle(id, dp::Center, pivot, size)
- , m_tapHandler(tapHandler)
- , m_animation(false, 0.25)
+ bool isVisiblePrev = IsVisible();
+ bool isVisibleAngle = angle > VisibleStartAngle && angle < VisibleEndAngle;
+
+ bool isVisible = isVisibleAngle || (isVisiblePrev && DrapeGui::Instance().IsInUserAction());
+
+ if (isVisible)
{
+ m_animation.ShowAnimated();
+ SetIsVisible(true);
+ }
+ else
+ m_animation.HideAnimated();
+
+ if (IsVisible())
+ {
+ TBase::Update(screen);
+
+ glsl::mat4 r = glsl::rotate(glsl::mat4(), angle, glsl::vec3(0.0, 0.0, 1.0));
+ glsl::mat4 m = glsl::translate(glsl::mat4(), glsl::vec3(m_pivot, 0.0));
+ m = glsl::transpose(m * r);
+ m_uniforms.SetMatrix4x4Value("modelView", glsl::value_ptr(m));
+ m_uniforms.SetFloatValue("u_opacity", static_cast(m_animation.GetT()));
}
- void OnTap() override
- {
- if (m_tapHandler != nullptr)
- m_tapHandler();
- }
+ if (m_animation.IsFinished())
+ SetIsVisible(isVisible);
- bool Update(ScreenBase const & screen) override
- {
- float angle = ang::AngleIn2PI(screen.GetAngle());
+ return true;
+ }
- bool isVisiblePrev = IsVisible();
- bool isVisibleAngle = angle > VisibleStartAngle && angle < VisibleEndAngle;
-
- bool isVisible = isVisibleAngle || (isVisiblePrev && DrapeGui::Instance().IsInUserAction());
-
- if (isVisible)
- {
- m_animation.ShowAnimated();
- SetIsVisible(true);
- }
- else
- m_animation.HideAnimated();
-
- if (IsVisible())
- {
- TBase::Update(screen);
-
- glsl::mat4 r = glsl::rotate(glsl::mat4(), angle, glsl::vec3(0.0, 0.0, 1.0));
- glsl::mat4 m = glsl::translate(glsl::mat4(), glsl::vec3(m_pivot, 0.0));
- m = glsl::transpose(m * r);
- m_uniforms.SetMatrix4x4Value("modelView", glsl::value_ptr(m));
- m_uniforms.SetFloatValue("u_opacity", m_animation.GetT());
- }
-
- if (m_animation.IsFinished())
- SetIsVisible(isVisible);
-
- return true;
- }
-
- private:
- Shape::TTapHandler m_tapHandler;
- df::ShowHideAnimation m_animation;
- };
-}
+private:
+ Shape::TTapHandler m_tapHandler;
+ df::ShowHideAnimation m_animation;
+};
+} // namespace
drape_ptr Compass::Draw(m2::PointF & compassSize, ref_ptr tex,
TTapHandler const & tapHandler) const
{
dp::TextureManager::SymbolRegion region;
tex->GetSymbolRegion("compass-image", region);
- glsl::vec2 halfSize = glsl::ToVec2(region.GetPixelSize() * 0.5f);
- m2::RectF texRect = region.GetTexRect();
+ auto const halfSize = glsl::ToVec2(region.GetPixelSize() * 0.5f);
+ auto const texRect = region.GetTexRect();
ASSERT_EQUAL(m_position.m_anchor, dp::Center, ());
CompassVertex vertexes[] =
@@ -133,10 +135,9 @@ drape_ptr Compass::Draw(m2::PointF & compassSize, ref_ptr renderer = make_unique_dp();
dp::Batcher batcher(dp::Batcher::IndexPerQuad, dp::Batcher::VertexPerQuad);
- dp::SessionGuard guard(batcher, bind(&ShapeRenderer::AddShape, renderer.get(), _1, _2));
- batcher.InsertTriangleStrip(state, make_ref(&provider), move(handle));
+ dp::SessionGuard guard(batcher, std::bind(&ShapeRenderer::AddShape, renderer.get(), _1, _2));
+ batcher.InsertTriangleStrip(state, make_ref(&provider), std::move(handle));
return renderer;
}
-
-}
+} // namespace gui
diff --git a/drape_frontend/gui/compass.hpp b/drape_frontend/gui/compass.hpp
index 1a93c74b2d..5f447431b6 100644
--- a/drape_frontend/gui/compass.hpp
+++ b/drape_frontend/gui/compass.hpp
@@ -1,19 +1,15 @@
#pragma once
-#include "shape.hpp"
+#include "drape_frontend/gui/shape.hpp"
namespace gui
{
-
class Compass : public Shape
{
public:
- Compass(gui::Position const & position)
- : Shape(position)
- {}
+ Compass(gui::Position const & position) : Shape(position) {}
drape_ptr Draw(m2::PointF & compassSize, ref_ptr tex,
TTapHandler const & tapHandler) const;
};
-
-}
+} // namespace gui
diff --git a/drape_frontend/gui/copyright_label.cpp b/drape_frontend/gui/copyright_label.cpp
index ec71c71ffa..15901df98e 100644
--- a/drape_frontend/gui/copyright_label.cpp
+++ b/drape_frontend/gui/copyright_label.cpp
@@ -8,65 +8,69 @@
#include "base/timer.hpp"
-#include "std/bind.hpp"
+#include
+#include
+
+using namespace std::placeholders;
namespace gui
{
-
namespace
{
- double const kCopyrightVisibleTime = 2.0f;
- double const kCopyrightHideTime = 0.25f;
+double const kCopyrightVisibleTime = 2.0f;
+double const kCopyrightHideTime = 0.25f;
- class CopyrightHandle : public StaticLabelHandle
+class CopyrightHandle : public StaticLabelHandle
+{
+ using TBase = StaticLabelHandle;
+
+public:
+ CopyrightHandle(uint32_t id, ref_ptr textureManager,
+ dp::Anchor anchor, m2::PointF const & pivot,
+ m2::PointF const & size, TAlphabet const & alphabet)
+ : TBase(id, textureManager, anchor, pivot, size, alphabet)
{
- using TBase = StaticLabelHandle;
+ SetIsVisible(true);
+ }
- public:
- CopyrightHandle(uint32_t id, ref_ptr textureManager,
- dp::Anchor anchor, m2::PointF const & pivot,
- m2::PointF const & size, TAlphabet const & alphabet)
- : TBase(id, textureManager, anchor, pivot, size, alphabet)
+ bool Update(ScreenBase const & screen) override
+ {
+ if (!IsVisible())
+ return false;
+
+ if (!TBase::Update(screen))
+ return false;
+
+ if (!DrapeGui::Instance().IsCopyrightActive())
{
- SetIsVisible(true);
+ SetIsVisible(false);
+ return false;
}
- bool Update(ScreenBase const & screen) override
+ if (m_animation == nullptr)
{
- if (!IsVisible())
- return false;
-
- if (!TBase::Update(screen))
- return false;
-
- if (!DrapeGui::Instance().IsCopyrightActive())
- {
- SetIsVisible(false);
- return false;
- }
-
- if (m_animation == nullptr)
- m_animation.reset(new df::OpacityAnimation(kCopyrightHideTime, kCopyrightVisibleTime, 1.0f, 0.0f));
- else if (m_animation->IsFinished())
- {
- DrapeGui::Instance().DeactivateCopyright();
- SetIsVisible(false);
- }
-
- m_uniforms.SetFloatValue("u_opacity", m_animation->GetOpacity());
-
- return true;
+ m_animation = make_unique_dp(kCopyrightHideTime,
+ kCopyrightVisibleTime, 1.0f, 0.0f);
+ }
+ else if (m_animation->IsFinished())
+ {
+ DrapeGui::Instance().DeactivateCopyright();
+ SetIsVisible(false);
}
- private:
- drape_ptr m_animation;
- };
-}
+ m_uniforms.SetFloatValue("u_opacity", static_cast(m_animation->GetOpacity()));
+
+ return true;
+ }
+
+private:
+ drape_ptr m_animation;
+};
+} // namespace
CopyrightLabel::CopyrightLabel(Position const & position)
: TBase(position)
-{
-}
+{}
drape_ptr CopyrightLabel::Draw(m2::PointF & size, ref_ptr tex) const
{
@@ -78,9 +82,9 @@ drape_ptr CopyrightLabel::Draw(m2::PointF & size, ref_ptr(result.m_buffer.size());
+ auto const vertexCount = static_cast(result.m_buffer.size());
ASSERT(vertexCount % dp::Batcher::VertexPerQuad == 0, ());
- uint32_t indexCount = dp::Batcher::IndexPerQuad * vertexCount / dp::Batcher::VertexPerQuad;
+ auto const indexCount = dp::Batcher::IndexPerQuad * vertexCount / dp::Batcher::VertexPerQuad;
size = m2::PointF(result.m_boundRect.SizeX(), result.m_boundRect.SizeY());
drape_ptr handle = make_unique_dp(EGuiHandle::GuiHandleCopyright,
@@ -90,11 +94,10 @@ drape_ptr CopyrightLabel::Draw(m2::PointF & size, ref_ptr renderer = make_unique_dp();
dp::Batcher batcher(indexCount, vertexCount);
- dp::SessionGuard guard(batcher, bind(&ShapeRenderer::AddShape, renderer.get(), _1, _2));
+ dp::SessionGuard guard(batcher, std::bind(&ShapeRenderer::AddShape, renderer.get(), _1, _2));
batcher.InsertListOfStrip(result.m_state, make_ref(&provider),
- move(handle), dp::Batcher::VertexPerQuad);
+ std::move(handle), dp::Batcher::VertexPerQuad);
return renderer;
}
-
-}
+} // namespace gui
diff --git a/drape_frontend/gui/copyright_label.hpp b/drape_frontend/gui/copyright_label.hpp
index 9345b19849..856eca87df 100644
--- a/drape_frontend/gui/copyright_label.hpp
+++ b/drape_frontend/gui/copyright_label.hpp
@@ -1,16 +1,15 @@
#pragma once
-#include "shape.hpp"
+#include "drape_frontend/gui/shape.hpp"
namespace gui
{
-
class CopyrightLabel : public Shape
{
using TBase = Shape;
+
public:
- CopyrightLabel(gui::Position const & position);
+ explicit CopyrightLabel(gui::Position const & position);
drape_ptr Draw(m2::PointF & size, ref_ptr tex) const;
};
-
-}
+} // namespace gui
diff --git a/drape_frontend/gui/debug_label.cpp b/drape_frontend/gui/debug_label.cpp
index 7b8c5116ef..f9313d57e0 100644
--- a/drape_frontend/gui/debug_label.cpp
+++ b/drape_frontend/gui/debug_label.cpp
@@ -1,12 +1,15 @@
-#include "debug_label.hpp"
+#include "drape_frontend/gui/debug_label.hpp"
-#include "drape_gui.hpp"
+#include "drape_frontend/gui/drape_gui.hpp"
-#include "std/bind.hpp"
+#include
+#include
+#include
+
+using namespace std::placeholders;
namespace gui
{
-
class DebugLabelHandle : public MutableLabelHandle
{
using TBase = MutableLabelHandle;
@@ -22,7 +25,7 @@ public:
bool Update(ScreenBase const & screen) override
{
- string content;
+ std::string content;
bool const isVisible = m_onUpdateFn(screen, content);
SetIsVisible(isVisible);
@@ -35,16 +38,17 @@ private:
TUpdateDebugLabelFn m_onUpdateFn;
};
-void AddSymbols(string const & str, set & symbols)
+void AddSymbols(std::string const & str, std::set & symbols)
{
for (size_t i = 0, sz = str.length(); i < sz; ++i)
symbols.insert(str[i]);
}
-void DebugInfoLabels::AddLabel(ref_ptr tex, string const & caption, TUpdateDebugLabelFn const & onUpdateFn)
+void DebugInfoLabels::AddLabel(ref_ptr tex, std::string const & caption,
+ TUpdateDebugLabelFn const & onUpdateFn)
{
- string alphabet;
- set symbols;
+ std::string alphabet;
+ std::set symbols;
AddSymbols(caption, symbols);
AddSymbols("0123456789.-e", symbols);
@@ -61,11 +65,10 @@ void DebugInfoLabels::AddLabel(ref_ptr tex, string const & c
params.m_font.m_size *= 1.2;
params.m_pivot = m_position.m_pixelPivot;
-#ifdef RENRER_DEBUG_INFO_LABELS
+#ifdef RENDER_DEBUG_INFO_LABELS
uint32_t const id = GuiHandleDebugLabel + m_labelsCount;
- params.m_handleCreator = [id, onUpdateFn, tex](dp::Anchor anchor, m2::PointF const & pivot)
- {
+ params.m_handleCreator = [id, onUpdateFn, tex](dp::Anchor anchor, m2::PointF const & pivot) {
return make_unique_dp(id, anchor, pivot, tex, onUpdateFn);
};
#endif
@@ -82,7 +85,8 @@ drape_ptr DebugInfoLabels::Draw(ref_ptr tex)
for (auto & params : m_labelsParams)
{
params.m_pivot.y = pos.y;
- m2::PointF textSize = MutableLabelDrawer::Draw(params, tex, bind(&ShapeRenderer::AddShape, renderer.get(), _1, _2));
+ m2::PointF textSize = MutableLabelDrawer::Draw(
+ params, tex, std::bind(&ShapeRenderer::AddShape, renderer.get(), _1, _2));
pos.y += 2 * textSize.y;
}
@@ -90,5 +94,4 @@ drape_ptr DebugInfoLabels::Draw(ref_ptr tex)
return renderer;
}
-
-} // namespace gui
+} // namespace gui
diff --git a/drape_frontend/gui/debug_label.hpp b/drape_frontend/gui/debug_label.hpp
index b4cf4917cb..5c9fdadb8b 100644
--- a/drape_frontend/gui/debug_label.hpp
+++ b/drape_frontend/gui/debug_label.hpp
@@ -1,28 +1,27 @@
#pragma once
-#include "gui_text.hpp"
-#include "shape.hpp"
+#include "drape_frontend/gui/gui_text.hpp"
+#include "drape_frontend/gui/shape.hpp"
-#include "std/vector.hpp"
+#include
+#include
+#include
namespace gui
{
-
-using TUpdateDebugLabelFn = function;
+using TUpdateDebugLabelFn = std::function;
class DebugInfoLabels : public Shape
{
public:
- DebugInfoLabels(gui::Position const & position)
- : Shape(position)
- {}
+ explicit DebugInfoLabels(gui::Position const & position) : Shape(position) {}
- void AddLabel(ref_ptr tex, string const & caption, TUpdateDebugLabelFn const & onUpdateFn);
+ void AddLabel(ref_ptr tex, std::string const & caption,
+ TUpdateDebugLabelFn const & onUpdateFn);
drape_ptr Draw(ref_ptr tex);
private:
- vector m_labelsParams;
+ std::vector m_labelsParams;
uint32_t m_labelsCount = 0;
};
-
-} // namespace gui
+} // namespace gui
diff --git a/drape_frontend/gui/gui_text.cpp b/drape_frontend/gui/gui_text.cpp
index ba0efd725c..b0cc0f7189 100644
--- a/drape_frontend/gui/gui_text.cpp
+++ b/drape_frontend/gui/gui_text.cpp
@@ -9,16 +9,14 @@
#include "drape/bidi.hpp"
#include "drape/glsl_func.hpp"
-#include "std/algorithm.hpp"
-#include "std/type_traits.hpp"
-#include "std/unique_ptr.hpp"
+#include
+#include
+#include
namespace gui
{
-
namespace
{
-
glsl::vec2 GetNormalsAndMask(dp::TextureManager::GlyphRegion const & glyph, float textRatio,
array & normals, array & maskTexCoord)
{
@@ -44,7 +42,8 @@ glsl::vec2 GetNormalsAndMask(dp::TextureManager::GlyphRegion const & glyph, floa
return glsl::vec2(xOffset, yOffset);
}
-void FillCommonDecl(dp::BindingDecl & decl, string const & name, uint8_t compCount, uint8_t stride, uint8_t offset)
+void FillCommonDecl(dp::BindingDecl & decl, std::string const & name, uint8_t compCount,
+ uint8_t stride, uint8_t offset)
{
decl.m_attributeName = name;
decl.m_componentCount = compCount;
@@ -77,8 +76,7 @@ void FillMaskDecl(dp::BindingDecl & decl, uint8_t stride, uint8_t offset)
{
FillCommonDecl(decl, "a_maskTexCoord", 2, stride, offset);
}
-
-}
+} // namespace
dp::BindingInfo const & StaticLabel::Vertex::GetBindingInfo()
{
@@ -111,14 +109,14 @@ StaticLabel::LabelResult::LabelResult()
char const * StaticLabel::DefaultDelim = "\n";
-void StaticLabel::CacheStaticText(string const & text, char const * delim,
+void StaticLabel::CacheStaticText(std::string const & text, char const * delim,
dp::Anchor anchor, dp::FontDecl const & font,
ref_ptr mng, LabelResult & result)
{
ASSERT(!text.empty(), ());
dp::TextureManager::TMultilineText textParts;
- strings::Tokenize(text, delim, [&textParts](string const & part)
+ strings::Tokenize(text, delim, [&textParts](std::string const & part)
{
textParts.push_back(bidi::log2vis(strings::MakeUniString(part)));
});
@@ -157,7 +155,8 @@ void StaticLabel::CacheStaticText(string const & text, char const * delim,
glsl::vec2 outlineTex = glsl::ToVec2(outline.GetTexRect().Center());
df::VisualParams const & vparams = df::VisualParams::Instance();
- float const textRatio = font.m_size * vparams.GetVisualScale() / vparams.GetGlyphBaseSize();
+ auto const textRatio = font.m_size * static_cast(vparams.GetVisualScale()) /
+ vparams.GetGlyphBaseSize();
buffer_vector lineLengths;
lineLengths.reserve(buffers.size());
@@ -297,12 +296,13 @@ void MutableLabel::SetMaxLength(uint16_t maxLength)
m_maxLength = maxLength;
}
-ref_ptr MutableLabel::SetAlphabet(string const & alphabet, ref_ptr mng)
+ref_ptr MutableLabel::SetAlphabet(std::string const & alphabet,
+ ref_ptr mng)
{
strings::UniString str = strings::MakeUniString(alphabet + ".");
sort(str.begin(), str.end());
strings::UniString::iterator it = unique(str.begin(), str.end());
- str.resize(distance(str.begin(), it));
+ str.resize(std::distance(str.begin(), it));
dp::TextureManager::TGlyphsBuffer buffer;
mng->GetGlyphRegions(str, dp::GlyphManager::kDynamicGlyphSize, buffer);
@@ -310,13 +310,14 @@ ref_ptr MutableLabel::SetAlphabet(string const & alphabet, ref_ptr<
ASSERT_EQUAL(str.size(), buffer.size(), ());
m_alphabet.resize(str.size());
- transform(str.begin(), str.end(), buffer.begin(), m_alphabet.begin(),
- [this](strings::UniChar const & c, dp::TextureManager::GlyphRegion const & r)
+ std::transform(str.begin(), str.end(), buffer.begin(), m_alphabet.begin(),
+ [](strings::UniChar const & c, dp::TextureManager::GlyphRegion const & r)
{
- return make_pair(c, r);
+ return std::make_pair(c, r);
});
- sort(m_alphabet.begin(), m_alphabet.end(), [](TAlphabetNode const & n1, TAlphabetNode const & n2)
+ std::sort(m_alphabet.begin(), m_alphabet.end(),
+ [](TAlphabetNode const & n1, TAlphabetNode const & n2)
{
return n1.first < n2.first;
});
@@ -327,10 +328,11 @@ ref_ptr MutableLabel::SetAlphabet(string const & alphabet, ref_ptr<
void MutableLabel::Precache(PrecacheParams const & params, PrecacheResult & result,
ref_ptr mng)
{
- SetMaxLength(params.m_maxLength);
+ SetMaxLength(static_cast(params.m_maxLength));
result.m_state.SetMaskTexture(SetAlphabet(params.m_alphabet, mng));
df::VisualParams const & vparams = df::VisualParams::Instance();
- m_textRatio = params.m_font.m_size * vparams.GetVisualScale() / vparams.GetGlyphBaseSize();
+ m_textRatio = params.m_font.m_size * static_cast(vparams.GetVisualScale()) /
+ vparams.GetGlyphBaseSize();
dp::TextureManager::ColorRegion color;
dp::TextureManager::ColorRegion outlineColor;
@@ -342,7 +344,7 @@ void MutableLabel::Precache(PrecacheParams const & params, PrecacheResult & resu
glsl::vec2 colorTex = glsl::ToVec2(color.GetTexRect().Center());
glsl::vec2 outlineTex = glsl::ToVec2(outlineColor.GetTexRect().Center());
- size_t vertexCount = 4 * m_maxLength;
+ auto const vertexCount = static_cast(4 * m_maxLength);
result.m_buffer.resize(vertexCount,
StaticVertex(glsl::vec3(0.0, 0.0, 0.0), colorTex, outlineTex));
@@ -356,23 +358,23 @@ void MutableLabel::Precache(PrecacheParams const & params, PrecacheResult & resu
depth += 10.0f;
}
- uint32_t maxGlyphWidth = 0.0;
- uint32_t maxGlyphHeight = 0.0;
+ uint32_t maxGlyphWidth = 0;
+ uint32_t maxGlyphHeight = 0;
for (auto node : m_alphabet)
{
dp::TextureManager::GlyphRegion const & reg = node.second;
m2::PointU pixelSize(reg.GetPixelSize());
- maxGlyphWidth = max(maxGlyphWidth, pixelSize.x);
- maxGlyphHeight = max(maxGlyphHeight, pixelSize.y);
+ maxGlyphWidth = std::max(maxGlyphWidth, pixelSize.x);
+ maxGlyphHeight = std::max(maxGlyphHeight, pixelSize.y);
}
result.m_maxPixelSize = m2::PointF(m_maxLength * maxGlyphWidth, maxGlyphHeight);
}
-void MutableLabel::SetText(LabelResult & result, string text) const
+void MutableLabel::SetText(LabelResult & result, std::string text) const
{
if (text.size() > m_maxLength)
- text = text.erase(m_maxLength - 3) + "...";
+ text = text.erase(static_cast(m_maxLength - 3)) + "...";
strings::UniString uniText = bidi::log2vis(strings::MakeUniString(text));
@@ -383,7 +385,8 @@ void MutableLabel::SetText(LabelResult & result, string text) const
for (size_t i = 0; i < uniText.size(); ++i)
{
strings::UniChar c = uniText[i];
- TAlphabet::const_iterator it = find_if(m_alphabet.begin(), m_alphabet.end(), [&c](TAlphabetNode const & n)
+ auto const it = std::find_if(m_alphabet.begin(), m_alphabet.end(),
+ [&c](TAlphabetNode const & n)
{
return n.first == c;
});
@@ -431,7 +434,7 @@ void MutableLabel::SetText(LabelResult & result, string text) const
m2::PointF MutableLabel::GetAvarageSize() const
{
float h = 0, w = 0;
- for (TAlphabetNode const & node : m_alphabet)
+ for (auto const & node : m_alphabet)
{
dp::TextureManager::GlyphRegion const & reg = node.second;
m2::PointF size = reg.GetPixelSize() * m_textRatio;
@@ -468,9 +471,11 @@ void MutableLabelHandle::GetAttributeMutation(ref_ptrSetText(result, m_content);
- m_size = m2::PointF(result.m_boundRect.SizeX(), result.m_boundRect.SizeY());
+ m_size = m2::PointF(static_cast(result.m_boundRect.SizeX()),
+ static_cast(result.m_boundRect.SizeY()));
- uint32_t byteCount = static_cast(result.m_buffer.size()) * sizeof(MutableLabel::DynamicVertex);
+ uint32_t byteCount =
+ static_cast(result.m_buffer.size()) * sizeof(MutableLabel::DynamicVertex);
MutableLabel::DynamicVertex * dataPointer =
reinterpret_cast(mutator->AllocateMutationBuffer(byteCount));
@@ -493,7 +498,8 @@ bool MutableLabelHandle::Update(ScreenBase const & screen)
for (auto const & node : m_textView->GetAlphabet())
alphabetStr.push_back(node.first);
- m_glyphsReady = m_textureManager->AreGlyphsReady(alphabetStr, dp::GlyphManager::kDynamicGlyphSize);
+ m_glyphsReady = m_textureManager->AreGlyphsReady(alphabetStr,
+ dp::GlyphManager::kDynamicGlyphSize);
}
if (!m_glyphsReady)
@@ -512,18 +518,21 @@ ref_ptr MutableLabelHandle::GetTextView()
return make_ref(m_textView);
}
-void MutableLabelHandle::UpdateSize(m2::PointF const & size) { m_size = size; }
+void MutableLabelHandle::UpdateSize(m2::PointF const & size)
+{
+ m_size = size;
+}
-void MutableLabelHandle::SetContent(string && content)
+void MutableLabelHandle::SetContent(std::string && content)
{
if (m_content != content)
{
m_isContentDirty = true;
- m_content = move(content);
+ m_content = std::move(content);
}
}
-void MutableLabelHandle::SetContent(string const & content)
+void MutableLabelHandle::SetContent(std::string const & content)
{
if (m_content != content)
{
@@ -592,5 +601,4 @@ bool StaticLabelHandle::Update(ScreenBase const & screen)
return TBase::Update(screen);
}
-
-}
+} // namespace gui
diff --git a/drape_frontend/gui/gui_text.hpp b/drape_frontend/gui/gui_text.hpp
index 1d1e20c330..d35a81c3ae 100644
--- a/drape_frontend/gui/gui_text.hpp
+++ b/drape_frontend/gui/gui_text.hpp
@@ -8,14 +8,16 @@
#include "drape/glsl_types.hpp"
#include "drape/texture_manager.hpp"
-#include "std/cstdint.hpp"
-#include "std/unordered_set.hpp"
-#include "std/utility.hpp"
+#include
+#include
+#include
+#include
+#include
+#include
namespace gui
{
-
-using TAlphabet = unordered_set;
+using TAlphabet = std::unordered_set;
class StaticLabel
{
@@ -31,8 +33,7 @@ public:
, m_colorTexCoord(color)
, m_outlineColorTexCoord(outline)
, m_maskTexCoord(mask)
- {
- }
+ {}
static dp::BindingInfo const & GetBindingInfo();
@@ -53,9 +54,9 @@ public:
TAlphabet m_alphabet;
};
- static void CacheStaticText(string const & text, char const * delim,
- dp::Anchor anchor, dp::FontDecl const & font,
- ref_ptr mng, LabelResult & result);
+ static void CacheStaticText(std::string const & text, char const * delim, dp::Anchor anchor,
+ dp::FontDecl const & font, ref_ptr mng,
+ LabelResult & result);
};
class MutableLabel
@@ -64,12 +65,10 @@ public:
struct StaticVertex
{
StaticVertex() = default;
- StaticVertex(glsl::vec3 const & position, glsl::vec2 const & color, glsl::vec2 const & outlineColor)
- : m_position(position)
- , m_color(color)
- , m_outline(outlineColor)
- {
- }
+ StaticVertex(glsl::vec3 const & position, glsl::vec2 const & color,
+ glsl::vec2 const & outlineColor)
+ : m_position(position), m_color(color), m_outline(outlineColor)
+ {}
static dp::BindingInfo const & GetBindingInfo();
@@ -82,10 +81,8 @@ public:
{
DynamicVertex() = default;
DynamicVertex(glsl::vec2 const & normal, glsl::vec2 const & mask)
- : m_normal(normal)
- , m_maskTexCoord(mask)
- {
- }
+ : m_normal(normal), m_maskTexCoord(mask)
+ {}
static dp::BindingInfo const & GetBindingInfo();
@@ -93,11 +90,11 @@ public:
glsl::vec2 m_maskTexCoord;
};
- MutableLabel(dp::Anchor anchor);
+ explicit MutableLabel(dp::Anchor anchor);
struct PrecacheParams
{
- string m_alphabet;
+ std::string m_alphabet;
size_t m_maxLength;
dp::FontDecl m_font;
};
@@ -120,17 +117,17 @@ public:
void Precache(PrecacheParams const & params, PrecacheResult & result,
ref_ptr mng);
- void SetText(LabelResult & result, string text) const;
+ void SetText(LabelResult & result, std::string text) const;
m2::PointF GetAvarageSize() const;
- using TAlphabetNode = pair;
- using TAlphabet = vector;
+ using TAlphabetNode = std::pair;
+ using TAlphabet = std::vector;
TAlphabet const & GetAlphabet() const { return m_alphabet; }
private:
void SetMaxLength(uint16_t maxLength);
- ref_ptr SetAlphabet(string const & alphabet, ref_ptr mng);
+ ref_ptr SetAlphabet(std::string const & alphabet, ref_ptr mng);
private:
dp::Anchor m_anchor;
@@ -158,14 +155,14 @@ public:
void UpdateSize(m2::PointF const & size);
protected:
- void SetContent(string && content);
- void SetContent(string const & content);
+ void SetContent(std::string && content);
+ void SetContent(std::string const & content);
void SetTextureManager(ref_ptr textures);
private:
drape_ptr m_textView;
mutable bool m_isContentDirty;
- string m_content;
+ std::string m_content;
ref_ptr m_textureManager;
bool m_glyphsReady;
};
@@ -174,19 +171,19 @@ class MutableLabelDrawer
{
public:
using TCreatoreResult = drape_ptr;
- using THandleCreator = function;
+ using THandleCreator = std::function;
struct Params
{
dp::Anchor m_anchor;
dp::FontDecl m_font;
m2::PointF m_pivot;
- string m_alphabet;
+ std::string m_alphabet;
uint32_t m_maxLength;
THandleCreator m_handleCreator;
};
- /// return maximum pixel size
+ // Return maximum pixel size.
static m2::PointF Draw(Params const & params, ref_ptr mng,
dp::Batcher::TFlushFn const & flushFn);
};
@@ -196,10 +193,8 @@ class StaticLabelHandle : public Handle
using TBase = Handle;
public:
- StaticLabelHandle(uint32_t id, ref_ptr textureManager,
- dp::Anchor anchor, m2::PointF const & pivot,
- m2::PointF const & size,
- TAlphabet const & alphabet);
+ StaticLabelHandle(uint32_t id, ref_ptr textureManager, dp::Anchor anchor,
+ m2::PointF const & pivot, m2::PointF const & size, TAlphabet const & alphabet);
bool Update(ScreenBase const & screen) override;
@@ -208,5 +203,4 @@ private:
ref_ptr m_textureManager;
bool m_glyphsReady;
};
-
-}
+} // namespace gui
diff --git a/drape_frontend/gui/layer_render.cpp b/drape_frontend/gui/layer_render.cpp
index 499ad82905..26756d02e6 100644
--- a/drape_frontend/gui/layer_render.cpp
+++ b/drape_frontend/gui/layer_render.cpp
@@ -1,12 +1,13 @@
-#include "choose_position_mark.hpp"
-#include "compass.hpp"
-#include "copyright_label.hpp"
-#include "debug_label.hpp"
-#include "drape_gui.hpp"
-#include "gui_text.hpp"
-#include "layer_render.hpp"
-#include "ruler.hpp"
-#include "ruler_helper.hpp"
+#include "drape_frontend/gui/choose_position_mark.hpp"
+#include "drape_frontend/gui/compass.hpp"
+#include "drape_frontend/gui/copyright_label.hpp"
+#include "drape_frontend/gui/debug_label.hpp"
+#include "drape_frontend/gui/drape_gui.hpp"
+#include "drape_frontend/gui/gui_text.hpp"
+#include "drape_frontend/gui/layer_render.hpp"
+#include "drape_frontend/gui/ruler.hpp"
+#include "drape_frontend/gui/ruler_helper.hpp"
+#include "drape_frontend/gui/watermark.hpp"
#include "drape_frontend/visual_params.hpp"
@@ -18,11 +19,15 @@
#include "base/stl_add.hpp"
-#include "std/bind.hpp"
+#include
+#include
+#include
+#include
+
+using namespace std::placeholders;
namespace gui
{
-
LayerRenderer::~LayerRenderer()
{
DestroyRenderers();
@@ -30,7 +35,7 @@ LayerRenderer::~LayerRenderer()
void LayerRenderer::Build(ref_ptr mng)
{
- for (TRenderers::value_type & r : m_renderers)
+ for (auto & r : m_renderers)
r.second->Build(mng);
}
@@ -43,7 +48,7 @@ void LayerRenderer::Render(ref_ptr mng, bool routingActiv
DrapeGui::GetRulerHelper().Update(screen);
}
- for (TRenderers::value_type & r : m_renderers)
+ for (auto & r : m_renderers)
{
if (routingActive && (r.first == gui::WIDGET_COMPASS || r.first == gui::WIDGET_RULER))
continue;
@@ -55,14 +60,14 @@ void LayerRenderer::Render(ref_ptr mng, bool routingActiv
void LayerRenderer::Merge(ref_ptr other)
{
bool activeOverlayFound = false;
- for (TRenderers::value_type & r : other->m_renderers)
+ for (auto & r : other->m_renderers)
{
- TRenderers::iterator it = m_renderers.find(r.first);
+ auto const it = m_renderers.find(r.first);
if (it != m_renderers.end())
{
auto newActiveOverlay = r.second->FindHandle(m_activeOverlayId);
bool const updateActive = (m_activeOverlay != nullptr && newActiveOverlay != nullptr);
- it->second = move(r.second);
+ it->second = std::move(r.second);
if (!activeOverlayFound && updateActive)
{
activeOverlayFound = true;
@@ -73,16 +78,15 @@ void LayerRenderer::Merge(ref_ptr other)
}
else
{
- m_renderers.insert(make_pair(r.first, move(r.second)));
+ m_renderers.insert(std::make_pair(r.first, std::move(r.second)));
}
}
-
other->m_renderers.clear();
}
void LayerRenderer::SetLayout(TWidgetsLayoutInfo const & info)
{
- for (auto node : info)
+ for (auto const & node : info)
{
auto renderer = m_renderers.find(node.first);
if (renderer != m_renderers.end())
@@ -100,12 +104,12 @@ void LayerRenderer::AddShapeRenderer(EWidget widget, drape_ptr &&
if (shape == nullptr)
return;
- VERIFY(m_renderers.insert(make_pair(widget, move(shape))).second, ());
+ VERIFY(m_renderers.insert(std::make_pair(widget, std::move(shape))).second, ());
}
bool LayerRenderer::OnTouchDown(m2::RectD const & touchArea)
{
- for (TRenderers::value_type & r : m_renderers)
+ for (auto & r : m_renderers)
{
m_activeOverlay = r.second->ProcessTapEvent(touchArea);
if (m_activeOverlay != nullptr)
@@ -150,28 +154,26 @@ bool LayerRenderer::HasWidget(EWidget widget) const
namespace
{
-
class ScaleLabelHandle : public MutableLabelHandle
{
using TBase = MutableLabelHandle;
public:
ScaleLabelHandle(uint32_t id, ref_ptr textures)
- : TBase(id, dp::LeftBottom, m2::PointF::Zero(), textures)
- , m_scale(0)
+ : TBase(id, dp::LeftBottom, m2::PointF::Zero(), textures), m_scale(0)
{
SetIsVisible(true);
}
bool Update(ScreenBase const & screen) override
{
- int newScale = df::GetDrawTileScale(screen);
+ int const newScale = df::GetDrawTileScale(screen);
if (m_scale != newScale)
{
m_scale = newScale;
SetContent("Scale : " + strings::to_string(m_scale));
}
- float vs = df::VisualParams::Instance().GetVisualScale();
+ auto const vs = static_cast(df::VisualParams::Instance().GetVisualScale());
m2::PointF offset(10.0f * vs, 30.0f * vs);
SetPivot(glsl::ToVec2(m2::PointF(screen.PixelRect().LeftBottom()) + offset));
@@ -181,22 +183,22 @@ public:
private:
int m_scale;
};
+} // namespace
-} // namespace
-
-drape_ptr LayerCacher::RecacheWidgets(TWidgetsInitInfo const & initInfo, ref_ptr textures)
+drape_ptr LayerCacher::RecacheWidgets(TWidgetsInitInfo const & initInfo,
+ ref_ptr textures)
{
- using TCacheShape = function renderer, ref_ptr textures)>;
- static map cacheFunctions
- {
- make_pair(WIDGET_COMPASS, bind(&LayerCacher::CacheCompass, this, _1, _2, _3)),
- make_pair(WIDGET_RULER, bind(&LayerCacher::CacheRuler, this, _1, _2, _3)),
- make_pair(WIDGET_COPYRIGHT, bind(&LayerCacher::CacheCopyright, this, _1, _2, _3)),
- make_pair(WIDGET_SCALE_LABEL, bind(&LayerCacher::CacheScaleLabel, this, _1, _2, _3))
- };
+ using TCacheShape = std::function renderer,
+ ref_ptr textures)>;
+ static std::map cacheFunctions{
+ std::make_pair(WIDGET_COMPASS, std::bind(&LayerCacher::CacheCompass, this, _1, _2, _3)),
+ std::make_pair(WIDGET_RULER, std::bind(&LayerCacher::CacheRuler, this, _1, _2, _3)),
+ std::make_pair(WIDGET_COPYRIGHT, std::bind(&LayerCacher::CacheCopyright, this, _1, _2, _3)),
+ std::make_pair(WIDGET_SCALE_LABEL, std::bind(&LayerCacher::CacheScaleLabel, this, _1, _2, _3)),
+ std::make_pair(WIDGET_WATERMARK, std::bind(&LayerCacher::CacheWatermark, this, _1, _2, _3))};
drape_ptr renderer = make_unique_dp();
- for (auto node : initInfo)
+ for (auto const & node : initInfo)
{
auto cacheFunction = cacheFunctions.find(node.first);
if (cacheFunction != cacheFunctions.end())
@@ -223,12 +225,12 @@ drape_ptr LayerCacher::RecacheChoosePositionMark(ref_ptr LayerCacher::RecacheDebugLabels(ref_ptr textures)
{
drape_ptr renderer = make_unique_dp();
- float const vs = df::VisualParams::Instance().GetVisualScale();
+ float const vs = static_cast(df::VisualParams::Instance().GetVisualScale());
DebugInfoLabels debugLabels = DebugInfoLabels(Position(m2::PointF(10.0f * vs, 50.0f * vs), dp::Center));
debugLabels.AddLabel(textures, "visible: km2, readed: km2, ratio:",
@@ -256,8 +258,8 @@ drape_ptr LayerCacher::RecacheDebugLabels(ref_ptr LayerCacher::RecacheDebugLabels(ref_ptr LayerCacher::RecacheDebugLabels(ref_ptr LayerCacher::RecacheDebugLabels(ref_ptr bool
{
ostringstream out;
- out << fixed << setprecision(2)
+ out << std::fixed << std::setprecision(2)
<< "angle: " << screen.GetRotationAngle() * 180.0 / math::pi;
content.assign(out.str());
return true;
@@ -322,10 +325,10 @@ m2::PointF LayerCacher::CacheCompass(Position const & position, ref_ptr shape = compass.Draw(compassSize, textures, bind(&DrapeGui::CallOnCompassTappedHandler,
- &DrapeGui::Instance()));
+ drape_ptr shape = compass.Draw(compassSize, textures,
+ std::bind(&DrapeGui::CallOnCompassTappedHandler, &DrapeGui::Instance()));
- renderer->AddShapeRenderer(WIDGET_COMPASS, move(shape));
+ renderer->AddShapeRenderer(WIDGET_COMPASS, std::move(shape));
return compassSize;
}
@@ -334,8 +337,7 @@ m2::PointF LayerCacher::CacheRuler(Position const & position, ref_ptr textures)
{
m2::PointF rulerSize;
- renderer->AddShapeRenderer(WIDGET_RULER,
- Ruler(position).Draw(rulerSize, textures));
+ renderer->AddShapeRenderer(WIDGET_RULER, Ruler(position).Draw(rulerSize, textures));
return rulerSize;
}
@@ -343,13 +345,12 @@ m2::PointF LayerCacher::CacheCopyright(Position const & position, ref_ptr textures)
{
m2::PointF size;
- renderer->AddShapeRenderer(WIDGET_COPYRIGHT,
- CopyrightLabel(position).Draw(size, textures));
-
+ renderer->AddShapeRenderer(WIDGET_COPYRIGHT, CopyrightLabel(position).Draw(size, textures));
return size;
}
-m2::PointF LayerCacher::CacheScaleLabel(Position const & position, ref_ptr renderer, ref_ptr textures)
+m2::PointF LayerCacher::CacheScaleLabel(Position const & position, ref_ptr renderer,
+ ref_ptr textures)
{
MutableLabelDrawer::Params params;
params.m_alphabet = "Scale: 1234567890";
@@ -363,10 +364,18 @@ m2::PointF LayerCacher::CacheScaleLabel(Position const & position, ref_ptr scaleRenderer = make_unique_dp();
- m2::PointF size = MutableLabelDrawer::Draw(params, textures, bind(&ShapeRenderer::AddShape, scaleRenderer.get(), _1, _2));
+ m2::PointF size = MutableLabelDrawer::Draw(params, textures,
+ std::bind(&ShapeRenderer::AddShape, scaleRenderer.get(), _1, _2));
- renderer->AddShapeRenderer(WIDGET_SCALE_LABEL, move(scaleRenderer));
+ renderer->AddShapeRenderer(WIDGET_SCALE_LABEL, std::move(scaleRenderer));
return size;
}
-} // namespace gui
+m2::PointF LayerCacher::CacheWatermark(Position const & position, ref_ptr renderer,
+ ref_ptr textures)
+{
+ m2::PointF size;
+ renderer->AddShapeRenderer(WIDGET_WATERMARK, Watermark(position).Draw(size, textures));
+ return size;
+}
+} // namespace gui
diff --git a/drape_frontend/gui/layer_render.hpp b/drape_frontend/gui/layer_render.hpp
index 320b88e9aa..8391e9f5aa 100644
--- a/drape_frontend/gui/layer_render.hpp
+++ b/drape_frontend/gui/layer_render.hpp
@@ -1,29 +1,23 @@
#pragma once
-#include "skin.hpp"
-#include "shape.hpp"
+#include "drape_frontend/gui/skin.hpp"
+#include "drape_frontend/gui/shape.hpp"
#include "drape/gpu_program_manager.hpp"
#include "drape/texture_manager.hpp"
#include "geometry/screenbase.hpp"
-#include "std/map.hpp"
-#include "std/unique_ptr.hpp"
+#include "base/macros.hpp"
+
+#include