blob: 3c99b30bdf53ba5bd7f4eabfd04e89a9e38e0686 [file] [log] [blame]
// 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 ASH_AUTOCLICK_AUTOCLICK_CONTROLLER_H
#define ASH_AUTOCLICK_AUTOCLICK_CONTROLLER_H
#include "ash/ash_export.h"
#include "base/macros.h"
#include "base/time/time.h"
namespace ash {
// Controls the autoclick a11y feature in ash.
// If enabled, we will automatically send a click event a short time after
// the mouse had been at rest.
class ASH_EXPORT AutoclickController {
public:
virtual ~AutoclickController() {}
// Set whether autoclicking is enabled.
virtual void SetEnabled(bool enabled) = 0;
// Returns true if autoclicking is enabled.
virtual bool IsEnabled() const = 0;
// Set the time to wait in milliseconds from when the mouse stops moving
// to when the autoclick event is sent.
virtual void SetAutoclickDelay(base::TimeDelta delay) = 0;
static AutoclickController* CreateInstance();
// The default wait time between last mouse movement and sending
// the autoclick.
static const int kDefaultAutoclickDelayMs;
// Gets the default wait time as a base::TimeDelta object.
static base::TimeDelta GetDefaultAutoclickDelay();
protected:
AutoclickController() {}
private:
DISALLOW_COPY_AND_ASSIGN(AutoclickController);
};
} // namespace ash
#endif // ASH_AUTOCLICK_AUTOCLICK_CONTROLLER_H