removed move utility and replaced with setbounds

This commit is contained in:
deepak1556 2015-05-01 20:10:46 +05:30
parent ae6a1b409f
commit 9ae59e8ac7
6 changed files with 40 additions and 42 deletions

View file

@ -192,7 +192,7 @@ void NativeWindow::InitFromOptions(const mate::Dictionary& options) {
int width = -1, height = -1; int width = -1, height = -1;
options.Get(switches::kWidth, &width); options.Get(switches::kWidth, &width);
options.Get(switches::kHeight, &height); options.Get(switches::kHeight, &height);
Move(gfx::Rect(x, y, width, height)); SetBounds(gfx::Rect(x, y, width, height));
} else if (options.Get(switches::kCenter, &center) && center) { } else if (options.Get(switches::kCenter, &center) && center) {
Center(); Center();
} }
@ -646,8 +646,7 @@ void NativeWindow::DeactivateContents(content::WebContents* contents) {
void NativeWindow::MoveContents(content::WebContents* source, void NativeWindow::MoveContents(content::WebContents* source,
const gfx::Rect& pos) { const gfx::Rect& pos) {
SetPosition(pos.origin()); SetBounds(pos);
SetSize(pos.size());
} }
void NativeWindow::CloseContents(content::WebContents* source) { void NativeWindow::CloseContents(content::WebContents* source) {

View file

@ -98,7 +98,6 @@ class NativeWindow : public brightray::DefaultWebContentsDelegate,
virtual void Close() = 0; virtual void Close() = 0;
virtual void CloseImmediately() = 0; virtual void CloseImmediately() = 0;
virtual void Move(const gfx::Rect& pos) = 0;
virtual void Focus(bool focus) = 0; virtual void Focus(bool focus) = 0;
virtual bool IsFocused() = 0; virtual bool IsFocused() = 0;
virtual void Show() = 0; virtual void Show() = 0;

View file

@ -30,7 +30,6 @@ class NativeWindowMac : public NativeWindow {
// NativeWindow implementation. // NativeWindow implementation.
void Close() override; void Close() override;
void CloseImmediately() override; void CloseImmediately() override;
void Move(const gfx::Rect& pos) override;
void Focus(bool focus) override; void Focus(bool focus) override;
bool IsFocused() override; bool IsFocused() override;
void Show() override; void Show() override;
@ -46,7 +45,7 @@ class NativeWindowMac : public NativeWindow {
void SetFullScreen(bool fullscreen) override; void SetFullScreen(bool fullscreen) override;
bool IsFullscreen() const override; bool IsFullscreen() const override;
void SetBounds(const gfx::Rect& bounds) override; void SetBounds(const gfx::Rect& bounds) override;
gfx::Rect GetBounds() override; gfx::Rect GetBounds() override;
void SetSize(const gfx::Size& size) override; void SetSize(const gfx::Size& size) override;
gfx::Size GetSize() override; gfx::Size GetSize() override;
void SetContentSize(const gfx::Size& size) override; void SetContentSize(const gfx::Size& size) override;

View file

@ -382,18 +382,6 @@ void NativeWindowMac::CloseImmediately() {
[window_ close]; [window_ close];
} }
void NativeWindowMac::Move(const gfx::Rect& pos) {
NSRect cocoa_bounds = NSMakeRect(pos.x(), 0,
pos.width(),
pos.height());
// Flip coordinates based on the primary screen.
NSScreen* screen = [[NSScreen screens] objectAtIndex:0];
cocoa_bounds.origin.y =
NSHeight([screen frame]) - pos.height() - pos.y();
[window_ setFrame:cocoa_bounds display:YES];
}
void NativeWindowMac::Focus(bool focus) { void NativeWindowMac::Focus(bool focus) {
if (!IsVisible()) if (!IsVisible())
return; return;
@ -471,12 +459,26 @@ bool NativeWindowMac::IsFullscreen() const {
} }
void NativeWindowMac::SetBounds(const gfx::Rect& bounds) { void NativeWindowMac::SetBounds(const gfx::Rect& bounds) {
Move(bounds); NSRect cocoa_bounds = NSMakeRect(bounds.x(), 0,
bounds.width(),
bounds.height());
// Flip coordinates based on the primary screen.
NSScreen* screen = [[NSScreen screens] objectAtIndex:0];
cocoa_bounds.origin.y =
NSHeight([screen frame]) - bounds.height() - bounds.y();
[window_ setFrame:cocoa_bounds display:YES];
} }
gfx::Rect NativeWindowMac::GetBounds() { gfx::Rect NativeWindowMac::GetBounds() {
return gfx::Rect(GetPosition(), NSRect frame = [window_ frame];
GetSize()); NSScreen* screen = [[NSScreen screens] objectAtIndex:0];
gfx::Point pos(frame.origin.x,
NSHeight([screen frame]) - frame.origin.y - frame.size.height);
gfx::Size size(frame.size.width, frame.size.height);
return gfx::Rect(pos, size);
} }
void NativeWindowMac::SetSize(const gfx::Size& size) { void NativeWindowMac::SetSize(const gfx::Size& size) {
@ -489,8 +491,7 @@ void NativeWindowMac::SetSize(const gfx::Size& size) {
} }
gfx::Size NativeWindowMac::GetSize() { gfx::Size NativeWindowMac::GetSize() {
NSRect frame = [window_ frame]; return GetBounds().size();
return gfx::Size(frame.size.width, frame.size.height);
} }
void NativeWindowMac::SetContentSize(const gfx::Size& size) { void NativeWindowMac::SetContentSize(const gfx::Size& size) {
@ -564,15 +565,11 @@ void NativeWindowMac::Center() {
} }
void NativeWindowMac::SetPosition(const gfx::Point& position) { void NativeWindowMac::SetPosition(const gfx::Point& position) {
Move(gfx::Rect(position, GetSize())); SetBounds(gfx::Rect(position, GetSize()));
} }
gfx::Point NativeWindowMac::GetPosition() { gfx::Point NativeWindowMac::GetPosition() {
NSRect frame = [window_ frame]; return GetBounds().origin();
NSScreen* screen = [[NSScreen screens] objectAtIndex:0];
return gfx::Point(frame.origin.x,
NSHeight([screen frame]) - frame.origin.y - frame.size.height);
} }
void NativeWindowMac::SetTitle(const std::string& title) { void NativeWindowMac::SetTitle(const std::string& title) {

View file

@ -291,10 +291,6 @@ void NativeWindowViews::CloseImmediately() {
window_->CloseNow(); window_->CloseNow();
} }
void NativeWindowViews::Move(const gfx::Rect& bounds) {
window_->SetBounds(bounds);
}
void NativeWindowViews::Focus(bool focus) { void NativeWindowViews::Focus(bool focus) {
if (focus) if (focus)
window_->Activate(); window_->Activate();
@ -374,11 +370,25 @@ bool NativeWindowViews::IsFullscreen() const {
} }
void NativeWindowViews::SetBounds(const gfx::Rect& bounds) { void NativeWindowViews::SetBounds(const gfx::Rect& bounds) {
window_->SetBoundsConstrained(bounds); #if defined(USE_X11)
// On Linux the minimum and maximum size should be updated with window size
// when window is not resizable.
if (!resizable_) {
SetMaximumSize(bounds.size());
SetMinimumSize(bounds.size());
}
#endif
window_->SetBounds(bounds);
} }
gfx::Rect NativeWindowViews::GetBounds() { gfx::Rect NativeWindowViews::GetBounds() {
return window_->GetRestoredBounds(); #if defined(OS_WIN)
if (IsMinimized())
return window_->GetRestoredBounds();
#endif
return window_->GetWindowBoundsInScreen();
} }
void NativeWindowViews::SetSize(const gfx::Size& size) { void NativeWindowViews::SetSize(const gfx::Size& size) {
@ -395,12 +405,7 @@ void NativeWindowViews::SetSize(const gfx::Size& size) {
} }
gfx::Size NativeWindowViews::GetSize() { gfx::Size NativeWindowViews::GetSize() {
#if defined(OS_WIN) return GetBounds().size();
if (IsMinimized())
return window_->GetRestoredBounds().size();
#endif
return window_->GetWindowBoundsInScreen().size();
} }
void NativeWindowViews::SetContentSize(const gfx::Size& size) { void NativeWindowViews::SetContentSize(const gfx::Size& size) {

View file

@ -35,7 +35,6 @@ class NativeWindowViews : public NativeWindow,
// NativeWindow: // NativeWindow:
void Close() override; void Close() override;
void CloseImmediately() override; void CloseImmediately() override;
void Move(const gfx::Rect& pos) override;
void Focus(bool focus) override; void Focus(bool focus) override;
bool IsFocused() override; bool IsFocused() override;
void Show() override; void Show() override;