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 101 102 103 104 105 106 107 108 109 110
|
// Copyright 2014 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 <Cocoa/Cocoa.h>
#include "ui/aura/window_tree_host_mac.h"
#include "ui/aura/window_tree_host.h"
namespace aura {
WindowTreeHostMac::WindowTreeHostMac(const gfx::Rect& bounds) {
window_.reset(
[[NSWindow alloc]
initWithContentRect:NSRectFromCGRect(bounds.ToCGRect())
styleMask:NSBorderlessWindowMask
backing:NSBackingStoreBuffered
defer:NO]);
CreateCompositor(GetAcceleratedWidget());
}
WindowTreeHostMac::~WindowTreeHostMac() {
DestroyDispatcher();
}
EventSource* WindowTreeHostMac::GetEventSource() {
NOTIMPLEMENTED();
return nil;
}
gfx::AcceleratedWidget WindowTreeHostMac::GetAcceleratedWidget() {
return [window_ contentView];
}
void WindowTreeHostMac::Show() {
[window_ makeKeyAndOrderFront:nil];
}
void WindowTreeHostMac::Hide() {
[window_ orderOut:nil];
}
void WindowTreeHostMac::ToggleFullScreen() {
}
gfx::Rect WindowTreeHostMac::GetBounds() const {
return gfx::Rect(NSRectToCGRect([window_ frame]));
}
void WindowTreeHostMac::SetBounds(const gfx::Rect& bounds) {
[window_ setFrame:NSRectFromCGRect(bounds.ToCGRect()) display:YES animate:NO];
}
gfx::Insets WindowTreeHostMac::GetInsets() const {
NOTIMPLEMENTED();
return gfx::Insets();
}
void WindowTreeHostMac::SetInsets(const gfx::Insets& insets) {
NOTIMPLEMENTED();
}
gfx::Point WindowTreeHostMac::GetLocationOnNativeScreen() const {
NOTIMPLEMENTED();
return gfx::Point(0, 0);
}
void WindowTreeHostMac::SetCapture() {
NOTIMPLEMENTED();
}
void WindowTreeHostMac::ReleaseCapture() {
NOTIMPLEMENTED();
}
bool WindowTreeHostMac::ConfineCursorToRootWindow() {
return false;
}
void WindowTreeHostMac::UnConfineCursor() {
NOTIMPLEMENTED();
}
void WindowTreeHostMac::SetCursorNative(gfx::NativeCursor cursor_type) {
NOTIMPLEMENTED();
}
void WindowTreeHostMac::MoveCursorToNative(const gfx::Point& location) {
NOTIMPLEMENTED();
}
void WindowTreeHostMac::OnCursorVisibilityChangedNative(bool show) {
NOTIMPLEMENTED();
}
void WindowTreeHostMac::OnDeviceScaleFactorChanged(float device_scale_factor) {
NOTIMPLEMENTED();
}
// static
WindowTreeHost* WindowTreeHost::Create(const gfx::Rect& bounds) {
return new WindowTreeHostMac(bounds);
}
// static
gfx::Size WindowTreeHost::GetNativeScreenSize() {
NOTIMPLEMENTED();
return gfx::Size(1024, 768);
}
} // namespace aura
|