| 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/controls/menu/native_menu_win.h" | 5 #include "ui/views/controls/menu/native_menu_win.h" |
| 6 | 6 |
| 7 #include <Windowsx.h> | 7 #include <Windowsx.h> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/message_loop.h" | 11 #include "base/message_loop.h" |
| 12 #include "base/stl_util.h" | 12 #include "base/stl_util.h" |
| 13 #include "base/string_util.h" | 13 #include "base/string_util.h" |
| 14 #include "base/win/wrapped_window_proc.h" | 14 #include "base/win/wrapped_window_proc.h" |
| 15 #include "third_party/skia/include/core/SkBitmap.h" | 15 #include "third_party/skia/include/core/SkBitmap.h" |
| 16 #include "ui/base/accelerators/accelerator.h" | 16 #include "ui/base/accelerators/accelerator.h" |
| 17 #include "ui/base/keycodes/keyboard_codes.h" | 17 #include "ui/base/keycodes/keyboard_codes.h" |
| 18 #include "ui/base/l10n/l10n_util.h" | 18 #include "ui/base/l10n/l10n_util.h" |
| 19 #include "ui/base/l10n/l10n_util_win.h" | 19 #include "ui/base/l10n/l10n_util_win.h" |
| 20 #include "ui/base/models/menu_model.h" | 20 #include "ui/base/models/menu_model.h" |
| 21 #include "ui/base/native_theme/native_theme.h" | |
| 22 #include "ui/base/win/hwnd_util.h" | 21 #include "ui/base/win/hwnd_util.h" |
| 23 #include "ui/gfx/canvas.h" | 22 #include "ui/gfx/canvas.h" |
| 24 #include "ui/gfx/font.h" | 23 #include "ui/gfx/font.h" |
| 24 #include "ui/gfx/native_theme.h" |
| 25 #include "ui/gfx/rect.h" | 25 #include "ui/gfx/rect.h" |
| 26 #include "ui/views/controls/menu/menu_2.h" | 26 #include "ui/views/controls/menu/menu_2.h" |
| 27 #include "ui/views/controls/menu/menu_config.h" | 27 #include "ui/views/controls/menu/menu_config.h" |
| 28 #include "ui/views/controls/menu/menu_listener.h" | 28 #include "ui/views/controls/menu/menu_listener.h" |
| 29 | 29 |
| 30 using ui::NativeTheme; | 30 using gfx::NativeTheme; |
| 31 | 31 |
| 32 namespace views { | 32 namespace views { |
| 33 | 33 |
| 34 // The width of an icon, including the pixels between the icon and | 34 // The width of an icon, including the pixels between the icon and |
| 35 // the item label. | 35 // the item label. |
| 36 static const int kIconWidth = 23; | 36 static const int kIconWidth = 23; |
| 37 // Margins between the top of the item and the label. | 37 // Margins between the top of the item and the label. |
| 38 static const int kItemTopMargin = 3; | 38 static const int kItemTopMargin = 3; |
| 39 // Margins between the bottom of the item and the label. | 39 // Margins between the bottom of the item and the label. |
| 40 static const int kItemBottomMargin = 4; | 40 static const int kItemBottomMargin = 4; |
| (...skipping 707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 748 | 748 |
| 749 //////////////////////////////////////////////////////////////////////////////// | 749 //////////////////////////////////////////////////////////////////////////////// |
| 750 // MenuWrapper, public: | 750 // MenuWrapper, public: |
| 751 | 751 |
| 752 // static | 752 // static |
| 753 MenuWrapper* MenuWrapper::CreateWrapper(ui::MenuModel* model) { | 753 MenuWrapper* MenuWrapper::CreateWrapper(ui::MenuModel* model) { |
| 754 return new NativeMenuWin(model, NULL); | 754 return new NativeMenuWin(model, NULL); |
| 755 } | 755 } |
| 756 | 756 |
| 757 } // namespace views | 757 } // namespace views |
| OLD | NEW |