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
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54
   55

ash / wm / tablet_mode / internal_input_devices_event_blocker.h [blame]

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef ASH_WM_TABLET_MODE_INTERNAL_INPUT_DEVICES_EVENT_BLOCKER_H_
#define ASH_WM_TABLET_MODE_INTERNAL_INPUT_DEVICES_EVENT_BLOCKER_H_

#include "ash/ash_export.h"
#include "ui/events/devices/input_device_event_observer.h"

namespace ash {

// Helper class to temporarily disable the internal touchpad and keyboard.
class ASH_EXPORT InternalInputDevicesEventBlocker
    : public ui::InputDeviceEventObserver {
 public:
  InternalInputDevicesEventBlocker();

  InternalInputDevicesEventBlocker(const InternalInputDevicesEventBlocker&) =
      delete;
  InternalInputDevicesEventBlocker& operator=(
      const InternalInputDevicesEventBlocker&) = delete;

  ~InternalInputDevicesEventBlocker() override;

  // ui::InputDeviceEventObserver:
  void OnInputDeviceConfigurationChanged(uint8_t input_device_types) override;

  void UpdateInternalInputDevices(bool should_block);

  bool should_be_blocked() const { return should_be_blocked_; }

 private:
  bool HasInternalTouchpad();
  bool HasInternalKeyboard();

  void UpdateInternalTouchpad(bool should_block);
  void UpdateInternalKeyboard(bool should_block);

  // |should_be_blocked_| might not be equal to (|is_touchpad_blocked_| &&
  // |is_keyboard_blocked_|) as when UpdateInternalInputDevices() is called,
  // |should_be_blocked_| is guranteed to be updated, but |is_touchpad_blocked_|
  // or |is_keyboard_blocked_| might not be updated because there might not be
  // an internal touchpad or keyboard at that moment (currently it can only be
  // the case for Whiskers keyboard, which is a detachable keyboard but is
  // regarded as the internal keyboard for Moewth).
  bool should_be_blocked_ = false;

  bool is_touchpad_blocked_ = false;
  bool is_keyboard_blocked_ = false;
};

}  // namespace ash

#endif  // ASH_WM_TABLET_MODE_INTERNAL_INPUT_DEVICES_EVENT_BLOCKER_H_