summaryrefslogtreecommitdiffstats
path: root/chrome/browser/chromeos/keyboard_driven_event_rewriter.h
blob: 96e053d12f8fdc2c6f6c3b167540d04e7837d808 (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
// Copyright 2013 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_CHROMEOS_KEYBOARD_DRIVEN_EVENT_REWRITER_H_
#define CHROME_BROWSER_CHROMEOS_KEYBOARD_DRIVEN_EVENT_REWRITER_H_

#include "base/basictypes.h"

typedef union _XEvent XEvent;

namespace chromeos {

// KeyboardDrivenEventRewriter removes the modifier flags from
// Shift+<Arrow keys|Enter|F6> key events. This mapping only happens
// on login screen and only when the keyboard driven oobe is enabled.
class KeyboardDrivenEventRewriter {
 public:
  KeyboardDrivenEventRewriter();
  ~KeyboardDrivenEventRewriter();

  // Calls RewriteEvent to modify |event| if it is on login screen and the
  // keyboard driven flag is enabled. Returns true if the event is changed
  // and no further changes should happen.
  bool RewriteIfKeyboardDrivenOnLoginScreen(XEvent* event);

  // Calls RewriteEvent for testing.
  bool RewriteForTesting(XEvent* event);

 private:
  bool RewriteEvent(XEvent* event);

  DISALLOW_COPY_AND_ASSIGN(KeyboardDrivenEventRewriter);
};

}  // namespace chromeos

#endif  // CHROME_BROWSER_CHROMEOS_KEYBOARD_DRIVEN_EVENT_REWRITER_H_