OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/scrollbar/bitmap_scroll_bar.h" | 5 #include "ui/views/controls/scrollbar/bitmap_scroll_bar.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/bind_helpers.h" | 8 #include "base/bind_helpers.h" |
9 #include "base/callback.h" | 9 #include "base/callback.h" |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "base/message_loop.h" | 11 #include "base/message_loop.h" |
12 #include "base/string16.h" | 12 #include "base/string16.h" |
13 #include "base/utf_string_conversions.h" | 13 #include "base/utf_string_conversions.h" |
14 #include "build/build_config.h" | 14 #include "build/build_config.h" |
15 #include "grit/ui_strings.h" | 15 #include "grit/ui_strings.h" |
16 #include "third_party/skia/include/core/SkBitmap.h" | 16 #include "third_party/skia/include/core/SkBitmap.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/gfx/canvas.h" | 19 #include "ui/gfx/canvas.h" |
20 #include "ui/views/controls/menu/menu.h" | 20 #include "ui/views/controls/menu/menu.h" |
21 #include "ui/views/controls/scroll_view.h" | 21 #include "ui/views/controls/scroll_view.h" |
22 #include "ui/views/controls/scrollbar/base_scroll_bar_thumb.h" | 22 #include "ui/views/controls/scrollbar/base_scroll_bar_thumb.h" |
23 #include "ui/views/widget/widget.h" | 23 #include "ui/views/widget/widget.h" |
24 | 24 |
25 #if defined(OS_LINUX) | 25 #if defined(OS_LINUX) |
26 #include "views/screen.h" | 26 #include "ui/views/screen.h" |
27 #endif | 27 #endif |
28 | 28 |
29 #undef min | 29 #undef min |
30 #undef max | 30 #undef max |
31 | 31 |
32 namespace views { | 32 namespace views { |
33 | 33 |
34 namespace { | 34 namespace { |
35 | 35 |
36 // The distance the mouse can be dragged outside the bounds of the thumb during | 36 // The distance the mouse can be dragged outside the bounds of the thumb during |
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
303 | 303 |
304 void BitmapScrollBar::ButtonPressed(Button* sender, const views::Event& event) { | 304 void BitmapScrollBar::ButtonPressed(Button* sender, const views::Event& event) { |
305 if (sender == prev_button_) { | 305 if (sender == prev_button_) { |
306 ScrollByAmount(SCROLL_PREV_LINE); | 306 ScrollByAmount(SCROLL_PREV_LINE); |
307 } else if (sender == next_button_) { | 307 } else if (sender == next_button_) { |
308 ScrollByAmount(SCROLL_NEXT_LINE); | 308 ScrollByAmount(SCROLL_NEXT_LINE); |
309 } | 309 } |
310 } | 310 } |
311 | 311 |
312 } // namespace views | 312 } // namespace views |
OLD | NEW |