| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2011, Google Inc. All rights reserved. | 2 * Copyright (c) 2011, Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 */ | 29 */ |
| 30 | 30 |
| 31 #include "config.h" | 31 #include "config.h" |
| 32 #include "PopupListBox.h" | 32 #include "PopupListBox.h" |
| 33 | 33 |
| 34 #include "CSSValueKeywords.h" | 34 #include "CSSValueKeywords.h" |
| 35 #include "PopupContainer.h" | 35 #include "PopupContainer.h" |
| 36 #include "PopupMenuChromium.h" | 36 #include "PopupMenuChromium.h" |
| 37 #include "RuntimeEnabledFeatures.h" | 37 #include "RuntimeEnabledFeatures.h" |
| 38 #include "core/platform/PopupMenuClient.h" | 38 #include "core/platform/PopupMenuClient.h" |
| 39 #include "core/platform/ScrollbarTheme.h" | |
| 40 #include "core/platform/chromium/FramelessScrollViewClient.h" | 39 #include "core/platform/chromium/FramelessScrollViewClient.h" |
| 41 #include "core/platform/chromium/KeyboardCodes.h" | 40 #include "core/platform/chromium/KeyboardCodes.h" |
| 42 #include "core/platform/graphics/Font.h" | |
| 43 #include "core/platform/graphics/FontCache.h" | |
| 44 #include "core/platform/graphics/GraphicsContext.h" | |
| 45 #include "core/platform/graphics/StringTruncator.h" | 41 #include "core/platform/graphics/StringTruncator.h" |
| 46 #include "core/rendering/RenderTheme.h" | 42 #include "core/rendering/RenderTheme.h" |
| 47 #include "platform/PlatformGestureEvent.h" | 43 #include "platform/PlatformGestureEvent.h" |
| 48 #include "platform/PlatformKeyboardEvent.h" | 44 #include "platform/PlatformKeyboardEvent.h" |
| 49 #include "platform/PlatformMouseEvent.h" | 45 #include "platform/PlatformMouseEvent.h" |
| 50 #include "platform/PlatformScreen.h" | 46 #include "platform/PlatformScreen.h" |
| 51 #include "platform/PlatformTouchEvent.h" | 47 #include "platform/PlatformTouchEvent.h" |
| 52 #include "platform/PlatformWheelEvent.h" | 48 #include "platform/PlatformWheelEvent.h" |
| 49 #include "platform/fonts/Font.h" |
| 50 #include "platform/fonts/FontCache.h" |
| 53 #include "platform/fonts/FontSelector.h" | 51 #include "platform/fonts/FontSelector.h" |
| 54 #include "platform/geometry/IntRect.h" | 52 #include "platform/geometry/IntRect.h" |
| 53 #include "platform/graphics/GraphicsContext.h" |
| 55 #include "platform/graphics/TextRun.h" | 54 #include "platform/graphics/TextRun.h" |
| 55 #include "platform/scroll/ScrollbarTheme.h" |
| 56 #include "wtf/ASCIICType.h" | 56 #include "wtf/ASCIICType.h" |
| 57 #include "wtf/CurrentTime.h" | 57 #include "wtf/CurrentTime.h" |
| 58 #include <limits> | 58 #include <limits> |
| 59 | 59 |
| 60 namespace WebCore { | 60 namespace WebCore { |
| 61 | 61 |
| 62 using namespace WTF::Unicode; | 62 using namespace WTF::Unicode; |
| 63 | 63 |
| 64 static const int labelToIconPadding = 5; | 64 static const int labelToIconPadding = 5; |
| 65 // Padding height put at the top and bottom of each line. | 65 // Padding height put at the top and bottom of each line. |
| (...skipping 871 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 937 { | 937 { |
| 938 return numItems() && IntRect(0, 0, width(), height()).contains(point); | 938 return numItems() && IntRect(0, 0, width(), height()).contains(point); |
| 939 } | 939 } |
| 940 | 940 |
| 941 int PopupListBox::popupContentHeight() const | 941 int PopupListBox::popupContentHeight() const |
| 942 { | 942 { |
| 943 return height(); | 943 return height(); |
| 944 } | 944 } |
| 945 | 945 |
| 946 } // namespace WebCore | 946 } // namespace WebCore |
| OLD | NEW |