#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 {
bool g_has_stylus_input_for_testing = false;
}
bool HasForcedStylusInput() {
return base::CommandLine::ForCurrentProcess()->HasSwitch(
switches::kAshForceEnableStylusTools);
}
bool HasStylusInput() {
if (g_has_stylus_input_for_testing)
return true;
if (HasForcedStylusInput())
return true;
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;
}
}
}