blob: 2741ef72854940104b05e01bee4f2eacd03f5211 [file] [log] [blame]
[email protected]3641da6c2009-07-08 14:59:061// 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
3// found in the LICENSE file.
4
5#ifndef CHROME_BROWSER_GLOBAL_KEYBOARD_SHORTCUTS_MAC_H_
6#define CHROME_BROWSER_GLOBAL_KEYBOARD_SHORTCUTS_MAC_H_
[email protected]32b76ef2010-07-26 23:08:247#pragma once
[email protected]3641da6c2009-07-08 14:59:068
[email protected]70be00a2009-07-08 23:40:089#include "base/basictypes.h"
[email protected]3641da6c2009-07-08 14:59:0610
11struct KeyboardShortcutData {
12 bool command_key;
13 bool shift_key;
14 bool cntrl_key;
[email protected]f7378a32009-10-21 17:15:2815 bool opt_key;
[email protected]92f5adfa2010-01-05 09:49:1216 // Either one of vkey_code or key_char must be specified. For keys
17 // whose virtual key code is hardware-dependent (kVK_ANSI_*) key_char
18 // should be specified instead.
19 // Set 0 for the one you do not want to specify.
[email protected]3641da6c2009-07-08 14:59:0620 int vkey_code; // Virtual Key code for the command.
[email protected]92f5adfa2010-01-05 09:49:1221 unichar key_char; // Key event characters for the command as reported by
22 // [NSEvent charactersIgnoringModifiers].
[email protected]3641da6c2009-07-08 14:59:0623 int chrome_command; // The chrome command # to execute for this shortcut.
24};
25
[email protected]92f5adfa2010-01-05 09:49:1226// Check if a given keycode + modifiers (or keychar + modifiers if the
27// |key_char| is specified) correspond to a given Chrome command.
[email protected]3641da6c2009-07-08 14:59:0628// returns: Command number (as passed to Browser::ExecuteCommand) or -1 if there
29// was no match.
[email protected]1d313b832009-10-09 01:26:2030//
[email protected]1ade7b62009-12-18 08:56:1831// |performKeyEquivalent:| bubbles events up from the window to the views. If
32// we let it bubble up to the Omnibox, then the Omnibox handles cmd-left/right
33// just fine, but it swallows cmd-1 and doesn't give us a chance to intercept
34// this. Hence, we need three types of keyboard shortcuts: shortcuts that are
35// intercepted before the Omnibox handles events, shortcuts that are
36// intercepted after the Omnibox had a chance but did not handle them, and
37// shortcuts that are only handled when tab contents is focused.
[email protected]1d313b832009-10-09 01:26:2038//
39// This means cmd-left doesn't work if you hit cmd-l tab, which focusses
40// something that's neither omnibox nor tab contents. This behavior is
41// consistent with safari and camino, and I think it's the best we can do
42// without rewriting event dispatching ( http://crbug.com/251069 ).
43
44// This returns shortcuts that should work no matter what component of the
45// browser is focused. They are executed by the window, before any view has the
46// opportunity to override the shortcut (with the exception of the tab contents,
47// which first checks if the current web page wants to handle the shortcut).
48int CommandForWindowKeyboardShortcut(
[email protected]f7378a32009-10-21 17:15:2849 bool command_key, bool shift_key, bool cntrl_key, bool opt_key,
[email protected]92f5adfa2010-01-05 09:49:1250 int vkey_code, unichar key_char);
[email protected]1d313b832009-10-09 01:26:2051
[email protected]1ade7b62009-12-18 08:56:1852// This returns shortcuts that should work no matter what component of the
53// browser is focused. They are executed by the window, after any view has the
54// opportunity to override the shortcut
55int CommandForDelayedWindowKeyboardShortcut(
56 bool command_key, bool shift_key, bool cntrl_key, bool opt_key,
[email protected]92f5adfa2010-01-05 09:49:1257 int vkey_code, unichar key_char);
[email protected]1ade7b62009-12-18 08:56:1858
[email protected]1d313b832009-10-09 01:26:2059// This returns shortcuts that should work only if the tab contents have focus
60// (e.g. cmd-left, which shouldn't do history navigation if e.g. the omnibox has
61// focus).
62int CommandForBrowserKeyboardShortcut(
[email protected]f7378a32009-10-21 17:15:2863 bool command_key, bool shift_key, bool cntrl_key, bool opt_key,
[email protected]92f5adfa2010-01-05 09:49:1264 int vkey_code, unichar key_char);
65
66// Returns a keyboard event character for the given |event|. In most cases
67// this returns the first character of [NSEvent charactersIgnoringModifiers],
68// but when [NSEvent character] has different printable ascii character
69// we may return the first character of [NSEvent characters] instead.
70// (E.g. for dvorak-qwerty layout we want [NSEvent characters] rather than
71// [charactersIgnoringModifiers] for command keys. Similarly, on german
72// layout we want '{' character rather than '8' for opt-8.)
73unichar KeyCharacterForEvent(NSEvent* event);
[email protected]3641da6c2009-07-08 14:59:0674
75// For testing purposes.
[email protected]1d313b832009-10-09 01:26:2076const KeyboardShortcutData* GetWindowKeyboardShortcutTable(size_t* num_entries);
77const KeyboardShortcutData*
[email protected]1ade7b62009-12-18 08:56:1878 GetDelayedWindowKeyboardShortcutTable(size_t* num_entries);
79const KeyboardShortcutData*
[email protected]1d313b832009-10-09 01:26:2080 GetBrowserKeyboardShortcutTable(size_t* num_entries);
[email protected]3641da6c2009-07-08 14:59:0681
82#endif // #ifndef CHROME_BROWSER_GLOBAL_KEYBOARD_SHORTCUTS_MAC_H_