OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2006, 2008 Apple Inc. All rights reserved. | 2 * Copyright (C) 2004, 2006, 2008 Apple 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 | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 SouthResize, | 51 SouthResize, |
52 SouthEastResize, | 52 SouthEastResize, |
53 SouthWestResize, | 53 SouthWestResize, |
54 WestResize, | 54 WestResize, |
55 NorthSouthResize, | 55 NorthSouthResize, |
56 EastWestResize, | 56 EastWestResize, |
57 NorthEastSouthWestResize, | 57 NorthEastSouthWestResize, |
58 NorthWestSouthEastResize, | 58 NorthWestSouthEastResize, |
59 ColumnResize, | 59 ColumnResize, |
60 RowResize, | 60 RowResize, |
| 61 #if OS(WIN) |
61 MiddlePanning, | 62 MiddlePanning, |
62 EastPanning, | 63 EastPanning, |
63 NorthPanning, | 64 NorthPanning, |
64 NorthEastPanning, | 65 NorthEastPanning, |
65 NorthWestPanning, | 66 NorthWestPanning, |
66 SouthPanning, | 67 SouthPanning, |
67 SouthEastPanning, | 68 SouthEastPanning, |
68 SouthWestPanning, | 69 SouthWestPanning, |
69 WestPanning, | 70 WestPanning, |
| 71 #endif |
70 Move, | 72 Move, |
71 VerticalText, | 73 VerticalText, |
72 Cell, | 74 Cell, |
73 ContextMenu, | 75 ContextMenu, |
74 Alias, | 76 Alias, |
75 Progress, | 77 Progress, |
76 NoDrop, | 78 NoDrop, |
77 Copy, | 79 Copy, |
78 None, | 80 None, |
79 NotAllowed, | 81 NotAllowed, |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 PLATFORM_EXPORT const Cursor& zoomInCursor(); | 163 PLATFORM_EXPORT const Cursor& zoomInCursor(); |
162 PLATFORM_EXPORT const Cursor& zoomOutCursor(); | 164 PLATFORM_EXPORT const Cursor& zoomOutCursor(); |
163 PLATFORM_EXPORT const Cursor& copyCursor(); | 165 PLATFORM_EXPORT const Cursor& copyCursor(); |
164 PLATFORM_EXPORT const Cursor& noneCursor(); | 166 PLATFORM_EXPORT const Cursor& noneCursor(); |
165 PLATFORM_EXPORT const Cursor& grabCursor(); | 167 PLATFORM_EXPORT const Cursor& grabCursor(); |
166 PLATFORM_EXPORT const Cursor& grabbingCursor(); | 168 PLATFORM_EXPORT const Cursor& grabbingCursor(); |
167 | 169 |
168 } // namespace WebCore | 170 } // namespace WebCore |
169 | 171 |
170 #endif // Cursor_h | 172 #endif // Cursor_h |
OLD | NEW |