blob: e43c55054cb1cbcc3e79b4c6bcb6c1a1846957d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
// 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_
#pragma once
#include <map>
#include "app/menus/accelerator_cocoa.h"
// This class maintains a map of command_ids to AcceleratorCocoa objects (see
// chrome/app/chrome_command_ids.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_;
DISALLOW_COPY_AND_ASSIGN(AcceleratorsCocoa);
};
#endif // CHROME_BROWSER_COCOA_ACCELERATORS_COCOA_H_
|