comparison src/video/cocoa/cocoa_v.h @ 19968:0dba7f49118c draft

(svn r24900) -Fix [FS#5389]: Comments with typos (most fixes supplied by Eagle_rainbow)
author planetmaker <planetmaker@openttd.org>
date Tue, 08 Jan 2013 22:46:42 +0000
parents 8ac2645a140c
children 0f2b93bab299
comparison
equal deleted inserted replaced
19967:c2d0016cc9d6 19968:0dba7f49118c
132 * @return whether fullscreen mode is currently used 132 * @return whether fullscreen mode is currently used
133 */ 133 */
134 virtual bool IsFullscreen() = 0; 134 virtual bool IsFullscreen() = 0;
135 135
136 /** Toggle between fullscreen and windowed mode 136 /** Toggle between fullscreen and windowed mode
137 * @return whether switch was successfull 137 * @return whether switch was successful
138 */ 138 */
139 virtual bool ToggleFullscreen() { return false; }; 139 virtual bool ToggleFullscreen() { return false; };
140 140
141 /** Return the width of the current view 141 /** Return the width of the current view
142 * @return width of the current view 142 * @return width of the current view
178 178
179 /** Makes the *game region* of the window 100% opaque. */ 179 /** Makes the *game region* of the window 100% opaque. */
180 virtual void SetPortAlphaOpaque() { return; }; 180 virtual void SetPortAlphaOpaque() { return; };
181 181
182 /** Whether the window was successfully resized 182 /** Whether the window was successfully resized
183 * @return whether the window was succesfully resized 183 * @return whether the window was successfully resized
184 */ 184 */
185 virtual bool WindowResized() { return false; }; 185 virtual bool WindowResized() { return false; };
186 }; 186 };
187 187
188 extern CocoaSubdriver *_cocoa_subdriver; 188 extern CocoaSubdriver *_cocoa_subdriver;