| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #include "webrtc/modules/desktop_capture/mac/full_screen_chrome_window_detector.
h" | 11 #include "webrtc/modules/desktop_capture/mac/full_screen_chrome_window_detector.
h" |
| 12 | 12 |
| 13 #include <assert.h> | 13 #include <assert.h> |
| 14 #include <libproc.h> | 14 #include <libproc.h> |
| 15 #include <string> | 15 #include <string> |
| 16 | 16 |
| 17 #include "webrtc/base/macutils.h" | 17 #include "webrtc/base/macutils.h" |
| 18 #include "webrtc/modules/desktop_capture/mac/desktop_configuration.h" | |
| 19 #include "webrtc/modules/desktop_capture/mac/window_list_utils.h" | 18 #include "webrtc/modules/desktop_capture/mac/window_list_utils.h" |
| 20 #include "webrtc/system_wrappers/include/logging.h" | 19 #include "webrtc/system_wrappers/include/logging.h" |
| 21 | 20 |
| 22 | 21 |
| 23 namespace webrtc { | 22 namespace webrtc { |
| 24 | 23 |
| 25 namespace { | 24 namespace { |
| 26 | 25 |
| 27 const int64_t kUpdateIntervalMs = 500; | 26 const int64_t kUpdateIntervalMs = 500; |
| 28 | 27 |
| 29 // Returns true if the window is minimized. | |
| 30 bool IsWindowMinimized(CGWindowID id) { | |
| 31 CFArrayRef window_id_array = | |
| 32 CFArrayCreate(NULL, reinterpret_cast<const void **>(&id), 1, NULL); | |
| 33 CFArrayRef window_array = | |
| 34 CGWindowListCreateDescriptionFromArray(window_id_array); | |
| 35 bool minimized = false; | |
| 36 | |
| 37 if (window_array && CFArrayGetCount(window_array)) { | |
| 38 CFDictionaryRef window = reinterpret_cast<CFDictionaryRef>( | |
| 39 CFArrayGetValueAtIndex(window_array, 0)); | |
| 40 CFBooleanRef on_screen = reinterpret_cast<CFBooleanRef>( | |
| 41 CFDictionaryGetValue(window, kCGWindowIsOnscreen)); | |
| 42 | |
| 43 minimized = !on_screen; | |
| 44 } | |
| 45 | |
| 46 CFRelease(window_id_array); | |
| 47 CFRelease(window_array); | |
| 48 | |
| 49 return minimized; | |
| 50 } | |
| 51 | |
| 52 // Returns true if the window is occupying a full screen. | |
| 53 bool IsWindowFullScreen(const MacDesktopConfiguration& desktop_config, | |
| 54 CFDictionaryRef window) { | |
| 55 bool fullscreen = false; | |
| 56 | |
| 57 CFDictionaryRef bounds_ref = reinterpret_cast<CFDictionaryRef>( | |
| 58 CFDictionaryGetValue(window, kCGWindowBounds)); | |
| 59 | |
| 60 CGRect bounds; | |
| 61 if (bounds_ref && | |
| 62 CGRectMakeWithDictionaryRepresentation(bounds_ref, &bounds)) { | |
| 63 for (MacDisplayConfigurations::const_iterator it = | |
| 64 desktop_config.displays.begin(); | |
| 65 it != desktop_config.displays.end(); ++it) { | |
| 66 if (it->bounds.equals(DesktopRect::MakeXYWH(bounds.origin.x, | |
| 67 bounds.origin.y, | |
| 68 bounds.size.width, | |
| 69 bounds.size.height))) { | |
| 70 fullscreen = true; | |
| 71 break; | |
| 72 } | |
| 73 } | |
| 74 } | |
| 75 | |
| 76 return fullscreen; | |
| 77 } | |
| 78 | |
| 79 std::string GetWindowTitle(CGWindowID id) { | 28 std::string GetWindowTitle(CGWindowID id) { |
| 80 CFArrayRef window_id_array = | 29 CFArrayRef window_id_array = |
| 81 CFArrayCreate(NULL, reinterpret_cast<const void **>(&id), 1, NULL); | 30 CFArrayCreate(NULL, reinterpret_cast<const void **>(&id), 1, NULL); |
| 82 CFArrayRef window_array = | 31 CFArrayRef window_array = |
| 83 CGWindowListCreateDescriptionFromArray(window_id_array); | 32 CGWindowListCreateDescriptionFromArray(window_id_array); |
| 84 std::string title; | 33 std::string title; |
| 85 | 34 |
| 86 if (window_array && CFArrayGetCount(window_array)) { | 35 if (window_array && CFArrayGetCount(window_array)) { |
| 87 CFDictionaryRef window = reinterpret_cast<CFDictionaryRef>( | 36 CFDictionaryRef window = reinterpret_cast<CFDictionaryRef>( |
| 88 CFArrayGetValueAtIndex(window_array, 0)); | 37 CFArrayGetValueAtIndex(window_array, 0)); |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 235 previous_window_list_.clear(); | 184 previous_window_list_.clear(); |
| 236 return; | 185 return; |
| 237 } | 186 } |
| 238 | 187 |
| 239 GetWindowList(¤t_window_list_); | 188 GetWindowList(¤t_window_list_); |
| 240 last_udpate_time_ = TickTime::Now(); | 189 last_udpate_time_ = TickTime::Now(); |
| 241 } | 190 } |
| 242 } | 191 } |
| 243 | 192 |
| 244 } // namespace webrtc | 193 } // namespace webrtc |
| OLD | NEW |