OLD | NEW |
1 // Copyright (c) 2008, Google Inc. | 1 // Copyright (c) 2008, Google Inc. |
2 // All rights reserved. | 2 // 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 const IntRect& rect, ScrollbarPart part) | 127 const IntRect& rect, ScrollbarPart part) |
128 { | 128 { |
129 // TODO(port): It appears the either we're upsetting GTK by forcing WebKit | 129 // TODO(port): It appears the either we're upsetting GTK by forcing WebKit |
130 // sizes on it, or the buttons expect the track to be drawn under them. | 130 // sizes on it, or the buttons expect the track to be drawn under them. |
131 // Either way, we end up with unpainted pixels which are upsetting the | 131 // Either way, we end up with unpainted pixels which are upsetting the |
132 // pixel tests. Thus we paint green under the buttons to, at least, make | 132 // pixel tests. Thus we paint green under the buttons to, at least, make |
133 // the pixel output the same between debug and opt builds. | 133 // the pixel output the same between debug and opt builds. |
134 SkPaint paint; | 134 SkPaint paint; |
135 paint.setARGB(255, 0, 255, 128); | 135 paint.setARGB(255, 0, 255, 128); |
136 SkRect skrect; | 136 SkRect skrect; |
137 skrect.set(rect.x(), rect.y(), rect.x() + rect.width() - 1, rect.y() + rect.
height() + 1); | 137 skrect.set(rect.x(), rect.y(), rect.x() + rect.width() - 1, rect.y() + rect.
height() - 1); |
138 gc->platformContext()->canvas()->drawRect(skrect, paint); | 138 gc->platformContext()->canvas()->drawRect(skrect, paint); |
139 | 139 |
140 const bool horz = scrollbar->orientation() == HorizontalScrollbar; | 140 const bool horz = scrollbar->orientation() == HorizontalScrollbar; |
141 gint flags = horz ? 0 : MOZ_GTK_STEPPER_VERTICAL; | 141 gint flags = horz ? 0 : MOZ_GTK_STEPPER_VERTICAL; |
142 flags |= ForwardButtonEndPart == part ? MOZ_GTK_STEPPER_DOWN : 0; | 142 flags |= ForwardButtonEndPart == part ? MOZ_GTK_STEPPER_DOWN : 0; |
143 paintScrollbarWidget(gc, rect, MOZ_GTK_SCROLLBAR_BUTTON, flags); | 143 paintScrollbarWidget(gc, rect, MOZ_GTK_SCROLLBAR_BUTTON, flags); |
144 } | 144 } |
145 | 145 |
146 void ScrollbarThemeChromium::paintThumb(GraphicsContext* gc, Scrollbar* scrollba
r, const IntRect& rect) | 146 void ScrollbarThemeChromium::paintThumb(GraphicsContext* gc, Scrollbar* scrollba
r, const IntRect& rect) |
147 { | 147 { |
148 const bool horz = scrollbar->orientation() == HorizontalScrollbar; | 148 const bool horz = scrollbar->orientation() == HorizontalScrollbar; |
149 const GtkThemeWidgetType thumb_type = | 149 const GtkThemeWidgetType thumb_type = |
150 horz ? MOZ_GTK_SCROLLBAR_THUMB_HORIZONTAL : MOZ_GTK_SCROLLBAR_THUMB_VERT
ICAL; | 150 horz ? MOZ_GTK_SCROLLBAR_THUMB_HORIZONTAL : MOZ_GTK_SCROLLBAR_THUMB_VERT
ICAL; |
151 paintScrollbarWidget(gc, rect, thumb_type, 0); | 151 paintScrollbarWidget(gc, rect, thumb_type, 0); |
152 } | 152 } |
153 | 153 |
154 } // namespace WebCore | 154 } // namespace WebCore |
OLD | NEW |