blob: 46abbcca82f22e397f7fdddfbf16733b8b6089c0 (
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
|
// Copyright (c) 2009 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_VIEWS_ACCELERATOR_TABLE_GTK_H_
#define CHROME_BROWSER_VIEWS_ACCELERATOR_TABLE_GTK_H_
#pragma once
#include <stdio.h>
#include "base/keyboard_codes.h"
// This contains the list of accelerators for the Linux toolkit_view
// implementation.
namespace browser {
struct AcceleratorMapping {
base::KeyboardCode keycode;
bool shift_pressed;
bool ctrl_pressed;
bool alt_pressed;
int command_id;
};
// The list of accelerators.
extern const AcceleratorMapping kAcceleratorMap[];
// The numbers of elements in kAcceleratorMap.
extern const size_t kAcceleratorMapLength;
}
#endif // CHROME_BROWSER_VIEWS_ACCELERATOR_TABLE_GTK_H_
|