Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Unified Diff: ui/wayland/wayland_cursor.cc

Issue 7457023: Adding a Wayland basic toolkit (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Updated trunk to HEAD Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/wayland/wayland_cursor.h ('k') | ui/wayland/wayland_display.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/wayland/wayland_cursor.cc
diff --git a/ui/wayland/wayland_cursor.cc b/ui/wayland/wayland_cursor.cc
new file mode 100644
index 0000000000000000000000000000000000000000..54d915d2c37e9b61bea9d05cd54b1fe35609f4ac
--- /dev/null
+++ b/ui/wayland/wayland_cursor.cc
@@ -0,0 +1,76 @@
+// Copyright (c) 2011 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/wayland/wayland_cursor.h"
+
+#include <cairo.h>
+
+#include "base/logging.h"
+#include "ui/wayland/wayland_display.h"
+#include "ui/wayland/wayland_shm_buffer.h"
+
+namespace {
+
+struct PointerImage {
+ const char* filename;
+ int hotspot_x, hotspot_y;
+};
+
+// TODO(dnicoara) Add more pointer images and fix the path.
+const PointerImage kPointerImages[] = {
+ {"left_ptr.png", 10, 5},
+ {"hand.png", 10, 5},
+};
+
+} // namespace
+
+namespace ui {
+
+WaylandCursor::WaylandCursor(WaylandDisplay* display)
+ : display_(display),
+ buffer_(NULL) {
+}
+
+WaylandCursor::~WaylandCursor() {
+ if (buffer_) {
+ delete buffer_;
+ buffer_ = NULL;
+ }
+}
+
+void WaylandCursor::ChangeCursor(Type type) {
+ const PointerImage& ptr = kPointerImages[type];
+
+ cairo_surface_t* ptr_surface = cairo_image_surface_create_from_png(
+ ptr.filename);
+
+ if (!ptr_surface) {
+ LOG(ERROR) << "Failed to create cursor surface";
+ return;
+ }
+
+ int width = cairo_image_surface_get_width(ptr_surface);
+ int height = cairo_image_surface_get_height(ptr_surface);
+
+ if (buffer_) {
+ delete buffer_;
+ buffer_ = NULL;
+ }
+
+ // TODO(dnicoara) There should be a simpler way to create a wl_buffer for
+ // a cairo surface. Meantime we just copy the contents of the cairo surface
+ // created from file to the cairo surface created using a shm file.
+ buffer_ = new WaylandShmBuffer(display_, width, height);
+ cairo_surface_t* shared_surface = buffer_->data_surface();
+
+ cairo_t* cr = cairo_create(shared_surface);
+ cairo_set_source_surface(cr, ptr_surface, 0, 0);
+ cairo_rectangle(cr, 0, 0, width, height);
+ cairo_set_operator(cr, CAIRO_OPERATOR_SOURCE);
+ cairo_fill(cr);
+
+ display_->SetCursor(buffer_, ptr.hotspot_x, ptr.hotspot_y);
+}
+
+} // namespace ui
« no previous file with comments | « ui/wayland/wayland_cursor.h ('k') | ui/wayland/wayland_display.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698