Changed default value for swipe-to-close feature flag.
[chromium-blink-merge.git] / ash / magnifier / magnification_controller.h
blobad54c69303c60af6006c0fa87fbfa68dd2562cf5
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/geometry/point.h"
13 #include "ui/gfx/geometry/rect.h"
15 namespace aura {
16 class RootWindow;
19 namespace ash {
21 class ASH_EXPORT MagnificationController {
22 public:
23 enum ScrollDirection {
24 SCROLL_NONE,
25 SCROLL_LEFT,
26 SCROLL_RIGHT,
27 SCROLL_UP,
28 SCROLL_DOWN
31 virtual ~MagnificationController() {}
33 // Creates a new MagnificationController. The caller takes ownership of the
34 // returned object.
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 the view port(i.e. the current visible window)'s Rect in root
57 // window coordinates.
58 virtual gfx::Rect GetViewportRect() const = 0;
60 // Follows the focus on web page for non-editable controls.
61 virtual void HandleFocusedNodeChanged(
62 bool is_editable_node,
63 const gfx::Rect& node_bounds_in_screen) = 0;
65 // Returns |point_of_interest_| in MagnificationControllerImpl. This is
66 // the internal variable to stores the last mouse cursor (or last touched)
67 // location. This method is only for test purpose.
68 virtual gfx::Point GetPointOfInterestForTesting() = 0;
70 // Returns true if magnifier is still on animation for moving viewport.
71 // This is only used for testing purpose.
72 virtual bool IsOnAnimationForTesting() const = 0;
74 protected:
75 MagnificationController() {}
77 private:
78 DISALLOW_COPY_AND_ASSIGN(MagnificationController);
81 } // namespace ash
83 #endif // ASH_MAGNIFIER_MAGNIFICATION_CONTROLLER_H_