OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
3 * Copyright (C) 2008, 2009 Google, Inc. | 3 * Copyright (C) 2008, 2009 Google, Inc. |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 997 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1008 { | 1008 { |
1009 return -9; | 1009 return -9; |
1010 } | 1010 } |
1011 | 1011 |
1012 void LayoutThemeMac::adjustSliderThumbSize(ComputedStyle& style) const | 1012 void LayoutThemeMac::adjustSliderThumbSize(ComputedStyle& style) const |
1013 { | 1013 { |
1014 float zoomLevel = style.effectiveZoom(); | 1014 float zoomLevel = style.effectiveZoom(); |
1015 if (style.appearance() == SliderThumbHorizontalPart || style.appearance() ==
SliderThumbVerticalPart) { | 1015 if (style.appearance() == SliderThumbHorizontalPart || style.appearance() ==
SliderThumbVerticalPart) { |
1016 style.setWidth(Length(static_cast<int>(sliderThumbWidth * zoomLevel), Fi
xed)); | 1016 style.setWidth(Length(static_cast<int>(sliderThumbWidth * zoomLevel), Fi
xed)); |
1017 style.setHeight(Length(static_cast<int>(sliderThumbHeight * zoomLevel),
Fixed)); | 1017 style.setHeight(Length(static_cast<int>(sliderThumbHeight * zoomLevel),
Fixed)); |
| 1018 } else { |
| 1019 adjustMediaSliderThumbSize(style); |
1018 } | 1020 } |
1019 | |
1020 adjustMediaSliderThumbSize(style); | |
1021 } | 1021 } |
1022 | 1022 |
1023 NSPopUpButtonCell* LayoutThemeMac::popupButton() const | 1023 NSPopUpButtonCell* LayoutThemeMac::popupButton() const |
1024 { | 1024 { |
1025 if (!m_popupButton) { | 1025 if (!m_popupButton) { |
1026 m_popupButton.adoptNS([[NSPopUpButtonCell alloc] initTextCell:@"" pullsD
own:NO]); | 1026 m_popupButton.adoptNS([[NSPopUpButtonCell alloc] initTextCell:@"" pullsD
own:NO]); |
1027 [m_popupButton.get() setUsesItemFromMenu:NO]; | 1027 [m_popupButton.get() setUsesItemFromMenu:NO]; |
1028 [m_popupButton.get() setFocusRingType:NSFocusRingTypeExterior]; | 1028 [m_popupButton.get() setFocusRingType:NSFocusRingTypeExterior]; |
1029 } | 1029 } |
1030 | 1030 |
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1174 | 1174 |
1175 bool LayoutThemeMac::shouldUseFallbackTheme(const ComputedStyle& style) const | 1175 bool LayoutThemeMac::shouldUseFallbackTheme(const ComputedStyle& style) const |
1176 { | 1176 { |
1177 ControlPart part = style.appearance(); | 1177 ControlPart part = style.appearance(); |
1178 if (part == CheckboxPart || part == RadioPart) | 1178 if (part == CheckboxPart || part == RadioPart) |
1179 return style.effectiveZoom() != 1; | 1179 return style.effectiveZoom() != 1; |
1180 return false; | 1180 return false; |
1181 } | 1181 } |
1182 | 1182 |
1183 } // namespace blink | 1183 } // namespace blink |
OLD | NEW |