Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(103)

Side by Side Diff: ash/magnifier/magnification_controller.h

Issue 11194011: Reverting this CL because it was committed before I gave the final LGTM. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | ash/magnifier/magnification_controller.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef ASH_MAGNIFIER_MAGNIFICATION_CONTROLLER_H_ 5 #ifndef ASH_MAGNIFIER_MAGNIFICATION_CONTROLLER_H_
6 #define ASH_MAGNIFIER_MAGNIFICATION_CONTROLLER_H_ 6 #define ASH_MAGNIFIER_MAGNIFICATION_CONTROLLER_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/logging.h" 9 #include "base/logging.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 12 matching lines...) Expand all
23 public: 23 public:
24 virtual ~MagnificationController() {} 24 virtual ~MagnificationController() {}
25 25
26 // Creates a new MagnificationController. The caller takes ownership of the 26 // Creates a new MagnificationController. The caller takes ownership of the
27 // returned object. 27 // returned object.
28 static MagnificationController* CreateInstance(); 28 static MagnificationController* CreateInstance();
29 29
30 // Enables (or disables if |enabled| is false) screen magnifier feature. 30 // Enables (or disables if |enabled| is false) screen magnifier feature.
31 virtual void SetEnabled(bool enabled) = 0; 31 virtual void SetEnabled(bool enabled) = 0;
32 32
33 // Returns if the screen magnifier is enabled or not.
34 virtual bool IsEnabled() = 0;
35
36 // Sets the magnification ratio. 1.0f means no magnification. 33 // Sets the magnification ratio. 1.0f means no magnification.
37 virtual void SetScale(float scale, bool animate) = 0; 34 virtual void SetScale(float scale, bool animate) = 0;
38 // Returns the current magnification ratio. 35 // Returns the current magnification ratio.
39 virtual float GetScale() const = 0; 36 virtual float GetScale() const = 0;
40 37
41 // Set the top-left point of the magnification window. 38 // Set the top-left point of the magnification window.
42 virtual void MoveWindow(int x, int y, bool animate) = 0; 39 virtual void MoveWindow(int x, int y, bool animate) = 0;
43 virtual void MoveWindow(const gfx::Point& point, bool animate) = 0; 40 virtual void MoveWindow(const gfx::Point& point, bool animate) = 0;
44 // Returns the current top-left point of the magnification window. 41 // Returns the current top-left point of the magnification window.
45 virtual gfx::Point GetWindowPosition() const = 0; 42 virtual gfx::Point GetWindowPosition() const = 0;
46 43
47 // Ensures that the given point/rect is inside the magnification window. If 44 // Ensures that the given point/rect is inside the magnification window. If
48 // not, the controller moves the window to contain the given point/rect. 45 // not, the controller moves the window to contain the given point/rect.
49 virtual void EnsureRectIsVisible(const gfx::Rect& rect, bool animate) = 0; 46 virtual void EnsureRectIsVisible(const gfx::Rect& rect, bool animate) = 0;
50 virtual void EnsurePointIsVisible(const gfx::Point& point, bool animate) = 0; 47 virtual void EnsurePointIsVisible(const gfx::Point& point, bool animate) = 0;
51 48
52 protected: 49 protected:
53 MagnificationController() {} 50 MagnificationController() {}
54 }; 51 };
55 52
56 } // namespace internal 53 } // namespace internal
57 } // namespace ash 54 } // namespace ash
58 55
59 #endif // ASH_MAGNIFIER_MAGNIFICATION_CONTROLLER_H_ 56 #endif // ASH_MAGNIFIER_MAGNIFICATION_CONTROLLER_H_
OLDNEW
« no previous file with comments | « no previous file | ash/magnifier/magnification_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698