electron/browser/native_window_mac.h

113 lines
3.7 KiB
C
Raw Normal View History

2013-04-12 07:04:46 +00:00
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ATOM_BROWSER_NATIVE_WINDOW_MAC_H_
#define ATOM_BROWSER_NATIVE_WINDOW_MAC_H_
#import <Cocoa/Cocoa.h>
#include "base/memory/scoped_ptr.h"
#include "browser/native_window.h"
class SkRegion;
2013-04-12 07:04:46 +00:00
namespace atom {
class NativeWindowMac : public NativeWindow {
public:
explicit NativeWindowMac(content::WebContents* web_contents,
2013-04-12 07:04:46 +00:00
base::DictionaryValue* options);
virtual ~NativeWindowMac();
// NativeWindow implementation.
virtual void Close() OVERRIDE;
2013-05-01 08:12:00 +00:00
virtual void CloseImmediately() OVERRIDE;
2013-04-12 07:04:46 +00:00
virtual void Move(const gfx::Rect& pos) OVERRIDE;
virtual void Focus(bool focus) OVERRIDE;
2013-05-16 14:56:52 +00:00
virtual bool IsFocused() OVERRIDE;
2013-04-12 07:04:46 +00:00
virtual void Show() OVERRIDE;
virtual void Hide() OVERRIDE;
2013-10-03 00:27:59 +00:00
virtual bool IsVisible() OVERRIDE;
2013-04-12 07:04:46 +00:00
virtual void Maximize() OVERRIDE;
virtual void Unmaximize() OVERRIDE;
virtual void Minimize() OVERRIDE;
virtual void Restore() OVERRIDE;
virtual void SetFullscreen(bool fullscreen) OVERRIDE;
virtual bool IsFullscreen() OVERRIDE;
virtual void SetSize(const gfx::Size& size) OVERRIDE;
virtual gfx::Size GetSize() OVERRIDE;
virtual void SetMinimumSize(const gfx::Size& size) OVERRIDE;
2013-04-18 07:38:04 +00:00
virtual gfx::Size GetMinimumSize() OVERRIDE;
virtual void SetMaximumSize(const gfx::Size& size) OVERRIDE;
2013-04-18 07:38:04 +00:00
virtual gfx::Size GetMaximumSize() OVERRIDE;
2013-04-12 07:04:46 +00:00
virtual void SetResizable(bool resizable) OVERRIDE;
2013-04-18 07:38:04 +00:00
virtual bool IsResizable() OVERRIDE;
2013-04-12 07:04:46 +00:00
virtual void SetAlwaysOnTop(bool top) OVERRIDE;
2013-04-18 07:38:04 +00:00
virtual bool IsAlwaysOnTop() OVERRIDE;
virtual void Center() OVERRIDE;
2013-04-12 07:04:46 +00:00
virtual void SetPosition(const gfx::Point& position) OVERRIDE;
virtual gfx::Point GetPosition() OVERRIDE;
virtual void SetTitle(const std::string& title) OVERRIDE;
2013-04-18 06:30:05 +00:00
virtual std::string GetTitle() OVERRIDE;
2013-04-12 07:04:46 +00:00
virtual void FlashFrame(bool flash) OVERRIDE;
virtual void SetKiosk(bool kiosk) OVERRIDE;
virtual bool IsKiosk() OVERRIDE;
virtual gfx::NativeWindow GetNativeWindow() OVERRIDE;
2013-04-12 07:04:46 +00:00
void NotifyWindowBlur() { NativeWindow::NotifyWindowBlur(); }
// Returns true if |point| in local Cocoa coordinate system falls within
// the draggable region.
bool IsWithinDraggableRegion(NSPoint point) const;
// Called to handle a mouse event.
void HandleMouseEvent(NSEvent* event);
// Clip web view to rounded corner.
void ClipWebView();
NSWindow*& window() { return window_; }
SkRegion* draggable_region() const { return draggable_region_.get(); }
2013-04-12 07:04:46 +00:00
protected:
virtual void UpdateDraggableRegions(
const std::vector<DraggableRegion>& regions) OVERRIDE;
// Implementations of content::WebContentsDelegate.
virtual void HandleKeyboardEvent(
content::WebContents*,
const content::NativeWebKeyboardEvent&) OVERRIDE;
2013-04-12 07:04:46 +00:00
private:
void InstallView();
void UninstallView();
void InstallDraggableRegionViews();
void UpdateDraggableRegionsForCustomDrag(
const std::vector<DraggableRegion>& regions);
2013-04-12 07:04:46 +00:00
NSWindow* window_;
bool is_kiosk_;
NSInteger attention_request_id_; // identifier from requestUserAttention
// For system drag, the whole window is draggable and the non-draggable areas
// have to been explicitly excluded.
std::vector<gfx::Rect> system_drag_exclude_areas_;
// For custom drag, the whole window is non-draggable and the draggable region
// has to been explicitly provided.
scoped_ptr<SkRegion> draggable_region_; // used in custom drag.
// Mouse location since the last mouse event, in screen coordinates. This is
// used in custom drag to compute the window movement.
NSPoint last_mouse_offset_;
2013-04-12 07:04:46 +00:00
DISALLOW_COPY_AND_ASSIGN(NativeWindowMac);
};
} // namespace atom
#endif // ATOM_BROWSER_NATIVE_WINDOW_MAC_H_