OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2008, 2009, Google Inc. All rights reserved. | 2 * Copyright (c) 2008, 2009, 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 } | 43 } |
44 | 44 |
45 void FramelessScrollView::invalidateScrollbarRect(Scrollbar* scrollbar, const In
tRect& rect) | 45 void FramelessScrollView::invalidateScrollbarRect(Scrollbar* scrollbar, const In
tRect& rect) |
46 { | 46 { |
47 // Add in our offset within the ScrollView. | 47 // Add in our offset within the ScrollView. |
48 IntRect dirtyRect = rect; | 48 IntRect dirtyRect = rect; |
49 dirtyRect.move(scrollbar->x(), scrollbar->y()); | 49 dirtyRect.move(scrollbar->x(), scrollbar->y()); |
50 invalidateRect(dirtyRect); | 50 invalidateRect(dirtyRect); |
51 } | 51 } |
52 | 52 |
53 bool FramelessScrollView::isActive() const | 53 bool FramelessScrollView::isActiveFocus() const |
54 { | 54 { |
55 // FIXME | 55 // FIXME |
56 return true; | 56 return true; |
57 } | 57 } |
58 | 58 |
59 bool FramelessScrollView::scrollbarsCanBeActive() const | 59 bool FramelessScrollView::scrollbarsCanBeActive() const |
60 { | 60 { |
61 return isActive(); | 61 return isActiveFocus(); |
62 } | 62 } |
63 | 63 |
64 IntRect FramelessScrollView::scrollableAreaBoundingBox() const | 64 IntRect FramelessScrollView::scrollableAreaBoundingBox() const |
65 { | 65 { |
66 return windowClipRect(IncludeScrollbars); | 66 return windowClipRect(IncludeScrollbars); |
67 } | 67 } |
68 | 68 |
69 void FramelessScrollView::invalidateRect(const IntRect& rect) | 69 void FramelessScrollView::invalidateRect(const IntRect& rect) |
70 { | 70 { |
71 if (HostWindow* h = hostWindow()) | 71 if (HostWindow* h = hostWindow()) |
(...skipping 19 matching lines...) Expand all Loading... |
91 | 91 |
92 void FramelessScrollView::contentsResized() | 92 void FramelessScrollView::contentsResized() |
93 { | 93 { |
94 } | 94 } |
95 | 95 |
96 void FramelessScrollView::scrollbarExistenceDidChange() | 96 void FramelessScrollView::scrollbarExistenceDidChange() |
97 { | 97 { |
98 } | 98 } |
99 | 99 |
100 } // namespace WebCore | 100 } // namespace WebCore |
OLD | NEW |