summaryrefslogtreecommitdiffstats
path: root/chrome/browser/fullscreen_mac.mm
blob: 303f6f240779a48d8d8e7e004bebe0a158df79af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
// 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.

#import "chrome/browser/fullscreen.h"

#import <Carbon/Carbon.h>
#import <Cocoa/Cocoa.h>

#import "base/logging.h"

@interface FullScreenMonitor : NSObject {
 @private
  BOOL fullScreen_;
  EventHandlerRef eventHandler_;
}

@property (nonatomic, getter=isFullScreen) BOOL fullScreen;

@end

static OSStatus handleAppEvent(EventHandlerCallRef myHandler,
                               EventRef event,
                               void* userData) {
  DCHECK(userData);

  FullScreenMonitor* fullScreenMonitor =
      reinterpret_cast<FullScreenMonitor*>(userData);

  UInt32 mode = 0;
  OSStatus status = GetEventParameter(event,
                                      kEventParamSystemUIMode,
                                      typeUInt32,
                                      NULL,
                                      sizeof(UInt32),
                                      NULL,
                                      &mode);
  if (status != noErr)
    return status;
  BOOL isFullScreenMode = mode == kUIModeAllHidden;
  [fullScreenMonitor setFullScreen:isFullScreenMode];
  return noErr;
}

@implementation FullScreenMonitor

@synthesize fullScreen = fullScreen_;

- (id)init {
  if ((self = [super init])) {
    // Check if the user is in presentation mode initially.
    SystemUIMode currentMode;
    GetSystemUIMode(&currentMode, NULL);
    fullScreen_ = currentMode == kUIModeAllHidden;

    // Register a Carbon event to receive the notification about the login
    // session's UI mode change.
    EventTypeSpec events[] =
      {{ kEventClassApplication, kEventAppSystemUIModeChanged }};
    OSStatus status = InstallApplicationEventHandler(
        NewEventHandlerUPP(handleAppEvent),
        GetEventTypeCount(events),
        events,
        self,
        &eventHandler_);
    if (status) {
      [self release];
      self = nil;
    }
  }
  return self;
}

- (void)dealloc {
  if (eventHandler_)
    RemoveEventHandler(eventHandler_);
  [super dealloc];
}

@end

static FullScreenMonitor* g_fullScreenMonitor = nil;

void InitFullScreenMonitor() {
  if (!g_fullScreenMonitor)
    g_fullScreenMonitor = [[FullScreenMonitor alloc] init];
}

void StopFullScreenMonitor() {
  [g_fullScreenMonitor release];
  g_fullScreenMonitor = nil;
}

bool IsFullScreenMode() {
  // Check if the main display has been captured (game in particular).
  if (CGDisplayIsCaptured(CGMainDisplayID()))
    return true;

  return [g_fullScreenMonitor isFullScreen];
}