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

Unified Diff: chrome/browser/ui/cocoa/menu_controller_unittest.mm

Issue 5697005: Change SimpleMenuModel on OSX to support dynamic icons (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update after merge Created 10 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/cocoa/menu_controller.mm ('k') | chrome/browser/ui/toolbar/back_forward_menu_model.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/cocoa/menu_controller_unittest.mm
diff --git a/chrome/browser/ui/cocoa/menu_controller_unittest.mm b/chrome/browser/ui/cocoa/menu_controller_unittest.mm
index 9171adfde22d7f3a7fd358b66e1c4a2fe6e8fe08..8e00c5312a5ef7421d2577b36fb7d05813f67282 100644
--- a/chrome/browser/ui/cocoa/menu_controller_unittest.mm
+++ b/chrome/browser/ui/cocoa/menu_controller_unittest.mm
@@ -5,11 +5,14 @@
#import <Cocoa/Cocoa.h>
#include "app/menus/simple_menu_model.h"
+#include "app/resource_bundle.h"
#include "base/sys_string_conversions.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/ui/cocoa/cocoa_test_helper.h"
#include "chrome/browser/ui/cocoa/menu_controller.h"
+#include "grit/app_resources.h"
#include "grit/generated_resources.h"
+#include "third_party/skia/include/core/SkBitmap.h"
class MenuControllerTest : public CocoaTest {
};
@@ -34,6 +37,29 @@ class Delegate : public menus::SimpleMenuModel::Delegate {
mutable int enable_count_;
};
+// Just like Delegate, except the items are treated as "dynamic" so updates to
+// the label/icon in the model are reflected in the menu.
+class DynamicDelegate : public Delegate {
+ public:
+ DynamicDelegate() : icon_(NULL) {}
+ virtual bool IsItemForCommandIdDynamic(int command_id) const { return true; }
+ virtual string16 GetLabelForCommandId(int command_id) const { return label_; }
+ virtual bool GetIconForCommandId(int command_id, SkBitmap* icon) const {
+ if (icon_) {
+ *icon = *icon_;
+ return true;
+ } else {
+ return false;
+ }
+ }
+ void SetDynamicLabel(string16 label) { label_ = label; }
+ void SetDynamicIcon(SkBitmap* icon) { icon_ = icon; }
+
+ private:
+ string16 label_;
+ SkBitmap* icon_;
+};
+
TEST_F(MenuControllerTest, EmptyMenu) {
Delegate delegate;
menus::SimpleMenuModel model(&delegate);
@@ -195,3 +221,42 @@ TEST_F(MenuControllerTest, DefaultInitializer) {
model.AddItem(4, ASCIIToUTF16("four"));
EXPECT_EQ(3, [[menu menu] numberOfItems]);
}
+
+// Test that menus with dynamic labels actually get updated.
+TEST_F(MenuControllerTest, Dynamic) {
+ DynamicDelegate delegate;
+
+ // Create a menu containing a single item whose label is "initial" and who has
+ // no icon.
+ string16 initial = ASCIIToUTF16("initial");
+ delegate.SetDynamicLabel(initial);
+ menus::SimpleMenuModel model(&delegate);
+ model.AddItem(1, ASCIIToUTF16("foo"));
+ scoped_nsobject<MenuController> menu(
+ [[MenuController alloc] initWithModel:&model useWithPopUpButtonCell:NO]);
+ EXPECT_EQ([[menu menu] numberOfItems], 1);
+ // Validate() simulates opening the menu - the item label/icon should be
+ // initialized after this so we can validate the menu contents.
+ Validate(menu.get(), [menu menu]);
+ NSMenuItem* item = [[menu menu] itemAtIndex:0];
+ // Item should have the "initial" label and no icon.
+ EXPECT_EQ(initial, base::SysNSStringToUTF16([item title]));
+ EXPECT_EQ(nil, [item image]);
+
+ // Now update the item to have a label of "second" and an icon.
+ string16 second = ASCIIToUTF16("second");
+ delegate.SetDynamicLabel(second);
+ SkBitmap* bitmap =
+ ResourceBundle::GetSharedInstance().GetBitmapNamed(IDR_THROBBER);
+ delegate.SetDynamicIcon(bitmap);
+ // Simulate opening the menu and validate that the item label + icon changes.
+ Validate(menu.get(), [menu menu]);
+ EXPECT_EQ(second, base::SysNSStringToUTF16([item title]));
+ EXPECT_TRUE([item image] != nil);
+
+ // Now get rid of the icon and make sure it goes away.
+ delegate.SetDynamicIcon(NULL);
+ Validate(menu.get(), [menu menu]);
+ EXPECT_EQ(second, base::SysNSStringToUTF16([item title]));
+ EXPECT_EQ(nil, [item image]);
+}
« no previous file with comments | « chrome/browser/ui/cocoa/menu_controller.mm ('k') | chrome/browser/ui/toolbar/back_forward_menu_model.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698