OLD | NEW |
1 // Copyright (c) 2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef BASE_GFX_NATIVE_WIDGET_TYPES_H_ | 5 #ifndef BASE_GFX_NATIVE_WIDGET_TYPES_H_ |
6 #define BASE_GFX_NATIVE_WIDGET_TYPES_H_ | 6 #define BASE_GFX_NATIVE_WIDGET_TYPES_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 | 10 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 @class NSTextField; | 43 @class NSTextField; |
44 #else | 44 #else |
45 class NSView; | 45 class NSView; |
46 class NSWindow; | 46 class NSWindow; |
47 class NSTextField; | 47 class NSTextField; |
48 #endif // __OBJC__ | 48 #endif // __OBJC__ |
49 #elif defined(OS_LINUX) | 49 #elif defined(OS_LINUX) |
50 typedef struct _GdkCursor GdkCursor; | 50 typedef struct _GdkCursor GdkCursor; |
51 typedef struct _GtkWidget GtkWidget; | 51 typedef struct _GtkWidget GtkWidget; |
52 typedef struct _GtkWindow GtkWindow; | 52 typedef struct _GtkWindow GtkWindow; |
53 typedef struct _cairo_surface cairo_surface_t; | 53 typedef struct _cairo cairo_t; |
54 #endif | 54 #endif |
55 | 55 |
56 namespace gfx { | 56 namespace gfx { |
57 | 57 |
58 #if defined(OS_WIN) | 58 #if defined(OS_WIN) |
59 typedef HWND NativeView; | 59 typedef HWND NativeView; |
60 typedef HWND NativeWindow; | 60 typedef HWND NativeWindow; |
61 typedef HWND NativeEditView; | 61 typedef HWND NativeEditView; |
62 typedef HDC NativeDrawingContext; | 62 typedef HDC NativeDrawingContext; |
63 typedef HCURSOR NativeCursor; | 63 typedef HCURSOR NativeCursor; |
64 typedef HMENU NativeMenu; | 64 typedef HMENU NativeMenu; |
65 #elif defined(OS_MACOSX) | 65 #elif defined(OS_MACOSX) |
66 typedef NSView* NativeView; | 66 typedef NSView* NativeView; |
67 typedef NSWindow* NativeWindow; | 67 typedef NSWindow* NativeWindow; |
68 typedef NSTextField* NativeEditView; | 68 typedef NSTextField* NativeEditView; |
69 typedef CGContext* NativeDrawingContext; | 69 typedef CGContext* NativeDrawingContext; |
70 typedef void* NativeCursor; | 70 typedef void* NativeCursor; |
71 typedef void* NativeMenu; | 71 typedef void* NativeMenu; |
72 #elif defined(OS_LINUX) | 72 #elif defined(OS_LINUX) |
73 typedef GtkWidget* NativeView; | 73 typedef GtkWidget* NativeView; |
74 typedef GtkWindow* NativeWindow; | 74 typedef GtkWindow* NativeWindow; |
75 typedef GtkWidget* NativeEditView; | 75 typedef GtkWidget* NativeEditView; |
76 typedef cairo_surface_t* NativeDrawingContext; | 76 typedef cairo_t* NativeDrawingContext; |
77 typedef GdkCursor* NativeCursor; | 77 typedef GdkCursor* NativeCursor; |
78 typedef GtkWidget* NativeMenu; | 78 typedef GtkWidget* NativeMenu; |
79 #endif | 79 #endif |
80 | 80 |
81 // Note: for test_shell we're packing a pointer into the NativeViewId. So, if | 81 // Note: for test_shell we're packing a pointer into the NativeViewId. So, if |
82 // you make it a type which is smaller than a pointer, you have to fix | 82 // you make it a type which is smaller than a pointer, you have to fix |
83 // test_shell. | 83 // test_shell. |
84 // | 84 // |
85 // See comment at the top of the file for usage. | 85 // See comment at the top of the file for usage. |
86 typedef intptr_t NativeViewId; | 86 typedef intptr_t NativeViewId; |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 #else | 134 #else |
135 // On OS X we don't have windowed plugins. | 135 // On OS X we don't have windowed plugins. |
136 // We use a NULL/0 PluginWindowHandle in shared code to indicate there | 136 // We use a NULL/0 PluginWindowHandle in shared code to indicate there |
137 // is no window present, so mirror that behavior here. | 137 // is no window present, so mirror that behavior here. |
138 typedef bool PluginWindowHandle; | 138 typedef bool PluginWindowHandle; |
139 #endif | 139 #endif |
140 | 140 |
141 } // namespace gfx | 141 } // namespace gfx |
142 | 142 |
143 #endif // BASE_GFX_NATIVE_WIDGET_TYPES_H_ | 143 #endif // BASE_GFX_NATIVE_WIDGET_TYPES_H_ |
OLD | NEW |