Remove duplicate UpdateDraggableRegions
This commit is contained in:
parent
6b65a66119
commit
58c0486236
6 changed files with 43 additions and 79 deletions
|
@ -68,6 +68,25 @@ const char* kWebRuntimeFeatures[] = {
|
||||||
switches::kPageVisibility,
|
switches::kPageVisibility,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// Convert draggable regions in raw format to SkRegion format. Caller is
|
||||||
|
// responsible for deleting the returned SkRegion instance.
|
||||||
|
SkRegion* DraggableRegionsToSkRegion(
|
||||||
|
const std::vector<DraggableRegion>& regions) {
|
||||||
|
SkRegion* sk_region = new SkRegion;
|
||||||
|
for (std::vector<DraggableRegion>::const_iterator iter = regions.begin();
|
||||||
|
iter != regions.end();
|
||||||
|
++iter) {
|
||||||
|
const DraggableRegion& region = *iter;
|
||||||
|
sk_region->op(
|
||||||
|
region.bounds.x(),
|
||||||
|
region.bounds.y(),
|
||||||
|
region.bounds.right(),
|
||||||
|
region.bounds.bottom(),
|
||||||
|
region.draggable ? SkRegion::kUnion_Op : SkRegion::kDifference_Op);
|
||||||
|
}
|
||||||
|
return sk_region;
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
NativeWindow::NativeWindow(
|
NativeWindow::NativeWindow(
|
||||||
|
@ -559,6 +578,15 @@ bool NativeWindow::OnMessageReceived(const IPC::Message& message) {
|
||||||
return handled;
|
return handled;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void NativeWindow::UpdateDraggableRegions(
|
||||||
|
const std::vector<DraggableRegion>& regions) {
|
||||||
|
// Draggable region is not supported for non-frameless window.
|
||||||
|
if (has_frame_)
|
||||||
|
return;
|
||||||
|
|
||||||
|
draggable_region_.reset(DraggableRegionsToSkRegion(regions));
|
||||||
|
}
|
||||||
|
|
||||||
void NativeWindow::ScheduleUnresponsiveEvent(int ms) {
|
void NativeWindow::ScheduleUnresponsiveEvent(int ms) {
|
||||||
if (!window_unresposive_closure_.IsCancelled())
|
if (!window_unresposive_closure_.IsCancelled())
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -23,6 +23,8 @@
|
||||||
#include "ui/gfx/image/image.h"
|
#include "ui/gfx/image/image.h"
|
||||||
#include "ui/gfx/image/image_skia.h"
|
#include "ui/gfx/image/image_skia.h"
|
||||||
|
|
||||||
|
class SkRegion;
|
||||||
|
|
||||||
namespace base {
|
namespace base {
|
||||||
class CommandLine;
|
class CommandLine;
|
||||||
}
|
}
|
||||||
|
@ -217,6 +219,7 @@ class NativeWindow : public content::WebContentsObserver,
|
||||||
}
|
}
|
||||||
|
|
||||||
bool has_frame() const { return has_frame_; }
|
bool has_frame() const { return has_frame_; }
|
||||||
|
SkRegion* draggable_region() const { return draggable_region_.get(); }
|
||||||
|
|
||||||
void set_has_dialog_attached(bool has_dialog_attached) {
|
void set_has_dialog_attached(bool has_dialog_attached) {
|
||||||
has_dialog_attached_ = has_dialog_attached;
|
has_dialog_attached_ = has_dialog_attached;
|
||||||
|
@ -226,10 +229,6 @@ class NativeWindow : public content::WebContentsObserver,
|
||||||
NativeWindow(brightray::InspectableWebContents* inspectable_web_contents,
|
NativeWindow(brightray::InspectableWebContents* inspectable_web_contents,
|
||||||
const mate::Dictionary& options);
|
const mate::Dictionary& options);
|
||||||
|
|
||||||
// Called when the window needs to update its draggable region.
|
|
||||||
virtual void UpdateDraggableRegions(
|
|
||||||
const std::vector<DraggableRegion>& regions) = 0;
|
|
||||||
|
|
||||||
// brightray::InspectableWebContentsViewDelegate:
|
// brightray::InspectableWebContentsViewDelegate:
|
||||||
void DevToolsFocused() override;
|
void DevToolsFocused() override;
|
||||||
void DevToolsOpened() override;
|
void DevToolsOpened() override;
|
||||||
|
@ -257,6 +256,10 @@ class NativeWindow : public content::WebContentsObserver,
|
||||||
ObserverList<NativeWindowObserver> observers_;
|
ObserverList<NativeWindowObserver> observers_;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
// Called when the window needs to update its draggable region.
|
||||||
|
void UpdateDraggableRegions(
|
||||||
|
const std::vector<DraggableRegion>& regions);
|
||||||
|
|
||||||
// Schedule a notification unresponsive event.
|
// Schedule a notification unresponsive event.
|
||||||
void ScheduleUnresponsiveEvent(int ms);
|
void ScheduleUnresponsiveEvent(int ms);
|
||||||
|
|
||||||
|
@ -298,6 +301,10 @@ class NativeWindow : public content::WebContentsObserver,
|
||||||
// The page this window is viewing.
|
// The page this window is viewing.
|
||||||
brightray::InspectableWebContents* inspectable_web_contents_;
|
brightray::InspectableWebContents* inspectable_web_contents_;
|
||||||
|
|
||||||
|
// 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.
|
||||||
|
|
||||||
base::WeakPtrFactory<NativeWindow> weak_factory_;
|
base::WeakPtrFactory<NativeWindow> weak_factory_;
|
||||||
|
|
||||||
DISALLOW_COPY_AND_ASSIGN(NativeWindow);
|
DISALLOW_COPY_AND_ASSIGN(NativeWindow);
|
||||||
|
|
|
@ -11,13 +11,11 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "base/mac/scoped_nsobject.h"
|
#include "base/mac/scoped_nsobject.h"
|
||||||
#include "base/memory/scoped_ptr.h"
|
|
||||||
#include "atom/browser/native_window.h"
|
#include "atom/browser/native_window.h"
|
||||||
|
|
||||||
@class AtomNSWindow;
|
@class AtomNSWindow;
|
||||||
@class AtomNSWindowDelegate;
|
@class AtomNSWindowDelegate;
|
||||||
@class FullSizeContentView;
|
@class FullSizeContentView;
|
||||||
class SkRegion;
|
|
||||||
|
|
||||||
namespace atom {
|
namespace atom {
|
||||||
|
|
||||||
|
@ -88,9 +86,6 @@ class NativeWindowMac : public NativeWindow {
|
||||||
void ClipWebView();
|
void ClipWebView();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void UpdateDraggableRegions(
|
|
||||||
const std::vector<DraggableRegion>& regions) override;
|
|
||||||
|
|
||||||
// NativeWindow:
|
// NativeWindow:
|
||||||
void HandleKeyboardEvent(
|
void HandleKeyboardEvent(
|
||||||
content::WebContents*,
|
content::WebContents*,
|
||||||
|
@ -117,10 +112,6 @@ class NativeWindowMac : public NativeWindow {
|
||||||
// The presentation options before entering kiosk mode.
|
// The presentation options before entering kiosk mode.
|
||||||
NSApplicationPresentationOptions kiosk_options_;
|
NSApplicationPresentationOptions kiosk_options_;
|
||||||
|
|
||||||
// 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
|
// Mouse location since the last mouse event, in screen coordinates. This is
|
||||||
// used in custom drag to compute the window movement.
|
// used in custom drag to compute the window movement.
|
||||||
NSPoint last_mouse_offset_;
|
NSPoint last_mouse_offset_;
|
||||||
|
|
|
@ -318,29 +318,6 @@ static const CGFloat kAtomWindowCornerRadius = 4.0;
|
||||||
|
|
||||||
namespace atom {
|
namespace atom {
|
||||||
|
|
||||||
namespace {
|
|
||||||
|
|
||||||
// Convert draggable regions in raw format to SkRegion format. Caller is
|
|
||||||
// responsible for deleting the returned SkRegion instance.
|
|
||||||
SkRegion* DraggableRegionsToSkRegion(
|
|
||||||
const std::vector<DraggableRegion>& regions) {
|
|
||||||
SkRegion* sk_region = new SkRegion;
|
|
||||||
for (std::vector<DraggableRegion>::const_iterator iter = regions.begin();
|
|
||||||
iter != regions.end();
|
|
||||||
++iter) {
|
|
||||||
const DraggableRegion& region = *iter;
|
|
||||||
sk_region->op(
|
|
||||||
region.bounds.x(),
|
|
||||||
region.bounds.y(),
|
|
||||||
region.bounds.right(),
|
|
||||||
region.bounds.bottom(),
|
|
||||||
region.draggable ? SkRegion::kUnion_Op : SkRegion::kDifference_Op);
|
|
||||||
}
|
|
||||||
return sk_region;
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace
|
|
||||||
|
|
||||||
NativeWindowMac::NativeWindowMac(
|
NativeWindowMac::NativeWindowMac(
|
||||||
brightray::InspectableWebContents* web_contents,
|
brightray::InspectableWebContents* web_contents,
|
||||||
const mate::Dictionary& options)
|
const mate::Dictionary& options)
|
||||||
|
@ -747,7 +724,7 @@ bool NativeWindowMac::IsVisibleOnAllWorkspaces() {
|
||||||
}
|
}
|
||||||
|
|
||||||
bool NativeWindowMac::IsWithinDraggableRegion(NSPoint point) const {
|
bool NativeWindowMac::IsWithinDraggableRegion(NSPoint point) const {
|
||||||
if (!draggable_region_)
|
if (!draggable_region())
|
||||||
return false;
|
return false;
|
||||||
if (!web_contents())
|
if (!web_contents())
|
||||||
return false;
|
return false;
|
||||||
|
@ -756,7 +733,7 @@ bool NativeWindowMac::IsWithinDraggableRegion(NSPoint point) const {
|
||||||
// |draggable_region_| is stored in local platform-indepdent coordiate system
|
// |draggable_region_| is stored in local platform-indepdent coordiate system
|
||||||
// while |point| is in local Cocoa coordinate system. Do the conversion
|
// while |point| is in local Cocoa coordinate system. Do the conversion
|
||||||
// to match these two.
|
// to match these two.
|
||||||
return draggable_region_->contains(point.x, webViewHeight - point.y);
|
return draggable_region()->contains(point.x, webViewHeight - point.y);
|
||||||
}
|
}
|
||||||
|
|
||||||
void NativeWindowMac::HandleMouseEvent(NSEvent* event) {
|
void NativeWindowMac::HandleMouseEvent(NSEvent* event) {
|
||||||
|
@ -776,15 +753,6 @@ void NativeWindowMac::HandleMouseEvent(NSEvent* event) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void NativeWindowMac::UpdateDraggableRegions(
|
|
||||||
const std::vector<DraggableRegion>& regions) {
|
|
||||||
// Draggable region is not supported for non-frameless window.
|
|
||||||
if (has_frame_)
|
|
||||||
return;
|
|
||||||
|
|
||||||
draggable_region_.reset(DraggableRegionsToSkRegion(regions));
|
|
||||||
}
|
|
||||||
|
|
||||||
void NativeWindowMac::HandleKeyboardEvent(
|
void NativeWindowMac::HandleKeyboardEvent(
|
||||||
content::WebContents*,
|
content::WebContents*,
|
||||||
const content::NativeWebKeyboardEvent& event) {
|
const content::NativeWebKeyboardEvent& event) {
|
||||||
|
|
|
@ -753,29 +753,6 @@ gfx::AcceleratedWidget NativeWindowViews::GetAcceleratedWidget() {
|
||||||
return GetNativeWindow()->GetHost()->GetAcceleratedWidget();
|
return GetNativeWindow()->GetHost()->GetAcceleratedWidget();
|
||||||
}
|
}
|
||||||
|
|
||||||
void NativeWindowViews::UpdateDraggableRegions(
|
|
||||||
const std::vector<DraggableRegion>& regions) {
|
|
||||||
if (has_frame_)
|
|
||||||
return;
|
|
||||||
|
|
||||||
SkRegion* draggable_region = new SkRegion;
|
|
||||||
|
|
||||||
// By default, the whole window is non-draggable. We need to explicitly
|
|
||||||
// include those draggable regions.
|
|
||||||
for (std::vector<DraggableRegion>::const_iterator iter = regions.begin();
|
|
||||||
iter != regions.end(); ++iter) {
|
|
||||||
const DraggableRegion& region = *iter;
|
|
||||||
draggable_region->op(
|
|
||||||
region.bounds.x(),
|
|
||||||
region.bounds.y(),
|
|
||||||
region.bounds.right(),
|
|
||||||
region.bounds.bottom(),
|
|
||||||
region.draggable ? SkRegion::kUnion_Op : SkRegion::kDifference_Op);
|
|
||||||
}
|
|
||||||
|
|
||||||
draggable_region_.reset(draggable_region);
|
|
||||||
}
|
|
||||||
|
|
||||||
void NativeWindowViews::OnWidgetActivationChanged(
|
void NativeWindowViews::OnWidgetActivationChanged(
|
||||||
views::Widget* widget, bool active) {
|
views::Widget* widget, bool active) {
|
||||||
if (widget != window_.get())
|
if (widget != window_.get())
|
||||||
|
@ -858,8 +835,8 @@ bool NativeWindowViews::ShouldDescendIntoChildForEventHandling(
|
||||||
gfx::NativeView child,
|
gfx::NativeView child,
|
||||||
const gfx::Point& location) {
|
const gfx::Point& location) {
|
||||||
// App window should claim mouse events that fall within the draggable region.
|
// App window should claim mouse events that fall within the draggable region.
|
||||||
if (draggable_region_ &&
|
if (draggable_region() &&
|
||||||
draggable_region_->contains(location.x(), location.y()))
|
draggable_region()->contains(location.x(), location.y()))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
// And the events on border for dragging resizable frameless window.
|
// And the events on border for dragging resizable frameless window.
|
||||||
|
|
|
@ -82,14 +82,9 @@ class NativeWindowViews : public NativeWindow,
|
||||||
|
|
||||||
gfx::AcceleratedWidget GetAcceleratedWidget();
|
gfx::AcceleratedWidget GetAcceleratedWidget();
|
||||||
|
|
||||||
SkRegion* draggable_region() const { return draggable_region_.get(); }
|
|
||||||
views::Widget* widget() const { return window_.get(); }
|
views::Widget* widget() const { return window_.get(); }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// NativeWindow:
|
|
||||||
void UpdateDraggableRegions(
|
|
||||||
const std::vector<DraggableRegion>& regions) override;
|
|
||||||
|
|
||||||
// views::WidgetObserver:
|
// views::WidgetObserver:
|
||||||
void OnWidgetActivationChanged(
|
void OnWidgetActivationChanged(
|
||||||
views::Widget* widget, bool active) override;
|
views::Widget* widget, bool active) override;
|
||||||
|
@ -177,8 +172,6 @@ class NativeWindowViews : public NativeWindow,
|
||||||
gfx::Size maximum_size_;
|
gfx::Size maximum_size_;
|
||||||
gfx::Size widget_size_;
|
gfx::Size widget_size_;
|
||||||
|
|
||||||
scoped_ptr<SkRegion> draggable_region_;
|
|
||||||
|
|
||||||
DISALLOW_COPY_AND_ASSIGN(NativeWindowViews);
|
DISALLOW_COPY_AND_ASSIGN(NativeWindowViews);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue