sergeyu@chromium.org | 2767b53 | 2013-10-16 02:42:38 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 11 | #include "modules/desktop_capture/mouse_cursor.h" |
sergeyu@chromium.org | 2767b53 | 2013-10-16 02:42:38 +0000 | [diff] [blame] | 12 | |
henrike@webrtc.org | f2aafe4 | 2014-04-29 17:54:17 +0000 | [diff] [blame] | 13 | #include <assert.h> |
| 14 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 15 | #include "modules/desktop_capture/desktop_frame.h" |
sergeyu@chromium.org | 2767b53 | 2013-10-16 02:42:38 +0000 | [diff] [blame] | 16 | |
| 17 | namespace webrtc { |
| 18 | |
sergeyu@chromium.org | 8ae7256 | 2013-12-18 02:18:01 +0000 | [diff] [blame] | 19 | MouseCursor::MouseCursor() {} |
| 20 | |
sergeyu@chromium.org | 2767b53 | 2013-10-16 02:42:38 +0000 | [diff] [blame] | 21 | MouseCursor::MouseCursor(DesktopFrame* image, const DesktopVector& hotspot) |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 22 | : image_(image), hotspot_(hotspot) { |
sergeyu@chromium.org | 2767b53 | 2013-10-16 02:42:38 +0000 | [diff] [blame] | 23 | assert(0 <= hotspot_.x() && hotspot_.x() <= image_->size().width()); |
| 24 | assert(0 <= hotspot_.y() && hotspot_.y() <= image_->size().height()); |
| 25 | } |
| 26 | |
| 27 | MouseCursor::~MouseCursor() {} |
| 28 | |
sergeyu@chromium.org | 2df89c0 | 2013-10-17 19:47:18 +0000 | [diff] [blame] | 29 | // static |
| 30 | MouseCursor* MouseCursor::CopyOf(const MouseCursor& cursor) { |
sergeyu@chromium.org | fb4e256 | 2014-01-16 04:45:35 +0000 | [diff] [blame] | 31 | return cursor.image() |
| 32 | ? new MouseCursor(BasicDesktopFrame::CopyOf(*cursor.image()), |
| 33 | cursor.hotspot()) |
| 34 | : new MouseCursor(); |
sergeyu@chromium.org | 2df89c0 | 2013-10-17 19:47:18 +0000 | [diff] [blame] | 35 | } |
| 36 | |
sergeyu@chromium.org | 2767b53 | 2013-10-16 02:42:38 +0000 | [diff] [blame] | 37 | } // namespace webrtc |