OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2009, Google Inc. | 2 * Copyright 2009, Google Inc. |
3 * All rights reserved. | 3 * All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 #include "plugin/cross/o3d_glue.h" | 42 #include "plugin/cross/o3d_glue.h" |
43 #include "plugin/cross/config.h" | 43 #include "plugin/cross/config.h" |
44 #include "plugin/cross/stream_manager.h" | 44 #include "plugin/cross/stream_manager.h" |
45 #include "client_glue.h" | 45 #include "client_glue.h" |
46 #include "globals_glue.h" | 46 #include "globals_glue.h" |
47 | 47 |
48 #ifdef OS_MACOSX | 48 #ifdef OS_MACOSX |
49 #include "plugin_mac.h" | 49 #include "plugin_mac.h" |
50 #endif | 50 #endif |
51 | 51 |
| 52 #ifdef OS_LINUX |
| 53 #include <X11/cursorfont.h> |
| 54 #endif |
| 55 |
52 namespace glue { | 56 namespace glue { |
53 namespace _o3d { | 57 namespace _o3d { |
54 | 58 |
55 void RegisterType(NPP npp, const ObjectBase::Class *clientclass, | 59 void RegisterType(NPP npp, const ObjectBase::Class *clientclass, |
56 NPClass *npclass) { | 60 NPClass *npclass) { |
57 PluginObject *plugin_object = static_cast<PluginObject *>(npp->pdata); | 61 PluginObject *plugin_object = static_cast<PluginObject *>(npp->pdata); |
58 plugin_object->RegisterType(clientclass, npclass); | 62 plugin_object->RegisterType(clientclass, npclass); |
59 } | 63 } |
60 | 64 |
61 bool CheckObject(NPP npp, NPObject *npobject, | 65 bool CheckObject(NPP npp, NPObject *npobject, |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 mac_surface_hidden_(0), | 131 mac_surface_hidden_(0), |
128 mac_2d_context_(0), | 132 mac_2d_context_(0), |
129 mac_agl_context_(0), | 133 mac_agl_context_(0), |
130 mac_cgl_context_(0), | 134 mac_cgl_context_(0), |
131 last_mac_event_time_(0), | 135 last_mac_event_time_(0), |
132 time_to_hide_overlay_(0.0), | 136 time_to_hide_overlay_(0.0), |
133 #endif | 137 #endif |
134 #ifdef OS_LINUX | 138 #ifdef OS_LINUX |
135 display_(NULL), | 139 display_(NULL), |
136 window_(0), | 140 window_(0), |
| 141 fullscreen_window_(0), |
137 xt_widget_(NULL), | 142 xt_widget_(NULL), |
138 xt_app_context_(NULL), | 143 xt_app_context_(NULL), |
139 xt_interval_(0), | 144 xt_interval_(0), |
140 last_click_time_(0), | 145 last_click_time_(0), |
141 drawable_(0), | 146 drawable_(0), |
142 gtk_container_(NULL), | 147 gtk_container_(NULL), |
143 gtk_fullscreen_container_(NULL), | 148 gtk_fullscreen_container_(NULL), |
144 gtk_event_source_(NULL), | 149 gtk_event_source_(NULL), |
145 event_handler_id_(0), | 150 event_handler_id_(0), |
146 timeout_id_(0), | 151 timeout_id_(0), |
147 fullscreen_pending_(false), | 152 fullscreen_pending_(false), |
148 draw_(true), | 153 draw_(true), |
149 in_plugin_(false), | 154 in_plugin_(false), |
150 #endif | 155 #endif |
151 #if defined(CB_SERVICE_REMOTE) | 156 #if defined(CB_SERVICE_REMOTE) |
152 gpu_plugin_object_(NULL), | 157 gpu_plugin_object_(NULL), |
153 #endif | 158 #endif |
154 np_v8_bridge_(&service_locator_, npp), | 159 np_v8_bridge_(&service_locator_, npp), |
155 stream_manager_(new StreamManager(npp)), | 160 stream_manager_(new StreamManager(npp)), |
156 cursor_type_(o3d::Cursor::DEFAULT), | 161 cursor_type_(o3d::Cursor::DEFAULT), |
157 prev_width_(0), | 162 prev_width_(0), |
158 prev_height_(0) { | 163 prev_height_(0) { |
159 #ifdef OS_WIN | 164 #if defined(OS_WIN) || defined(OS_LINUX) |
160 memset(cursors_, 0, sizeof(cursors_)); | 165 memset(cursors_, 0, sizeof(cursors_)); |
161 #endif | 166 #endif |
162 | 167 |
163 #ifdef OS_MACOSX | 168 #ifdef OS_MACOSX |
164 memset(last_buffer_rect_, 0, sizeof(last_buffer_rect_)); | 169 memset(last_buffer_rect_, 0, sizeof(last_buffer_rect_)); |
165 #endif | 170 #endif |
166 | 171 |
167 #ifdef OS_LINUX | 172 #ifdef OS_LINUX |
168 memset(got_double_click_, 0, sizeof(got_double_click_)); | 173 memset(got_double_click_, 0, sizeof(got_double_click_)); |
169 #endif | 174 #endif |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 np_v8_bridge_.Initialize(np_window_ptr); | 208 np_v8_bridge_.Initialize(np_window_ptr); |
204 | 209 |
205 o3d::NPObjectPtr<NPObject> np_plugin_ptr(this); | 210 o3d::NPObjectPtr<NPObject> np_plugin_ptr(this); |
206 np_v8_bridge_.SetGlobalProperty(o3d::String("plugin"), | 211 np_v8_bridge_.SetGlobalProperty(o3d::String("plugin"), |
207 np_plugin_ptr); | 212 np_plugin_ptr); |
208 } | 213 } |
209 | 214 |
210 void PluginObject::TearDown() { | 215 void PluginObject::TearDown() { |
211 #ifdef OS_WIN | 216 #ifdef OS_WIN |
212 ClearPluginProperty(hWnd_); | 217 ClearPluginProperty(hWnd_); |
| 218 #elif defined(OS_MACOSX) |
| 219 o3d::ReleaseSafariBrowserWindow(mac_cocoa_window_); |
| 220 #elif defined(OS_LINUX) |
| 221 SetDisplay(NULL); |
213 #endif // OS_WIN | 222 #endif // OS_WIN |
214 #ifdef OS_MACOSX | |
215 o3d::ReleaseSafariBrowserWindow(mac_cocoa_window_); | |
216 #endif | |
217 UnmapAll(); | 223 UnmapAll(); |
218 | 224 |
219 // Delete the StreamManager to cleanup any streams that are in midflight. | 225 // Delete the StreamManager to cleanup any streams that are in midflight. |
220 // This needs to happen here, before the client is deleted as the streams | 226 // This needs to happen here, before the client is deleted as the streams |
221 // could be holding references to FileRequest objects. | 227 // could be holding references to FileRequest objects. |
222 stream_manager_.reset(NULL); | 228 stream_manager_.reset(NULL); |
223 | 229 |
224 delete client_; | 230 delete client_; |
225 client_ = NULL; | 231 client_ = NULL; |
226 | 232 |
(...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
859 cursors_[cursor_type_] = ::LoadCursor(NULL, | 865 cursors_[cursor_type_] = ::LoadCursor(NULL, |
860 O3DToWindowsCursor(cursor_type_)); | 866 O3DToWindowsCursor(cursor_type_)); |
861 } | 867 } |
862 ::SetCursor(cursors_[cursor_type_]); | 868 ::SetCursor(cursors_[cursor_type_]); |
863 } | 869 } |
864 | 870 |
865 #endif // OS_WIN | 871 #endif // OS_WIN |
866 | 872 |
867 #ifdef OS_LINUX | 873 #ifdef OS_LINUX |
868 | 874 |
| 875 void PluginObject::SetDisplay(Display *display) { |
| 876 if (display_ != display) { |
| 877 if (display_) { |
| 878 for (int i = 0; i < o3d::Cursor::NUM_CURSORS; ++i) { |
| 879 if (cursors_[i]) { |
| 880 XFreeCursor(display_, cursors_[i]); |
| 881 cursors_[i] = 0; |
| 882 } |
| 883 } |
| 884 } |
| 885 display_ = display; |
| 886 } |
| 887 } |
| 888 |
| 889 static unsigned int O3DToX11Cursor(o3d::Cursor::CursorType cursor_type) { |
| 890 switch (cursor_type) { |
| 891 case o3d::Cursor::DEFAULT: |
| 892 return XC_arrow; |
| 893 case o3d::Cursor::NONE: |
| 894 NOTIMPLEMENTED(); |
| 895 return XC_arrow; |
| 896 case o3d::Cursor::CROSSHAIR: |
| 897 return XC_crosshair; |
| 898 case o3d::Cursor::POINTER: |
| 899 return XC_hand2; |
| 900 case o3d::Cursor::E_RESIZE: |
| 901 return XC_right_side; |
| 902 case o3d::Cursor::NE_RESIZE: |
| 903 return XC_top_right_corner; |
| 904 case o3d::Cursor::NW_RESIZE: |
| 905 return XC_top_left_corner; |
| 906 case o3d::Cursor::N_RESIZE: |
| 907 return XC_top_side; |
| 908 case o3d::Cursor::SE_RESIZE: |
| 909 return XC_bottom_right_corner; |
| 910 case o3d::Cursor::SW_RESIZE: |
| 911 return XC_bottom_left_corner; |
| 912 case o3d::Cursor::S_RESIZE: |
| 913 return XC_bottom_side; |
| 914 case o3d::Cursor::W_RESIZE: |
| 915 return XC_left_side; |
| 916 case o3d::Cursor::MOVE: |
| 917 return XC_fleur; |
| 918 case o3d::Cursor::TEXT: |
| 919 return XC_xterm; |
| 920 case o3d::Cursor::WAIT: |
| 921 return XC_watch; |
| 922 case o3d::Cursor::PROGRESS: |
| 923 NOTIMPLEMENTED(); |
| 924 return XC_watch; |
| 925 case o3d::Cursor::HELP: |
| 926 NOTIMPLEMENTED(); |
| 927 return XC_arrow; |
| 928 } |
| 929 return XC_arrow; |
| 930 } |
| 931 |
869 void PluginObject::PlatformSpecificSetCursor() { | 932 void PluginObject::PlatformSpecificSetCursor() { |
870 // TODO: fill this in. | 933 if (!cursors_[cursor_type_]) { |
| 934 cursors_[cursor_type_] = |
| 935 XCreateFontCursor(display_, O3DToX11Cursor(cursor_type_)); |
| 936 } |
| 937 Window window = fullscreen_ ? fullscreen_window_ : window_; |
| 938 XDefineCursor(display_, window, cursors_[cursor_type_]); |
871 } | 939 } |
872 | 940 |
873 #endif // OS_LINUX | 941 #endif // OS_LINUX |
874 | 942 |
875 namespace { | 943 namespace { |
876 void TickPluginObject(void* data) { | 944 void TickPluginObject(void* data) { |
877 PluginObject* plugin_object = static_cast<PluginObject*>(data); | 945 PluginObject* plugin_object = static_cast<PluginObject*>(data); |
878 | 946 |
879 // Check the plugin has not been destroyed already. Chrome sometimes invokes | 947 // Check the plugin has not been destroyed already. Chrome sometimes invokes |
880 // async callbacks after destruction. | 948 // async callbacks after destruction. |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
990 PluginObject *plugin_object = static_cast<PluginObject *>(npp->pdata); | 1058 PluginObject *plugin_object = static_cast<PluginObject *>(npp->pdata); |
991 if (plugin_object) { // May not be initialized yet. | 1059 if (plugin_object) { // May not be initialized yet. |
992 return plugin_object->client()->ProfileToString(); | 1060 return plugin_object->client()->ProfileToString(); |
993 } else { | 1061 } else { |
994 return ""; | 1062 return ""; |
995 } | 1063 } |
996 } | 1064 } |
997 | 1065 |
998 } // namespace globals | 1066 } // namespace globals |
999 } // namespace glue | 1067 } // namespace glue |
OLD | NEW |