1 // Copyright (c) 2012 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.
5 #ifndef ASH_MAGNIFIER_MAGNIFICATION_CONTROLLER_H_
6 #define ASH_MAGNIFIER_MAGNIFICATION_CONTROLLER_H_
8 #include "ash/ash_export.h"
9 #include "base/compiler_specific.h"
10 #include "base/logging.h"
11 #include "base/memory/scoped_ptr.h"
12 #include "ui/gfx/point.h"
13 #include "ui/gfx/rect.h"
21 class ASH_EXPORT MagnificationController
{
23 enum ScrollDirection
{
31 virtual ~MagnificationController() {}
33 // Creates a new MagnificationController. The caller takes ownership of the
35 static MagnificationController
* CreateInstance();
37 // Enables (or disables if |enabled| is false) screen magnifier feature.
38 virtual void SetEnabled(bool enabled
) = 0;
40 // Returns if the screen magnifier is enabled or not.
41 virtual bool IsEnabled() const = 0;
43 // Sets the magnification ratio. 1.0f means no magnification.
44 virtual void SetScale(float scale
, bool animate
) = 0;
45 // Returns the current magnification ratio.
46 virtual float GetScale() const = 0;
48 // Set the top-left point of the magnification window.
49 virtual void MoveWindow(int x
, int y
, bool animate
) = 0;
50 virtual void MoveWindow(const gfx::Point
& point
, bool animate
) = 0;
51 // Returns the current top-left point of the magnification window.
52 virtual gfx::Point
GetWindowPosition() const = 0;
54 virtual void SetScrollDirection(ScrollDirection direction
) = 0;
56 // Returns |point_of_interest_| in MagnificationControllerImpl. This is
57 // the internal variable to stores the last mouse cursor (or last touched)
58 // location. This method is only for test purpose.
59 virtual gfx::Point
GetPointOfInterestForTesting() = 0;
62 MagnificationController() {}
65 DISALLOW_COPY_AND_ASSIGN(MagnificationController
);
70 #endif // ASH_MAGNIFIER_MAGNIFICATION_CONTROLLER_H_