electron/atom/browser/native_window_mac.h

134 lines
4.6 KiB
C
Raw Normal View History

// Copyright (c) 2013 GitHub, Inc.
2014-04-25 09:49:37 +00:00
// Use of this source code is governed by the MIT license that can be
2013-04-12 07:04:46 +00:00
// found in the LICENSE file.
#ifndef ATOM_BROWSER_NATIVE_WINDOW_MAC_H_
#define ATOM_BROWSER_NATIVE_WINDOW_MAC_H_
#import <Cocoa/Cocoa.h>
#include <string>
#include <vector>
2014-04-11 04:47:22 +00:00
#include "base/mac/scoped_nsobject.h"
2013-04-12 07:04:46 +00:00
#include "base/memory/scoped_ptr.h"
2014-03-16 00:30:26 +00:00
#include "atom/browser/native_window.h"
2013-04-12 07:04:46 +00:00
@class FullSizeContentView;
class SkRegion;
2013-04-12 07:04:46 +00:00
namespace atom {
class NativeWindowMac : public NativeWindow {
public:
explicit NativeWindowMac(content::WebContents* web_contents,
const mate::Dictionary& options);
2013-04-12 07:04:46 +00:00
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;
2014-10-17 14:51:20 +00:00
virtual void ShowInactive() OVERRIDE;
2013-04-12 07:04:46 +00:00
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;
2014-05-14 21:58:49 +00:00
virtual bool IsMaximized() OVERRIDE;
2013-04-12 07:04:46 +00:00
virtual void Minimize() OVERRIDE;
virtual void Restore() OVERRIDE;
2014-07-26 05:58:26 +00:00
virtual bool IsMinimized() OVERRIDE;
2014-11-25 06:34:14 +00:00
virtual void SetFullScreen(bool fullscreen) OVERRIDE;
2013-04-12 07:04:46 +00:00
virtual bool IsFullscreen() OVERRIDE;
virtual void SetSize(const gfx::Size& size) OVERRIDE;
virtual gfx::Size GetSize() OVERRIDE;
2014-05-15 08:05:35 +00:00
virtual void SetContentSize(const gfx::Size& size) OVERRIDE;
2014-05-15 07:30:04 +00:00
virtual gfx::Size GetContentSize() 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 SetSkipTaskbar(bool skip) OVERRIDE;
2013-04-12 07:04:46 +00:00
virtual void SetKiosk(bool kiosk) OVERRIDE;
virtual bool IsKiosk() OVERRIDE;
virtual void SetRepresentedFilename(const std::string& filename) OVERRIDE;
virtual std::string GetRepresentedFilename() OVERRIDE;
virtual void SetDocumentEdited(bool edited) OVERRIDE;
virtual bool IsDocumentEdited() OVERRIDE;
virtual bool HasModalDialog() OVERRIDE;
virtual gfx::NativeWindow GetNativeWindow() OVERRIDE;
2014-09-17 07:58:08 +00:00
virtual void SetProgressBar(double progress) OVERRIDE;
virtual void ShowDefinitionForSelection() OVERRIDE;
2013-04-12 07:04:46 +00:00
// 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();
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
2014-04-11 04:47:22 +00:00
base::scoped_nsobject<NSWindow> window_;
2013-04-12 07:04:46 +00:00
// The view that will fill the whole frameless window.
base::scoped_nsobject<FullSizeContentView> content_view_;
2013-04-12 07:04:46 +00:00
bool is_kiosk_;
NSInteger attention_request_id_; // identifier from requestUserAttention
// The presentation options before entering kiosk mode.
NSApplicationPresentationOptions kiosk_options_;
// 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_