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/win/hwnd_message_handler.h" | 5 #include "ui/views/win/hwnd_message_handler.h" |
6 | 6 |
7 #include <dwmapi.h> | 7 #include <dwmapi.h> |
8 #include <oleacc.h> | 8 #include <oleacc.h> |
9 #include <shellapi.h> | 9 #include <shellapi.h> |
10 #include <wtsapi32.h> | 10 #include <wtsapi32.h> |
(...skipping 850 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
861 } | 861 } |
862 | 862 |
863 void HWNDMessageHandler::SetFullscreen(bool fullscreen) { | 863 void HWNDMessageHandler::SetFullscreen(bool fullscreen) { |
864 fullscreen_handler()->SetFullscreen(fullscreen); | 864 fullscreen_handler()->SetFullscreen(fullscreen); |
865 // If we are out of fullscreen and there was a pending DWM transition for the | 865 // If we are out of fullscreen and there was a pending DWM transition for the |
866 // window, then go ahead and do it now. | 866 // window, then go ahead and do it now. |
867 if (!fullscreen && dwm_transition_desired_) | 867 if (!fullscreen && dwm_transition_desired_) |
868 PerformDwmTransition(); | 868 PerformDwmTransition(); |
869 } | 869 } |
870 | 870 |
| 871 void HWNDMessageHandler::SizeConstraintsChanged() { |
| 872 LONG style = GetWindowLong(hwnd(), GWL_STYLE); |
| 873 if (delegate_->CanResize()) { |
| 874 style |= WS_THICKFRAME | WS_MAXIMIZEBOX; |
| 875 if (!delegate_->CanMaximize()) |
| 876 style &= ~WS_MAXIMIZEBOX; |
| 877 } else { |
| 878 style &= ~(WS_THICKFRAME | WS_MAXIMIZEBOX); |
| 879 } |
| 880 if (delegate_->CanMinimize()) { |
| 881 style |= WS_MINIMIZEBOX; |
| 882 } else { |
| 883 style &= ~WS_MINIMIZEBOX; |
| 884 } |
| 885 SetWindowLong(hwnd(), GWL_STYLE, style); |
| 886 } |
| 887 |
871 //////////////////////////////////////////////////////////////////////////////// | 888 //////////////////////////////////////////////////////////////////////////////// |
872 // HWNDMessageHandler, InputMethodDelegate implementation: | 889 // HWNDMessageHandler, InputMethodDelegate implementation: |
873 | 890 |
874 void HWNDMessageHandler::DispatchKeyEventPostIME(const ui::KeyEvent& key) { | 891 void HWNDMessageHandler::DispatchKeyEventPostIME(const ui::KeyEvent& key) { |
875 SetMsgHandled(delegate_->HandleKeyEvent(key)); | 892 SetMsgHandled(delegate_->HandleKeyEvent(key)); |
876 } | 893 } |
877 | 894 |
878 //////////////////////////////////////////////////////////////////////////////// | 895 //////////////////////////////////////////////////////////////////////////////// |
879 // HWNDMessageHandler, gfx::WindowImpl overrides: | 896 // HWNDMessageHandler, gfx::WindowImpl overrides: |
880 | 897 |
(...skipping 1583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2464 SetWindowPos(hwnd(), NULL, 0, 0, 0, 0, flags | SWP_HIDEWINDOW); | 2481 SetWindowPos(hwnd(), NULL, 0, 0, 0, 0, flags | SWP_HIDEWINDOW); |
2465 SetWindowPos(hwnd(), NULL, 0, 0, 0, 0, flags | SWP_SHOWWINDOW); | 2482 SetWindowPos(hwnd(), NULL, 0, 0, 0, 0, flags | SWP_SHOWWINDOW); |
2466 } | 2483 } |
2467 // WM_DWMCOMPOSITIONCHANGED is only sent to top level windows, however we want | 2484 // WM_DWMCOMPOSITIONCHANGED is only sent to top level windows, however we want |
2468 // to notify our children too, since we can have MDI child windows who need to | 2485 // to notify our children too, since we can have MDI child windows who need to |
2469 // update their appearance. | 2486 // update their appearance. |
2470 EnumChildWindows(hwnd(), &SendDwmCompositionChanged, NULL); | 2487 EnumChildWindows(hwnd(), &SendDwmCompositionChanged, NULL); |
2471 } | 2488 } |
2472 | 2489 |
2473 } // namespace views | 2490 } // namespace views |
OLD | NEW |