1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
// 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 "base/macros.h"
#include "base/memory/ref_counted.h"
#include "cc/resources/ui_resource_client.h"
#include "third_party/skia/include/core/SkBitmap.h"
#include "ui/gfx/geometry/size.h"
#include "ui/gfx/transform.h"
namespace cc {
class Layer;
class UIResourceLayer;
}
namespace ui {
class ResourceManager;
}
namespace chrome {
namespace android {
class LayerTitleCache;
class DecorationTitle {
public:
DecorationTitle(LayerTitleCache* layer_title_cache,
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 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_;
scoped_ptr<gfx::Transform> transform_;
ui::ResourceManager* resource_manager_;
LayerTitleCache* layer_title_cache_;
DISALLOW_COPY_AND_ASSIGN(DecorationTitle);
};
} // namespace android
} // namespace chrome
#endif // CHROME_BROWSER_ANDROID_COMPOSITOR_DECORATION_TITLE_H_
|