Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(301)

Side by Side Diff: chrome/browser/ui/cocoa/themed_window.h

Issue 19918002: Refactor [FramedBrowserWindow drawWindowThemeInDirtyRect:] to use themeImagePositionForAlignment: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_UI_COCOA_THEMED_WINDOW_H_ 5 #ifndef CHROME_BROWSER_UI_COCOA_THEMED_WINDOW_H_
6 #define CHROME_BROWSER_UI_COCOA_THEMED_WINDOW_H_ 6 #define CHROME_BROWSER_UI_COCOA_THEMED_WINDOW_H_
7 7
8 #import <Cocoa/Cocoa.h> 8 #import <Cocoa/Cocoa.h>
9 9
10 namespace ui { 10 namespace ui {
11 class ThemeProvider; 11 class ThemeProvider;
12 } 12 }
13 using ui::ThemeProvider; 13 using ui::ThemeProvider;
14 14
15 // Bit flags; mix-and-match as necessary. 15 // Bit flags; mix-and-match as necessary.
16 enum { 16 enum {
17 THEMED_NORMAL = 0, 17 THEMED_NORMAL = 0,
18 THEMED_INCOGNITO = 1 << 0, 18 THEMED_INCOGNITO = 1 << 0,
19 THEMED_POPUP = 1 << 1, 19 THEMED_POPUP = 1 << 1,
20 THEMED_DEVTOOLS = 1 << 2 20 THEMED_DEVTOOLS = 1 << 2
21 }; 21 };
22 typedef NSUInteger ThemedWindowStyle; 22 typedef NSUInteger ThemedWindowStyle;
23 23
24 // Indicates how the theme image should be aligned. 24 // Indicates how the theme image should be aligned.
25 enum ThemePatternAlignment { 25 enum ThemeImageAlignment {
26 // Aligns the top of the theme image with the top of the frame. Use this 26 // Aligns the top of the theme image with the top of the frame. Use this
27 // for IDR_THEME_THEME_FRAME.* 27 // for IDR_THEME_THEME_FRAME.*
28 THEME_PATTERN_ALIGN_WITH_FRAME, 28 THEME_IMAGE_ALIGN_WITH_FRAME,
29 // Aligns the top of the theme image with the top of the tab 29 // Aligns the top of the theme image with the top of the tabs.
30 // strip. Use this for IDR_THEME_TAB_BACKGROUND and IDR_THEME_TOOLBAR. 30 // Use this for IDR_THEME_TAB_BACKGROUND and IDR_THEME_TOOLBAR.
31 THEME_PATTERN_ALIGN_WITH_TAB_STRIP 31 THEME_IMAGE_ALIGN_WITH_TAB_STRIP
32 }; 32 };
33 33
34 // Implemented by windows that support theming. 34 // Implemented by windows that support theming.
35 35
36 @interface NSWindow (ThemeProvider) 36 @interface NSWindow (ThemeProvider)
37 - (ThemeProvider*)themeProvider; 37 - (ThemeProvider*)themeProvider;
38 - (ThemedWindowStyle)themedWindowStyle; 38 - (ThemedWindowStyle)themedWindowStyle;
39 - (NSPoint)themePatternPhaseForAlignment:(ThemePatternAlignment)alignment; 39
40 // Returns the position in the coordinates of the root view
41 // ([[self contentView] superview]) that the top left of a theme image with
42 // |alignment| should be painted at. The result of this method can be used in
43 // conjunction with [NSGraphicsContext cr_setPatternPhase:] to set the offset of
44 // pattern colors.
45 - (NSPoint)themeImagePositionForAlignment:(ThemeImageAlignment)alignment;
40 @end 46 @end
41 47
42 #endif // CHROME_BROWSER_UI_COCOA_THEMED_WINDOW_H_ 48 #endif // CHROME_BROWSER_UI_COCOA_THEMED_WINDOW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698