blob: 87340188e3b3091676878ce2283fe28c771610ee [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.
#include "ui/base/cursor/cursor_loader_ozone.h"
#include <vector>
#include "ui/base/cursor/cursor.h"
#include "ui/base/cursor/cursor_util.h"
#include "ui/ozone/public/cursor_factory_ozone.h"
namespace ui {
CursorLoaderOzone::CursorLoaderOzone() {
factory_ = CursorFactoryOzone::GetInstance();
}
CursorLoaderOzone::~CursorLoaderOzone() {
UnloadAll();
}
void CursorLoaderOzone::LoadImageCursor(CursorType id,
int resource_id,
const gfx::Point& hot) {
SkBitmap bitmap;
gfx::Point hotspot = hot;
GetImageCursorBitmap(resource_id, scale(), rotation(), &hotspot, &bitmap);
image_cursors_[id] = factory_->CreateImageCursor(bitmap, hotspot, scale());
}
void CursorLoaderOzone::LoadAnimatedCursor(CursorType id,
int resource_id,
const gfx::Point& hot,
int frame_delay_ms) {
std::vector<SkBitmap> bitmaps;
gfx::Point hotspot = hot;
GetAnimatedCursorBitmaps(
resource_id, scale(), rotation(), &hotspot, &bitmaps);
image_cursors_[id] =
factory_->CreateAnimatedCursor(bitmaps, hotspot, frame_delay_ms, scale());
}
void CursorLoaderOzone::UnloadAll() {
for (const auto& image_cursor : image_cursors_)
factory_->UnrefImageCursor(image_cursor.second);
image_cursors_.clear();
}
void CursorLoaderOzone::SetPlatformCursor(gfx::NativeCursor* cursor) {
CursorType native_type = cursor->native_type();
PlatformCursor platform;
if (image_cursors_.count(native_type)) {
// An image cursor is loaded for this type.
platform = image_cursors_[native_type];
} else if (native_type == CursorType::kCustom) {
// The platform cursor was already set via WebCursor::GetPlatformCursor.
platform = cursor->platform();
} else {
// Use default cursor of this type.
platform = factory_->GetDefaultCursor(native_type);
}
cursor->set_device_scale_factor(scale());
cursor->SetPlatformCursor(platform);
}
CursorLoader* CursorLoader::Create() {
return new CursorLoaderOzone();
}
} // namespace ui