OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 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 | |
6 #include "chromeos/ime/ime_keyboard.h" | |
7 | |
8 #include <cstdlib> | |
9 #include <cstring> | |
10 #include <queue> | |
11 #include <set> | |
12 #include <utility> | |
13 | |
14 #include "base/bind.h" | |
15 #include "base/logging.h" | |
16 #include "base/memory/scoped_ptr.h" | |
17 #include "base/message_loop/message_loop.h" | |
18 #include "base/process/kill.h" | |
19 #include "base/process/launch.h" | |
20 #include "base/process/process_handle.h" | |
21 #include "base/strings/string_util.h" | |
22 #include "base/strings/stringprintf.h" | |
23 #include "base/sys_info.h" | |
24 #include "base/threading/thread_checker.h" | |
25 #include "ui/gfx/x/x11_types.h" | |
26 | |
27 // These includes conflict with base/tracked_objects.h so must come last. | |
28 #include <X11/XKBlib.h> | |
29 #include <X11/Xlib.h> | |
30 | |
31 | |
32 namespace chromeos { | |
33 namespace input_method { | |
34 namespace { | |
35 | |
36 class ImeKeyboardX11 : public ImeKeyboard { | |
37 public: | |
38 ImeKeyboardX11(); | |
39 virtual ~ImeKeyboardX11() {} | |
Shu Chen
2014/10/27 09:52:01
Complex destructor should NOT has an inline body.
FengYuan
2014/10/27 12:48:04
Done.
| |
40 | |
41 // Adds/removes observer. | |
42 virtual void AddObserver(Observer* observer) override; | |
43 virtual void RemoveObserver(Observer* observer) override; | |
44 | |
45 // ImeKeyboard: | |
46 virtual bool SetCurrentKeyboardLayoutByName( | |
47 const std::string& layout_name) override; | |
48 virtual bool ReapplyCurrentKeyboardLayout() override; | |
49 virtual void ReapplyCurrentModifierLockStatus() override; | |
50 virtual void DisableNumLock() override; | |
51 virtual void SetCapsLockEnabled(bool enable_caps_lock) override; | |
52 virtual bool CapsLockIsEnabled() override; | |
53 virtual bool IsISOLevel5ShiftAvailable() const override; | |
54 virtual bool IsAltGrAvailable() const override; | |
55 virtual bool SetAutoRepeatEnabled(bool enabled) override; | |
56 virtual bool SetAutoRepeatRate(const AutoRepeatRate& rate) override; | |
57 | |
58 private: | |
59 // Returns a mask for Num Lock (e.g. 1U << 4). Returns 0 on error. | |
60 unsigned int GetNumLockMask(); | |
61 | |
62 // Sets the caps-lock status. Note that calling this function always disables | |
63 // the num-lock. | |
64 void SetLockedModifiers(bool caps_lock_enabled); | |
65 | |
66 // This function is used by SetLayout() and RemapModifierKeys(). Calls | |
67 // setxkbmap command if needed, and updates the last_full_layout_name_ cache. | |
68 bool SetLayoutInternal(const std::string& layout_name, bool force); | |
69 | |
70 // Executes 'setxkbmap -layout ...' command asynchronously using a layout name | |
71 // in the |execute_queue_|. Do nothing if the queue is empty. | |
72 // TODO(yusukes): Use libxkbfile.so instead of the command (crosbug.com/13105) | |
73 void MaybeExecuteSetLayoutCommand(); | |
74 | |
75 // Polls to see setxkbmap process exits. | |
76 void PollUntilChildFinish(const base::ProcessHandle handle); | |
77 | |
78 // Called when execve'd setxkbmap process exits. | |
79 void OnSetLayoutFinish(); | |
80 | |
81 const bool is_running_on_chrome_os_; | |
82 unsigned int num_lock_mask_; | |
83 | |
84 // The current Caps Lock status. If true, enabled. | |
85 bool current_caps_lock_status_; | |
86 | |
87 // The XKB layout name which we set last time like "us" and "us(dvorak)". | |
88 std::string current_layout_name_; | |
89 | |
90 // A queue for executing setxkbmap one by one. | |
91 std::queue<std::string> execute_queue_; | |
92 | |
93 base::ThreadChecker thread_checker_; | |
94 | |
95 base::WeakPtrFactory<ImeKeyboardX11> weak_factory_; | |
96 | |
97 ObserverList<Observer> observers_; | |
98 | |
99 DISALLOW_COPY_AND_ASSIGN(ImeKeyboardX11); | |
100 }; | |
101 | |
102 | |
103 } // namespace | |
104 | |
105 } // namespace input_method | |
106 } // namespace chromeos | |
107 | |
OLD | NEW |