OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright 2010, Google Inc. |
| 3 * All rights reserved. |
| 4 * |
| 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are |
| 7 * met: |
| 8 * |
| 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. |
| 11 * * Redistributions in binary form must reproduce the above |
| 12 * copyright notice, this list of conditions and the following disclaimer |
| 13 * in the documentation and/or other materials provided with the |
| 14 * distribution. |
| 15 * * Neither the name of Google Inc. nor the names of its |
| 16 * contributors may be used to endorse or promote products derived from |
| 17 * this software without specific prior written permission. |
| 18 * |
| 19 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 20 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 21 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 22 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 30 */ |
| 31 |
| 32 #ifndef O3D_PLUGIN_MAC_FULLSCREEN_WINDOW_MAC_H_ |
| 33 #define O3D_PLUGIN_MAC_FULLSCREEN_WINDOW_MAC_H_ |
| 34 |
| 35 #include <OpenGL/OpenGL.h> |
| 36 |
| 37 #include "base/basictypes.h" |
| 38 #include "base/scoped_ptr.h" |
| 39 |
| 40 #include "plugin/mac/overlay_window_mac.h" |
| 41 |
| 42 // Abstract base class for the full-screen window. Provides the |
| 43 // ability to easily choose between Carbon and Cocoa implementations. |
| 44 |
| 45 namespace glue { |
| 46 namespace _o3d { |
| 47 class PluginObject; |
| 48 } // namespace _o3d |
| 49 } // namespace glue |
| 50 |
| 51 namespace o3d { |
| 52 |
| 53 class FullscreenWindowMac { |
| 54 public: |
| 55 static FullscreenWindowMac* Create(glue::_o3d::PluginObject* obj, |
| 56 int target_width, |
| 57 int target_height); |
| 58 virtual ~FullscreenWindowMac(); |
| 59 |
| 60 virtual bool Initialize(int target_width, |
| 61 int target_height); |
| 62 virtual void IdleCallback(); |
| 63 virtual bool Shutdown(const GLint* last_buffer_rect); |
| 64 |
| 65 virtual CGRect GetWindowBounds() const = 0; |
| 66 virtual bool IsActive() const = 0; |
| 67 |
| 68 protected: |
| 69 FullscreenWindowMac() {} |
| 70 |
| 71 private: |
| 72 #ifdef O3D_PLUGIN_ENABLE_FULLSCREEN_MSG |
| 73 scoped_ptr<OverlayWindowMac> overlay_window_; |
| 74 #endif |
| 75 |
| 76 DISALLOW_COPY_AND_ASSIGN(FullscreenWindowMac); |
| 77 }; |
| 78 |
| 79 } // namespace o3d |
| 80 |
| 81 #endif // O3D_PLUGIN_MAC_FULLSCREEN_WINDOW_MAC_H_ |
| 82 |
OLD | NEW |