#ifndef CC_LAYERS_NINE_PATCH_LAYER_IMPL_H_
#define CC_LAYERS_NINE_PATCH_LAYER_IMPL_H_
#include <string>
#include "cc/base/cc_export.h"
#include "cc/layers/layer_impl.h"
#include "cc/layers/ui_resource_layer_impl.h"
#include "cc/resources/resource_provider.h"
#include "cc/resources/ui_resource_client.h"
#include "ui/gfx/rect.h"
#include "ui/gfx/size.h"
namespace base {
class DictionaryValue;
}
namespace cc {
class CC_EXPORT NinePatchLayerImpl : public UIResourceLayerImpl {
public:
static scoped_ptr<NinePatchLayerImpl> Create(LayerTreeImpl* tree_impl,
int id) {
return make_scoped_ptr(new NinePatchLayerImpl(tree_impl, id));
}
virtual ~NinePatchLayerImpl();
void SetLayout(const gfx::Rect& image_aperture,
const gfx::Rect& border,
bool fill_center);
virtual scoped_ptr<LayerImpl> CreateLayerImpl(LayerTreeImpl* tree_impl)
OVERRIDE;
virtual void PushPropertiesTo(LayerImpl* layer) OVERRIDE;
virtual void AppendQuads(QuadSink* quad_sink,
AppendQuadsData* append_quads_data) OVERRIDE;
virtual base::DictionaryValue* LayerTreeAsJson() const OVERRIDE;
protected:
NinePatchLayerImpl(LayerTreeImpl* tree_impl, int id);
private:
virtual const char* LayerTypeAsString() const OVERRIDE;
void CheckGeometryLimitations();
gfx::Rect image_aperture_;
gfx::Rect border_;
bool fill_center_;
DISALLOW_COPY_AND_ASSIGN(NinePatchLayerImpl);
};
}
#endif