blob: b10c096007f31c9c444770498686100fe70b8f95 [file] [log] [blame]
// Copyright 2014 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.
#ifndef CHROME_BROWSER_ANDROID_COMPOSITOR_DECORATION_TITLE_H_
#define CHROME_BROWSER_ANDROID_COMPOSITOR_DECORATION_TITLE_H_
#include <jni.h>
#include <memory>
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "cc/resources/ui_resource_client.h"
#include "ui/gfx/geometry/size.h"
#include "ui/gfx/transform.h"
namespace cc {
class Layer;
class UIResourceLayer;
}
namespace ui {
class ResourceManager;
}
namespace android {
class DecorationTitle {
public:
DecorationTitle(ui::ResourceManager* resource_manager,
int title_resource_id,
int favicon_resource_id,
int spinner_resource_id,
int spinner_resource_id_incognito,
int fade_width,
int favicon_start_padding,
int favicon_end_padding,
bool is_incognito,
bool is_rtl);
virtual ~DecorationTitle();
void SetResourceManager(ui::ResourceManager* resource_manager);
void Update(int title_resource_id,
int favicon_resource_id,
int fade_width,
int favicon_start_padding,
int favicon_end_padding,
bool is_incognito,
bool is_rtl);
void SetFaviconResourceId(int favicon_resource_id);
void SetUIResourceIds();
void SetIsLoading(bool is_loading);
void SetSpinnerRotation(float rotation);
void setBounds(const gfx::Size& bounds);
void setOpacity(float opacity);
scoped_refptr<cc::Layer> layer();
const gfx::Size& size() { return size_; }
private:
scoped_refptr<cc::Layer> layer_;
scoped_refptr<cc::UIResourceLayer> layer_opaque_;
scoped_refptr<cc::UIResourceLayer> layer_fade_;
scoped_refptr<cc::UIResourceLayer> layer_favicon_;
int title_resource_id_;
int favicon_resource_id_;
int spinner_resource_id_;
int spinner_incognito_resource_id_;
gfx::Size title_size_;
gfx::Size favicon_size_;
gfx::Size size_;
int fade_width_;
float spinner_rotation_;
int favicon_start_padding_;
int favicon_end_padding_;
bool is_incognito_;
bool is_rtl_;
bool is_loading_;
std::unique_ptr<gfx::Transform> transform_;
ui::ResourceManager* resource_manager_;
DISALLOW_COPY_AND_ASSIGN(DecorationTitle);
};
} // namespace android
#endif // CHROME_BROWSER_ANDROID_COMPOSITOR_DECORATION_TITLE_H_