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 | #ifndef MODULES_DESKTOP_CAPTURE_MOUSE_CURSOR_H_ |
| 12 | #define MODULES_DESKTOP_CAPTURE_MOUSE_CURSOR_H_ |
sergeyu@chromium.org | 2767b53 | 2013-10-16 02:42:38 +0000 | [diff] [blame] | 13 | |
kwiberg | 2bb3afa | 2016-03-16 15:58:08 -0700 | [diff] [blame] | 14 | #include <memory> |
| 15 | |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame] | 16 | #include "modules/desktop_capture/desktop_frame.h" |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 17 | #include "modules/desktop_capture/desktop_geometry.h" |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 18 | #include "rtc_base/constructor_magic.h" |
sergeyu@chromium.org | 2767b53 | 2013-10-16 02:42:38 +0000 | [diff] [blame] | 19 | |
| 20 | namespace webrtc { |
| 21 | |
sergeyu@chromium.org | 2767b53 | 2013-10-16 02:42:38 +0000 | [diff] [blame] | 22 | class MouseCursor { |
| 23 | public: |
sergeyu@chromium.org | 8ae7256 | 2013-12-18 02:18:01 +0000 | [diff] [blame] | 24 | MouseCursor(); |
| 25 | |
sergeyu@chromium.org | 2767b53 | 2013-10-16 02:42:38 +0000 | [diff] [blame] | 26 | // Takes ownership of |image|. |hotspot| must be within |image| boundaries. |
| 27 | MouseCursor(DesktopFrame* image, const DesktopVector& hotspot); |
sergeyu@chromium.org | 8ae7256 | 2013-12-18 02:18:01 +0000 | [diff] [blame] | 28 | |
sergeyu@chromium.org | 2767b53 | 2013-10-16 02:42:38 +0000 | [diff] [blame] | 29 | ~MouseCursor(); |
| 30 | |
sergeyu@chromium.org | 2df89c0 | 2013-10-17 19:47:18 +0000 | [diff] [blame] | 31 | static MouseCursor* CopyOf(const MouseCursor& cursor); |
| 32 | |
sergeyu@chromium.org | 8ae7256 | 2013-12-18 02:18:01 +0000 | [diff] [blame] | 33 | void set_image(DesktopFrame* image) { image_.reset(image); } |
| 34 | const DesktopFrame* image() const { return image_.get(); } |
| 35 | |
Yves Gerey | 665174f | 2018-06-19 15:03:05 +0200 | [diff] [blame] | 36 | void set_hotspot(const DesktopVector& hotspot) { hotspot_ = hotspot; } |
sergeyu@chromium.org | 2df89c0 | 2013-10-17 19:47:18 +0000 | [diff] [blame] | 37 | const DesktopVector& hotspot() const { return hotspot_; } |
sergeyu@chromium.org | 2767b53 | 2013-10-16 02:42:38 +0000 | [diff] [blame] | 38 | |
| 39 | private: |
kwiberg | 2bb3afa | 2016-03-16 15:58:08 -0700 | [diff] [blame] | 40 | std::unique_ptr<DesktopFrame> image_; |
sergeyu@chromium.org | 2767b53 | 2013-10-16 02:42:38 +0000 | [diff] [blame] | 41 | DesktopVector hotspot_; |
| 42 | |
henrikg | 3c089d7 | 2015-09-16 05:37:44 -0700 | [diff] [blame] | 43 | RTC_DISALLOW_COPY_AND_ASSIGN(MouseCursor); |
sergeyu@chromium.org | 2767b53 | 2013-10-16 02:42:38 +0000 | [diff] [blame] | 44 | }; |
| 45 | |
| 46 | } // namespace webrtc |
| 47 | |
Mirko Bonadei | 92ea95e | 2017-09-15 06:47:31 +0200 | [diff] [blame] | 48 | #endif // MODULES_DESKTOP_CAPTURE_MOUSE_CURSOR_H_ |