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

Unified Diff: chrome/browser/cocoa/accelerators_cocoa.h

Issue 2800019: [Mac] Give the Wrench menu keyboard shortcuts. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Split out keymap into new file Created 10 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/cocoa/accelerators_cocoa.h
diff --git a/chrome/browser/cocoa/accelerators_cocoa.h b/chrome/browser/cocoa/accelerators_cocoa.h
new file mode 100644
index 0000000000000000000000000000000000000000..da7d6304432ef8ff5fd8e799311911e443a09d0e
--- /dev/null
+++ b/chrome/browser/cocoa/accelerators_cocoa.h
@@ -0,0 +1,38 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_COCOA_ACCELERATORS_COCOA_H_
+#define CHROME_BROWSER_COCOA_ACCELERATORS_COCOA_H_
+
+#include <map>
+
+#include "app/menus/accelerator_cocoa.h"
+
+// This class maintains a map of command_ids to AcceleratorCocoa objects (see
+// chrome/app/chrome_dll_resource.h). Currently, this only lists the commands
+// that are used in the Wrench menu.
+//
+// It is recommended that this class be used as a singleton so that the key map
+// isn't created multiple places.
+//
+// #import "base/singleton.h"
+// ...
+// AcceleratorsCocoa* keymap = Singleton<AcceleratorsCocoa>::get();
+// return keymap->GetAcceleratorForCommand(IDC_COPY);
+//
+class AcceleratorsCocoa {
+ public:
+ AcceleratorsCocoa();
+ ~AcceleratorsCocoa() {}
+
+ typedef std::map<int, menus::AcceleratorCocoa> AcceleratorCocoaMap;
+
+ // Returns NULL if there is no accelerator for the command.
+ const menus::AcceleratorCocoa* GetAcceleratorForCommand(int command_id);
+
+ private:
+ AcceleratorCocoaMap accelerators_;
pink (ping after 24hrs) 2010/06/21 19:21:56 DISALLOW_COPY_AND_ASSIGN(AcceleratorsCocoa)?
+};
+
+#endif // CHROME_BROWSER_COCOA_ACCELERATORS_COCOA_H_

Powered by Google App Engine
This is Rietveld 408576698