OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ui/views/widget/native_widget_aura.h" | 5 #include "ui/views/widget/native_widget_aura.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/strings/string_util.h" | 8 #include "base/strings/string_util.h" |
9 #include "third_party/skia/include/core/SkRegion.h" | 9 #include "third_party/skia/include/core/SkRegion.h" |
10 #include "ui/aura/client/aura_constants.h" | 10 #include "ui/aura/client/aura_constants.h" |
(...skipping 466 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
477 void NativeWidgetAura::ShowMaximizedWithBounds( | 477 void NativeWidgetAura::ShowMaximizedWithBounds( |
478 const gfx::Rect& restored_bounds) { | 478 const gfx::Rect& restored_bounds) { |
479 SetRestoreBounds(window_, restored_bounds); | 479 SetRestoreBounds(window_, restored_bounds); |
480 ShowWithWindowState(ui::SHOW_STATE_MAXIMIZED); | 480 ShowWithWindowState(ui::SHOW_STATE_MAXIMIZED); |
481 } | 481 } |
482 | 482 |
483 void NativeWidgetAura::ShowWithWindowState(ui::WindowShowState state) { | 483 void NativeWidgetAura::ShowWithWindowState(ui::WindowShowState state) { |
484 if (!window_) | 484 if (!window_) |
485 return; | 485 return; |
486 | 486 |
487 if (state == ui::SHOW_STATE_MAXIMIZED || state == ui::SHOW_STATE_FULLSCREEN) | 487 window_->SetProperty(aura::client::kShowStateKey, state); |
488 window_->SetProperty(aura::client::kShowStateKey, state); | |
489 window_->Show(); | 488 window_->Show(); |
490 if (delegate_->CanActivate()) { | 489 if (delegate_->CanActivate()) { |
491 if (state != ui::SHOW_STATE_INACTIVE) | 490 if (state != ui::SHOW_STATE_INACTIVE) |
492 Activate(); | 491 Activate(); |
493 // SetInitialFocus() should be always be called, even for | 492 // SetInitialFocus() should be always be called, even for |
494 // SHOW_STATE_INACTIVE. If the window has to stay inactive, the method will | 493 // SHOW_STATE_INACTIVE. If the window has to stay inactive, the method will |
495 // do the right thing. | 494 // do the right thing. |
496 SetInitialFocus(state); | 495 SetInitialFocus(state); |
497 } | 496 } |
497 | |
498 if (state == ui::SHOW_STATE_MINIMIZED) | |
499 Minimize(); | |
tapted
2015/05/28 23:55:02
Minimize() is literally `window_->SetProperty(aura
tapted
2015/05/29 00:02:16
(maybe you just need to include ui::SHOW_STATE_MIN
joone
2015/05/29 00:52:00
It works fine so I've uploaded the patch.
| |
498 } | 500 } |
499 | 501 |
500 bool NativeWidgetAura::IsVisible() const { | 502 bool NativeWidgetAura::IsVisible() const { |
501 return window_ && window_->IsVisible(); | 503 return window_ && window_->IsVisible(); |
502 } | 504 } |
503 | 505 |
504 void NativeWidgetAura::Activate() { | 506 void NativeWidgetAura::Activate() { |
505 if (!window_) | 507 if (!window_) |
506 return; | 508 return; |
507 | 509 |
(...skipping 697 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1205 l10n_util::AdjustUIFont(&(ncm.lfCaptionFont)); | 1207 l10n_util::AdjustUIFont(&(ncm.lfCaptionFont)); |
1206 base::win::ScopedHFONT caption_font(CreateFontIndirect(&(ncm.lfCaptionFont))); | 1208 base::win::ScopedHFONT caption_font(CreateFontIndirect(&(ncm.lfCaptionFont))); |
1207 return gfx::FontList(gfx::Font(caption_font)); | 1209 return gfx::FontList(gfx::Font(caption_font)); |
1208 #else | 1210 #else |
1209 return gfx::FontList(); | 1211 return gfx::FontList(); |
1210 #endif | 1212 #endif |
1211 } | 1213 } |
1212 | 1214 |
1213 } // namespace internal | 1215 } // namespace internal |
1214 } // namespace views | 1216 } // namespace views |
OLD | NEW |