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
   56
   57
   58
   59
   60
   61
   62
   63
   64
   65
   66
   67
   68
   69

ash / public / cpp / stylus_utils.cc [blame]

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

#include "ash/public/cpp/stylus_utils.h"

#include "ash/constants/ash_switches.h"
#include "base/command_line.h"
#include "ui/display/display.h"
#include "ui/events/devices/device_data_manager.h"
#include "ui/events/devices/touchscreen_device.h"
#include "ui/gfx/geometry/point.h"

namespace ash {
namespace stylus_utils {

namespace {
// If true the device performs as if it is hardware reports that it is stylus
// capable.
bool g_has_stylus_input_for_testing = false;
}  // namespace

bool HasForcedStylusInput() {
  return base::CommandLine::ForCurrentProcess()->HasSwitch(
      switches::kAshForceEnableStylusTools);
}

bool HasStylusInput() {
  if (g_has_stylus_input_for_testing)
    return true;

  // Allow the user to force enable or disable by passing a switch. If both are
  // present, enabling takes precedence over disabling.
  if (HasForcedStylusInput())
    return true;

  // Check to see if the hardware reports it is stylus capable.
  for (const ui::TouchscreenDevice& device :
       ui::DeviceDataManager::GetInstance()->GetTouchscreenDevices()) {
    if (device.has_stylus &&
        (device.type == ui::InputDeviceType::INPUT_DEVICE_INTERNAL ||
         device.type == ui::InputDeviceType::INPUT_DEVICE_USB)) {
      return true;
    }
  }

  return false;
}

bool IsPaletteEnabledOnEveryDisplay() {
  return base::CommandLine::ForCurrentProcess()->HasSwitch(
      switches::kAshEnablePaletteOnAllDisplays);
}

bool HasInternalStylus() {
  return base::CommandLine::ForCurrentProcess()->HasSwitch(
      switches::kHasInternalStylus);
}

void SetHasStylusInputForTesting() {
  g_has_stylus_input_for_testing = true;
}

void SetNoStylusInputForTesting() {
  g_has_stylus_input_for_testing = false;
}

}  // namespace stylus_utils
}  // namespace ash