blob: 6c7e0752b79e9d30518ed3d0735217bbe2dee335 [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ui/compositor/layer.h"
#include <algorithm>
#include "base/command_line.h"
#include "base/debug/trace_event.h"
#include "base/logging.h"
#include "base/memory/scoped_ptr.h"
#include "cc/content_layer.h"
#include "cc/solid_color_layer.h"
#include "cc/texture_layer.h"
#include "third_party/WebKit/Source/Platform/chromium/public/WebFilterOperation.h"
#include "third_party/WebKit/Source/Platform/chromium/public/WebFilterOperations.h"
#include "ui/base/animation/animation.h"
#include "ui/compositor/compositor_switches.h"
#include "ui/compositor/dip_util.h"
#include "ui/compositor/layer_animator.h"
#include "ui/gfx/canvas.h"
#include "ui/gfx/display.h"
#include "ui/gfx/interpolated_transform.h"
#include "ui/gfx/point_conversions.h"
#include "ui/gfx/point3_f.h"
#include "ui/gfx/size_conversions.h"
namespace {
const ui::Layer* GetRoot(const ui::Layer* layer) {
while (layer->parent())
layer = layer->parent();
return layer;
}
} // namespace
namespace ui {
Layer::Layer()
: type_(LAYER_TEXTURED),
compositor_(NULL),
parent_(NULL),
visible_(true),
is_drawn_(true),
force_render_surface_(false),
fills_bounds_opaquely_(true),
layer_updated_externally_(false),
opacity_(1.0f),
background_blur_radius_(0),
layer_saturation_(0.0f),
layer_brightness_(0.0f),
layer_grayscale_(0.0f),
layer_inverted_(false),
layer_mask_(NULL),
layer_mask_back_link_(NULL),
zoom_x_offset_(0),
zoom_y_offset_(0),
zoom_(1),
zoom_inset_(0),
delegate_(NULL),
cc_layer_(NULL),
scale_content_(true),
device_scale_factor_(1.0f) {
CreateWebLayer();
}
Layer::Layer(LayerType type)
: type_(type),
compositor_(NULL),
parent_(NULL),
visible_(true),
is_drawn_(true),
force_render_surface_(false),
fills_bounds_opaquely_(true),
layer_updated_externally_(false),
opacity_(1.0f),
background_blur_radius_(0),
layer_saturation_(0.0f),
layer_brightness_(0.0f),
layer_grayscale_(0.0f),
layer_inverted_(false),
layer_mask_(NULL),
layer_mask_back_link_(NULL),
zoom_x_offset_(0),
zoom_y_offset_(0),
zoom_(1),
zoom_inset_(0),
delegate_(NULL),
scale_content_(true),
device_scale_factor_(1.0f) {
CreateWebLayer();
}
Layer::~Layer() {
// Destroying the animator may cause observers to use the layer (and
// indirectly the WebLayer). Destroy the animator first so that the WebLayer
// is still around.
if (animator_)
animator_->SetDelegate(NULL);
animator_ = NULL;
if (compositor_)
compositor_->SetRootLayer(NULL);
if (parent_)
parent_->Remove(this);
if (layer_mask_)
SetMaskLayer(NULL);
if (layer_mask_back_link_)
layer_mask_back_link_->SetMaskLayer(NULL);
for (size_t i = 0; i < children_.size(); ++i)
children_[i]->parent_ = NULL;
cc_layer_->removeFromParent();
}
Compositor* Layer::GetCompositor() {
return GetRoot(this)->compositor_;
}
void Layer::SetCompositor(Compositor* compositor) {
// This function must only be called to set the compositor on the root layer,
// or to reset it.
DCHECK(!compositor || !compositor_);
DCHECK(!compositor || compositor->root_layer() == this);
DCHECK(!parent_);
compositor_ = compositor;
if (compositor)
OnDeviceScaleFactorChanged(compositor->device_scale_factor());
}
void Layer::Add(Layer* child) {
DCHECK(!child->compositor_);
if (child->parent_)
child->parent_->Remove(child);
child->parent_ = this;
children_.push_back(child);
cc_layer_->addChild(child->cc_layer_);
child->OnDeviceScaleFactorChanged(device_scale_factor_);
child->UpdateIsDrawn();
}
void Layer::Remove(Layer* child) {
std::vector<Layer*>::iterator i =
std::find(children_.begin(), children_.end(), child);
DCHECK(i != children_.end());
children_.erase(i);
child->parent_ = NULL;
child->cc_layer_->removeFromParent();
}
void Layer::StackAtTop(Layer* child) {
if (children_.size() <= 1 || child == children_.back())
return; // Already in front.
StackAbove(child, children_.back());
}
void Layer::StackAbove(Layer* child, Layer* other) {
StackRelativeTo(child, other, true);
}
void Layer::StackAtBottom(Layer* child) {
if (children_.size() <= 1 || child == children_.front())
return; // Already on bottom.
StackBelow(child, children_.front());
}
void Layer::StackBelow(Layer* child, Layer* other) {
StackRelativeTo(child, other, false);
}
bool Layer::Contains(const Layer* other) const {
for (const Layer* parent = other; parent; parent = parent->parent()) {
if (parent == this)
return true;
}
return false;
}
void Layer::SetAnimator(LayerAnimator* animator) {
if (animator)
animator->SetDelegate(this);
animator_ = animator;
}
LayerAnimator* Layer::GetAnimator() {
if (!animator_.get())
SetAnimator(LayerAnimator::CreateDefaultAnimator());
return animator_.get();
}
void Layer::SetTransform(const gfx::Transform& transform) {
GetAnimator()->SetTransform(transform);
}
gfx::Transform Layer::GetTargetTransform() const {
if (animator_.get() && animator_->IsAnimatingProperty(
LayerAnimationElement::TRANSFORM)) {
return animator_->GetTargetTransform();
}
return transform_;
}
void Layer::SetBounds(const gfx::Rect& bounds) {
GetAnimator()->SetBounds(bounds);
}
gfx::Rect Layer::GetTargetBounds() const {
if (animator_.get() && animator_->IsAnimatingProperty(
LayerAnimationElement::BOUNDS)) {
return animator_->GetTargetBounds();
}
return bounds_;
}
void Layer::SetMasksToBounds(bool masks_to_bounds) {
cc_layer_->setMasksToBounds(masks_to_bounds);
}
bool Layer::GetMasksToBounds() const {
return cc_layer_->masksToBounds();
}
void Layer::SetOpacity(float opacity) {
GetAnimator()->SetOpacity(opacity);
}
float Layer::GetCombinedOpacity() const {
float opacity = opacity_;
Layer* current = this->parent_;
while (current) {
opacity *= current->opacity_;
current = current->parent_;
}
return opacity;
}
void Layer::SetBackgroundBlur(int blur_radius) {
background_blur_radius_ = blur_radius;
SetLayerBackgroundFilters();
}
void Layer::SetLayerSaturation(float saturation) {
layer_saturation_ = saturation;
SetLayerFilters();
}
void Layer::SetLayerBrightness(float brightness) {
GetAnimator()->SetBrightness(brightness);
}
float Layer::GetTargetBrightness() const {
if (animator_.get() && animator_->IsAnimatingProperty(
LayerAnimationElement::BRIGHTNESS)) {
return animator_->GetTargetBrightness();
}
return layer_brightness();
}
void Layer::SetLayerGrayscale(float grayscale) {
GetAnimator()->SetGrayscale(grayscale);
}
float Layer::GetTargetGrayscale() const {
if (animator_.get() && animator_->IsAnimatingProperty(
LayerAnimationElement::GRAYSCALE)) {
return animator_->GetTargetGrayscale();
}
return layer_grayscale();
}
void Layer::SetLayerInverted(bool inverted) {
layer_inverted_ = inverted;
SetLayerFilters();
}
void Layer::SetMaskLayer(Layer* layer_mask) {
// The provided mask should not have a layer mask itself.
DCHECK(!layer_mask ||
(!layer_mask->layer_mask_layer() &&
layer_mask->children().empty() &&
!layer_mask->layer_mask_back_link_));
DCHECK(!layer_mask_back_link_);
if (layer_mask_ == layer_mask)
return;
// We need to de-reference the currently linked object so that no problem
// arises if the mask layer gets deleted before this object.
if (layer_mask_)
layer_mask_->layer_mask_back_link_ = NULL;
layer_mask_ = layer_mask;
cc_layer_->setMaskLayer(
layer_mask ? layer_mask->cc_layer() : NULL);
// We need to reference the linked object so that it can properly break the
// link to us when it gets deleted.
if (layer_mask) {
layer_mask->layer_mask_back_link_ = this;
layer_mask->OnDeviceScaleFactorChanged(device_scale_factor_);
}
}
void Layer::SetBackgroundZoom(float x_offset,
float y_offset,
float zoom,
int inset) {
zoom_x_offset_ = x_offset;
zoom_y_offset_ = y_offset;
zoom_ = zoom;
zoom_inset_ = inset;
SetLayerBackgroundFilters();
}
void Layer::SetLayerFilters() {
WebKit::WebFilterOperations filters;
if (layer_saturation_) {
filters.append(WebKit::WebFilterOperation::createSaturateFilter(
layer_saturation_));
}
if (layer_grayscale_) {
filters.append(WebKit::WebFilterOperation::createGrayscaleFilter(
layer_grayscale_));
}
if (layer_inverted_)
filters.append(WebKit::WebFilterOperation::createInvertFilter(1.0));
// Brightness goes last, because the resulting colors neeed clamping, which
// cause further color matrix filters to be applied separately. In this order,
// they all can be combined in a single pass.
if (layer_brightness_) {
filters.append(WebKit::WebFilterOperation::createSaturatingBrightnessFilter(
layer_brightness_));
}
cc_layer_->setFilters(filters);
}
void Layer::SetLayerBackgroundFilters() {
WebKit::WebFilterOperations filters;
if (zoom_ != 1) {
filters.append(WebKit::WebFilterOperation::createZoomFilter(
WebKit::WebRect(zoom_x_offset_, zoom_y_offset_,
(GetTargetBounds().width() / zoom_),
(GetTargetBounds().height() / zoom_)),
zoom_inset_));
}
if (background_blur_radius_) {
filters.append(WebKit::WebFilterOperation::createBlurFilter(
background_blur_radius_));
}
cc_layer_->setBackgroundFilters(filters);
}
float Layer::GetTargetOpacity() const {
if (animator_.get() && animator_->IsAnimatingProperty(
LayerAnimationElement::OPACITY))
return animator_->GetTargetOpacity();
return opacity_;
}
void Layer::SetVisible(bool visible) {
GetAnimator()->SetVisibility(visible);
}
bool Layer::GetTargetVisibility() const {
if (animator_.get() && animator_->IsAnimatingProperty(
LayerAnimationElement::VISIBILITY))
return animator_->GetTargetVisibility();
return visible_;
}
bool Layer::IsDrawn() const {
return is_drawn_;
}
void Layer::UpdateIsDrawn() {
bool updated_is_drawn = visible_ && (!parent_ || parent_->IsDrawn());
if (updated_is_drawn == is_drawn_)
return;
is_drawn_ = updated_is_drawn;
cc_layer_->setIsDrawable(is_drawn_ && type_ != LAYER_NOT_DRAWN);
for (size_t i = 0; i < children_.size(); ++i) {
children_[i]->UpdateIsDrawn();
}
}
bool Layer::ShouldDraw() const {
return type_ != LAYER_NOT_DRAWN && GetCombinedOpacity() > 0.0f;
}
// static
void Layer::ConvertPointToLayer(const Layer* source,
const Layer* target,
gfx::Point* point) {
if (source == target)
return;
const Layer* root_layer = GetRoot(source);
CHECK_EQ(root_layer, GetRoot(target));
if (source != root_layer)
source->ConvertPointForAncestor(root_layer, point);
if (target != root_layer)
target->ConvertPointFromAncestor(root_layer, point);
}
void Layer::SetFillsBoundsOpaquely(bool fills_bounds_opaquely) {
if (fills_bounds_opaquely_ == fills_bounds_opaquely)
return;
fills_bounds_opaquely_ = fills_bounds_opaquely;
cc_layer_->setContentsOpaque(fills_bounds_opaquely);
}
void Layer::SetExternalTexture(Texture* texture) {
DCHECK_EQ(type_, LAYER_TEXTURED);
DCHECK(!solid_color_layer_);
layer_updated_externally_ = !!texture;
texture_ = texture;
if (cc_layer_is_accelerated_ != layer_updated_externally_) {
// Switch to a different type of layer.
cc_layer_->removeAllChildren();
scoped_refptr<cc::ContentLayer> old_content_layer;
old_content_layer.swap(content_layer_);
scoped_refptr<cc::TextureLayer> old_texture_layer;
old_texture_layer.swap(texture_layer_);
cc::Layer* new_layer = NULL;
if (layer_updated_externally_) {
texture_layer_ = cc::TextureLayer::create(this);
texture_layer_->setFlipped(texture_->flipped());
new_layer = texture_layer_.get();
} else {
old_texture_layer->willModifyTexture();
content_layer_ = cc::ContentLayer::create(this);
new_layer = content_layer_.get();
}
if (parent_) {
DCHECK(parent_->cc_layer_);
parent_->cc_layer_->replaceChild(cc_layer_, new_layer);
}
cc_layer_= new_layer;
cc_layer_is_accelerated_ = layer_updated_externally_;
for (size_t i = 0; i < children_.size(); ++i) {
DCHECK(children_[i]->cc_layer_);
cc_layer_->addChild(children_[i]->cc_layer_);
}
cc_layer_->setAnchorPoint(gfx::PointF());
cc_layer_->setContentsOpaque(fills_bounds_opaquely_);
cc_layer_->setOpacity(opacity_);
cc_layer_->setForceRenderSurface(force_render_surface_);
cc_layer_->setIsDrawable(IsDrawn());
RecomputeTransform();
}
RecomputeDrawsContentAndUVRect();
}
void Layer::SetColor(SkColor color) {
GetAnimator()->SetColor(color);
}
bool Layer::SchedulePaint(const gfx::Rect& invalid_rect) {
if (type_ == LAYER_SOLID_COLOR || (!delegate_ && !texture_))
return false;
damaged_region_.op(invalid_rect.x(),
invalid_rect.y(),
invalid_rect.right(),
invalid_rect.bottom(),
SkRegion::kUnion_Op);
ScheduleDraw();
return true;
}
void Layer::ScheduleDraw() {
Compositor* compositor = GetCompositor();
if (compositor)
compositor->ScheduleDraw();
}
void Layer::SendDamagedRects() {
if ((delegate_ || texture_) && !damaged_region_.isEmpty()) {
for (SkRegion::Iterator iter(damaged_region_);
!iter.done(); iter.next()) {
const SkIRect& sk_damaged = iter.rect();
gfx::Rect damaged(
sk_damaged.x(),
sk_damaged.y(),
sk_damaged.width(),
sk_damaged.height());
gfx::Rect damaged_in_pixel = ConvertRectToPixel(this, damaged);
cc_layer_->setNeedsDisplayRect(damaged_in_pixel);
}
damaged_region_.setEmpty();
}
for (size_t i = 0; i < children_.size(); ++i)
children_[i]->SendDamagedRects();
}
void Layer::SuppressPaint() {
if (!delegate_)
return;
delegate_ = NULL;
for (size_t i = 0; i < children_.size(); ++i)
children_[i]->SuppressPaint();
}
void Layer::OnDeviceScaleFactorChanged(float device_scale_factor) {
if (device_scale_factor_ == device_scale_factor)
return;
device_scale_factor_ = device_scale_factor;
RecomputeTransform();
RecomputeDrawsContentAndUVRect();
SchedulePaint(gfx::Rect(bounds_.size()));
if (delegate_)
delegate_->OnDeviceScaleFactorChanged(device_scale_factor);
for (size_t i = 0; i < children_.size(); ++i)
children_[i]->OnDeviceScaleFactorChanged(device_scale_factor);
if (layer_mask_)
layer_mask_->OnDeviceScaleFactorChanged(device_scale_factor);
}
void Layer::paintContents(SkCanvas* sk_canvas,
const gfx::Rect& clip,
gfx::RectF& opaque) {
TRACE_EVENT0("ui", "Layer::paintContents");
scoped_ptr<gfx::Canvas> canvas(gfx::Canvas::CreateCanvasWithoutScaling(
sk_canvas, ui::GetScaleFactorFromScale(device_scale_factor_)));
bool scale_content = scale_content_;
if (scale_content) {
canvas->Save();
canvas->sk_canvas()->scale(SkFloatToScalar(device_scale_factor_),
SkFloatToScalar(device_scale_factor_));
}
if (delegate_)
delegate_->OnPaintLayer(canvas.get());
if (scale_content)
canvas->Restore();
}
unsigned Layer::prepareTexture(cc::ResourceUpdateQueue&) {
DCHECK(layer_updated_externally_);
return texture_->PrepareTexture();
}
WebKit::WebGraphicsContext3D* Layer::context() {
DCHECK(layer_updated_externally_);
return texture_->HostContext3D();
}
void Layer::SetForceRenderSurface(bool force) {
if (force_render_surface_ == force)
return;
force_render_surface_ = force;
cc_layer_->setForceRenderSurface(force_render_surface_);
}
void Layer::StackRelativeTo(Layer* child, Layer* other, bool above) {
DCHECK_NE(child, other);
DCHECK_EQ(this, child->parent());
DCHECK_EQ(this, other->parent());
const size_t child_i =
std::find(children_.begin(), children_.end(), child) - children_.begin();
const size_t other_i =
std::find(children_.begin(), children_.end(), other) - children_.begin();
if ((above && child_i == other_i + 1) || (!above && child_i + 1 == other_i))
return;
const size_t dest_i =
above ?
(child_i < other_i ? other_i : other_i + 1) :
(child_i < other_i ? other_i - 1 : other_i);
children_.erase(children_.begin() + child_i);
children_.insert(children_.begin() + dest_i, child);
child->cc_layer_->removeFromParent();
cc_layer_->insertChild(child->cc_layer_, dest_i);
}
bool Layer::ConvertPointForAncestor(const Layer* ancestor,
gfx::Point* point) const {
gfx::Transform transform;
bool result = GetTargetTransformRelativeTo(ancestor, &transform);
gfx::Point3F p(*point);
transform.TransformPoint(p);
*point = gfx::ToFlooredPoint(p.AsPointF());
return result;
}
bool Layer::ConvertPointFromAncestor(const Layer* ancestor,
gfx::Point* point) const {
gfx::Transform transform;
bool result = GetTargetTransformRelativeTo(ancestor, &transform);
gfx::Point3F p(*point);
transform.TransformPointReverse(p);
*point = gfx::ToFlooredPoint(p.AsPointF());
return result;
}
bool Layer::GetTargetTransformRelativeTo(const Layer* ancestor,
gfx::Transform* transform) const {
const Layer* p = this;
for (; p && p != ancestor; p = p->parent()) {
gfx::Transform translation;
translation.Translate(static_cast<float>(p->bounds().x()),
static_cast<float>(p->bounds().y()));
// Use target transform so that result will be correct once animation is
// finished.
if (!p->GetTargetTransform().IsIdentity())
transform->ConcatTransform(p->GetTargetTransform());
transform->ConcatTransform(translation);
}
return p == ancestor;
}
void Layer::SetBoundsImmediately(const gfx::Rect& bounds) {
if (bounds == bounds_)
return;
base::Closure closure;
if (delegate_)
closure = delegate_->PrepareForLayerBoundsChange();
bool was_move = bounds_.size() == bounds.size();
bounds_ = bounds;
RecomputeTransform();
RecomputeDrawsContentAndUVRect();
if (!closure.is_null())
closure.Run();
if (was_move) {
// Don't schedule a draw if we're invisible. We'll schedule one
// automatically when we get visible.
if (IsDrawn())
ScheduleDraw();
} else {
// Always schedule a paint, even if we're invisible.
SchedulePaint(gfx::Rect(bounds.size()));
}
}
void Layer::SetTransformImmediately(const gfx::Transform& transform) {
transform_ = transform;
RecomputeTransform();
}
void Layer::SetOpacityImmediately(float opacity) {
opacity_ = opacity;
cc_layer_->setOpacity(opacity);
ScheduleDraw();
}
void Layer::SetVisibilityImmediately(bool visible) {
if (visible_ == visible)
return;
visible_ = visible;
UpdateIsDrawn();
}
void Layer::SetBrightnessImmediately(float brightness) {
layer_brightness_ = brightness;
SetLayerFilters();
}
void Layer::SetGrayscaleImmediately(float grayscale) {
layer_grayscale_ = grayscale;
SetLayerFilters();
}
void Layer::SetColorImmediately(SkColor color) {
DCHECK_EQ(type_, LAYER_SOLID_COLOR);
// WebColor is equivalent to SkColor, per WebColor.h.
solid_color_layer_->setBackgroundColor(static_cast<WebKit::WebColor>(color));
SetFillsBoundsOpaquely(SkColorGetA(color) == 0xFF);
}
void Layer::SetBoundsFromAnimation(const gfx::Rect& bounds) {
SetBoundsImmediately(bounds);
}
void Layer::SetTransformFromAnimation(const gfx::Transform& transform) {
SetTransformImmediately(transform);
}
void Layer::SetOpacityFromAnimation(float opacity) {
SetOpacityImmediately(opacity);
}
void Layer::SetVisibilityFromAnimation(bool visibility) {
SetVisibilityImmediately(visibility);
}
void Layer::SetBrightnessFromAnimation(float brightness) {
SetBrightnessImmediately(brightness);
}
void Layer::SetGrayscaleFromAnimation(float grayscale) {
SetGrayscaleImmediately(grayscale);
}
void Layer::SetColorFromAnimation(SkColor color) {
SetColorImmediately(color);
}
void Layer::ScheduleDrawForAnimation() {
ScheduleDraw();
}
const gfx::Rect& Layer::GetBoundsForAnimation() const {
return bounds();
}
const gfx::Transform& Layer::GetTransformForAnimation() const {
return transform();
}
float Layer::GetOpacityForAnimation() const {
return opacity();
}
bool Layer::GetVisibilityForAnimation() const {
return visible();
}
float Layer::GetBrightnessForAnimation() const {
return layer_brightness();
}
float Layer::GetGrayscaleForAnimation() const {
return layer_grayscale();
}
SkColor Layer::GetColorForAnimation() const {
// WebColor is equivalent to SkColor, per WebColor.h.
// The NULL check is here since this is invoked regardless of whether we have
// been configured as LAYER_SOLID_COLOR.
return solid_color_layer_.get() ?
solid_color_layer_->backgroundColor() : SK_ColorBLACK;
}
void Layer::CreateWebLayer() {
if (type_ == LAYER_SOLID_COLOR) {
solid_color_layer_ = cc::SolidColorLayer::create();
cc_layer_ = solid_color_layer_.get();
} else {
content_layer_ = cc::ContentLayer::create(this);
cc_layer_ = content_layer_.get();
}
cc_layer_is_accelerated_ = false;
cc_layer_->setAnchorPoint(gfx::PointF());
cc_layer_->setContentsOpaque(true);
cc_layer_->setIsDrawable(type_ != LAYER_NOT_DRAWN);
}
void Layer::RecomputeTransform() {
gfx::Transform scale_translate;
scale_translate.matrix().set3x3(device_scale_factor_, 0, 0,
0, device_scale_factor_, 0,
0, 0, 1);
// Start with the inverse matrix of above.
gfx::Transform transform;
transform.matrix().set3x3(1.0f / device_scale_factor_, 0, 0,
0, 1.0f / device_scale_factor_, 0,
0, 0, 1);
transform.ConcatTransform(transform_);
gfx::Transform translate;
translate.Translate(bounds_.x(), bounds_.y());
transform.ConcatTransform(translate);
transform.ConcatTransform(scale_translate);
cc_layer_->setTransform(transform);
}
void Layer::RecomputeDrawsContentAndUVRect() {
DCHECK(cc_layer_);
if (!cc_layer_is_accelerated_) {
cc_layer_->setBounds(ConvertSizeToPixel(this, bounds_.size()));
} else {
DCHECK(texture_);
float texture_scale_factor = 1.0f / texture_->device_scale_factor();
gfx::Size texture_size = gfx::ToFlooredSize(
gfx::ScaleSize(texture_->size(), texture_scale_factor));
gfx::Size size(std::min(bounds().width(), texture_size.width()),
std::min(bounds().height(), texture_size.height()));
gfx::PointF uv_top_left(0.f, 0.f);
gfx::PointF uv_bottom_right(
static_cast<float>(size.width())/texture_size.width(),
static_cast<float>(size.height())/texture_size.height());
texture_layer_->setUV(uv_top_left, uv_bottom_right);
cc_layer_->setBounds(ConvertSizeToPixel(this, size));
}
}
} // namespace ui