OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_BROWSER_COCOA_BROWSER_WINDOW_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_COCOA_BROWSER_WINDOW_CONTROLLER_H_ |
6 #define CHROME_BROWSER_COCOA_BROWSER_WINDOW_CONTROLLER_H_ | 6 #define CHROME_BROWSER_COCOA_BROWSER_WINDOW_CONTROLLER_H_ |
7 | 7 |
8 // A class acting as the Objective-C controller for the Browser | 8 // A class acting as the Objective-C controller for the Browser |
9 // object. Handles interactions between Cocoa and the cross-platform | 9 // object. Handles interactions between Cocoa and the cross-platform |
10 // code. Each window has a single toolbar and, by virtue of being a | 10 // code. Each window has a single toolbar and, by virtue of being a |
(...skipping 226 matching lines...) Loading... |
237 | 237 |
238 // Gets the current theme provider. | 238 // Gets the current theme provider. |
239 - (ThemeProvider*)themeProvider; | 239 - (ThemeProvider*)themeProvider; |
240 | 240 |
241 // Gets the window style. | 241 // Gets the window style. |
242 - (ThemedWindowStyle)themedWindowStyle; | 242 - (ThemedWindowStyle)themedWindowStyle; |
243 | 243 |
244 // Gets the pattern phase for the window. | 244 // Gets the pattern phase for the window. |
245 - (NSPoint)themePatternPhase; | 245 - (NSPoint)themePatternPhase; |
246 | 246 |
247 // Return a point suitable for the topRight for a bookmark bubble. | 247 // Return the point to which a bubble window's arrow should point. |
248 - (NSPoint)topRightForBubble; | 248 - (NSPoint)pointForBubbleArrowTip; |
249 | 249 |
250 @end // @interface BrowserWindowController | 250 @end // @interface BrowserWindowController |
251 | 251 |
252 | 252 |
253 // Methods having to do with the window type (normal/popup/app, and whether the | 253 // Methods having to do with the window type (normal/popup/app, and whether the |
254 // window has various features; fullscreen methods are separate). | 254 // window has various features; fullscreen methods are separate). |
255 @interface BrowserWindowController(WindowType) | 255 @interface BrowserWindowController(WindowType) |
256 | 256 |
257 // Determines whether this controller's window supports a given feature (i.e., | 257 // Determines whether this controller's window supports a given feature (i.e., |
258 // whether a given feature is or can be shown in the window). | 258 // whether a given feature is or can be shown in the window). |
(...skipping 87 matching lines...) Loading... |
346 // capped to be equal to the height of the current workspace. If the window is | 346 // capped to be equal to the height of the current workspace. If the window is |
347 // partially offscreen, its height is not adjusted at all. This function | 347 // partially offscreen, its height is not adjusted at all. This function |
348 // prefers to grow the window down, but will grow up if needed. Calls to this | 348 // prefers to grow the window down, but will grow up if needed. Calls to this |
349 // function should be followed by a call to |layoutSubviews|. | 349 // function should be followed by a call to |layoutSubviews|. |
350 - (void)adjustWindowHeightBy:(CGFloat)deltaH; | 350 - (void)adjustWindowHeightBy:(CGFloat)deltaH; |
351 | 351 |
352 // Return an autoreleased NSWindow suitable for fullscreen use. | 352 // Return an autoreleased NSWindow suitable for fullscreen use. |
353 - (NSWindow*)createFullscreenWindow; | 353 - (NSWindow*)createFullscreenWindow; |
354 | 354 |
355 // Return a point suitable for the topRight for a bookmark bubble. | 355 // Return a point suitable for the topRight for a bookmark bubble. |
356 - (NSPoint)topRightForBubble; | 356 - (NSPoint)pointForBubbleArrowTip; |
357 | 357 |
358 // Resets any saved state about window growth (due to showing the bookmark bar | 358 // Resets any saved state about window growth (due to showing the bookmark bar |
359 // or the download shelf), so that future shrinking will occur from the bottom. | 359 // or the download shelf), so that future shrinking will occur from the bottom. |
360 - (void)resetWindowGrowthState; | 360 - (void)resetWindowGrowthState; |
361 | 361 |
362 @end // @interface BrowserWindowController(TestingAPI) | 362 @end // @interface BrowserWindowController(TestingAPI) |
363 | 363 |
364 | 364 |
365 #endif // CHROME_BROWSER_COCOA_BROWSER_WINDOW_CONTROLLER_H_ | 365 #endif // CHROME_BROWSER_COCOA_BROWSER_WINDOW_CONTROLLER_H_ |
OLD | NEW |