OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 #import "chrome/browser/cocoa/back_forward_menu_controller.h" | 5 #import "chrome/browser/cocoa/back_forward_menu_controller.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/scoped_ptr.h" | 8 #include "base/scoped_ptr.h" |
9 #include "base/sys_string_conversions.h" | 9 #include "base/sys_string_conversions.h" |
10 #include "chrome/browser/back_forward_menu_model.h" | 10 #include "chrome/browser/back_forward_menu_model.h" |
(...skipping 12 matching lines...) Expand all Loading... |
23 // Own methods: | 23 // Own methods: |
24 | 24 |
25 - (id)initWithBrowser:(Browser*)browser | 25 - (id)initWithBrowser:(Browser*)browser |
26 modelType:(BackForwardMenuType)type | 26 modelType:(BackForwardMenuType)type |
27 button:(DelayedMenuButton*)button { | 27 button:(DelayedMenuButton*)button { |
28 if ((self = [super init])) { | 28 if ((self = [super init])) { |
29 type_ = type; | 29 type_ = type; |
30 button_ = button; | 30 button_ = button; |
31 model_.reset(new BackForwardMenuModel(browser, type_)); | 31 model_.reset(new BackForwardMenuModel(browser, type_)); |
32 DCHECK(model_.get()); | 32 DCHECK(model_.get()); |
33 menu_.reset([[NSMenu alloc] initWithTitle:@""]); | 33 backForwardMenu_.reset([[NSMenu alloc] initWithTitle:@""]); |
34 DCHECK(menu_.get()); | 34 DCHECK(backForwardMenu_.get()); |
35 [menu_ setDelegate:self]; | 35 [backForwardMenu_ setDelegate:self]; |
36 | 36 |
37 [button_ setMenu:menu_]; | 37 [button_ setAttachedMenu:backForwardMenu_]; |
38 [button_ setMenuEnabled:YES]; | 38 [button_ setAttachedMenuEnabled:YES]; |
39 } | 39 } |
40 return self; | 40 return self; |
41 } | 41 } |
42 | 42 |
43 // Methods as delegate: | 43 // Methods as delegate: |
44 | 44 |
45 // Called by menu_ just before tracking begins. | 45 // Called by backForwardMenu_ just before tracking begins. |
46 //TODO(viettrungluu@gmail.com): do anything for chapter stops (see model)? | 46 //TODO(viettrungluu@gmail.com): do anything for chapter stops (see model)? |
47 - (void)menuNeedsUpdate:(NSMenu*)menu { | 47 - (void)menuNeedsUpdate:(NSMenu*)menu { |
48 DCHECK(menu == menu_); | 48 DCHECK(menu == backForwardMenu_); |
49 | 49 |
50 // Remove old menu items (backwards order is as good as any). | 50 // Remove old menu items (backwards order is as good as any). |
51 for (NSInteger i = [menu_ numberOfItems]; i > 0; i--) | 51 for (NSInteger i = [menu numberOfItems]; i > 0; i--) |
52 [menu_ removeItemAtIndex:(i-1)]; | 52 [menu removeItemAtIndex:(i-1)]; |
53 | 53 |
54 // 0-th item must be blank. (This is because we use a pulldown list, for which | 54 // 0-th item must be blank. (This is because we use a pulldown list, for which |
55 // Cocoa uses the 0-th item as "title" in the button.) | 55 // Cocoa uses the 0-th item as "title" in the button.) |
56 [menu_ insertItemWithTitle:@"" | 56 [menu insertItemWithTitle:@"" |
57 action:nil | 57 action:nil |
58 keyEquivalent:@"" | 58 keyEquivalent:@"" |
59 atIndex:0]; | 59 atIndex:0]; |
60 for (int menuID = 1; menuID <= model_->GetTotalItemCount(); menuID++) { | 60 for (int menuID = 1; menuID <= model_->GetTotalItemCount(); menuID++) { |
61 if (model_->IsSeparator(menuID)) { | 61 if (model_->IsSeparator(menuID)) { |
62 [menu_ insertItem:[NSMenuItem separatorItem] | 62 [menu insertItem:[NSMenuItem separatorItem] |
63 atIndex:menuID]; | 63 atIndex:menuID]; |
64 } else { | 64 } else { |
65 // Create a menu item with the right label. | 65 // Create a menu item with the right label. |
66 NSMenuItem* menuItem = [[NSMenuItem alloc] | 66 NSMenuItem* menuItem = [[NSMenuItem alloc] |
67 initWithTitle:SysUTF16ToNSString(model_->GetItemLabel(menuID)) | 67 initWithTitle:SysUTF16ToNSString(model_->GetItemLabel(menuID)) |
68 action:nil | 68 action:nil |
69 keyEquivalent:@""]; | 69 keyEquivalent:@""]; |
70 [menuItem autorelease]; | 70 [menuItem autorelease]; |
71 | 71 |
72 // Only enable it if it's supposed to do something. | 72 // Only enable it if it's supposed to do something. |
73 [menuItem setEnabled:(model_->ItemHasCommand(menuID) ? YES : NO)]; | 73 [menuItem setEnabled:(model_->ItemHasCommand(menuID) ? YES : NO)]; |
74 | 74 |
75 // Icon (if it has one). | 75 // Icon (if it has one). |
76 if (model_->ItemHasIcon(menuID)) | 76 if (model_->ItemHasIcon(menuID)) |
77 [menuItem setImage:SkBitmapToNSImage(model_->GetItemIcon(menuID))]; | 77 [menuItem setImage:SkBitmapToNSImage(model_->GetItemIcon(menuID))]; |
78 | 78 |
79 // This will make it call our |-executeMenuItem:| method. We store the | 79 // This will make it call our |-executeMenuItem:| method. We store the |
80 // |menuID| (or |menu_id|) in the tag. | 80 // |menuID| (or |menu_id|) in the tag. |
81 [menuItem setTag:menuID]; | 81 [menuItem setTag:menuID]; |
82 [menuItem setTarget:self]; | 82 [menuItem setTarget:self]; |
83 [menuItem setAction:@selector(executeMenuItem:)]; | 83 [menuItem setAction:@selector(executeMenuItem:)]; |
84 | 84 |
85 // Put it in the menu! | 85 // Put it in the menu! |
86 [menu_ insertItem:menuItem | 86 [menu insertItem:menuItem |
87 atIndex:menuID]; | 87 atIndex:menuID]; |
88 } | 88 } |
89 } | 89 } |
90 } | 90 } |
91 | 91 |
92 // Action methods: | 92 // Action methods: |
93 | 93 |
94 - (void)executeMenuItem:(id)sender { | 94 - (void)executeMenuItem:(id)sender { |
95 DCHECK([sender isKindOfClass:[NSMenuItem class]]); | 95 DCHECK([sender isKindOfClass:[NSMenuItem class]]); |
96 int menuID = [sender tag]; | 96 int menuID = [sender tag]; |
97 model_->ExecuteCommandById(menuID); | 97 model_->ExecuteCommandById(menuID); |
98 } | 98 } |
99 | 99 |
100 @end // @implementation BackForwardMenuController | 100 @end // @implementation BackForwardMenuController |
OLD | NEW |