| 
									
										
										
										
											2017-01-30 16:48:40 +05:30
										 |  |  | // Copyright (c) 2017 GitHub, Inc.
 | 
					
						
							|  |  |  | // Use of this source code is governed by the MIT license that can be
 | 
					
						
							|  |  |  | // found in the LICENSE file.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef ATOM_BROWSER_WEB_CONTENTS_ZOOM_CONTROLLER_H_
 | 
					
						
							|  |  |  | #define ATOM_BROWSER_WEB_CONTENTS_ZOOM_CONTROLLER_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-30 22:36:50 +05:30
										 |  |  | #include <map>
 | 
					
						
							|  |  |  | #include <string>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-10-25 17:43:50 +11:00
										 |  |  | #include "base/observer_list_types.h"
 | 
					
						
							| 
									
										
										
										
											2017-01-30 16:48:40 +05:30
										 |  |  | #include "content/public/browser/host_zoom_map.h"
 | 
					
						
							|  |  |  | #include "content/public/browser/web_contents_observer.h"
 | 
					
						
							|  |  |  | #include "content/public/browser/web_contents_user_data.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace atom { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // Manages the zoom changes of WebContents.
 | 
					
						
							|  |  |  | class WebContentsZoomController | 
					
						
							|  |  |  |     : public content::WebContentsObserver, | 
					
						
							|  |  |  |       public content::WebContentsUserData<WebContentsZoomController> { | 
					
						
							|  |  |  |  public: | 
					
						
							| 
									
										
										
										
											2018-10-25 17:43:50 +11:00
										 |  |  |   class Observer : public base::CheckedObserver { | 
					
						
							| 
									
										
										
										
											2017-01-30 16:48:40 +05:30
										 |  |  |    public: | 
					
						
							|  |  |  |     virtual void OnZoomLevelChanged(content::WebContents* web_contents, | 
					
						
							| 
									
										
										
										
											2017-01-30 22:36:50 +05:30
										 |  |  |                                     double level, | 
					
						
							|  |  |  |                                     bool is_temporary) {} | 
					
						
							| 
									
										
										
										
											2018-08-16 15:57:40 -07:00
										 |  |  |     virtual void OnZoomControllerWebContentsDestroyed() {} | 
					
						
							| 
									
										
										
										
											2017-01-30 16:48:40 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  |    protected: | 
					
						
							| 
									
										
										
										
											2018-10-25 17:43:50 +11:00
										 |  |  |     ~Observer() override {} | 
					
						
							| 
									
										
										
										
											2017-01-30 16:48:40 +05:30
										 |  |  |   }; | 
					
						
							| 
									
										
										
										
											2017-06-08 09:57:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-08 02:13:49 +02:00
										 |  |  |   // Defines how zoom changes are handled.
 | 
					
						
							| 
									
										
										
										
											2019-05-03 20:11:41 +02:00
										 |  |  |   enum class ZoomMode { | 
					
						
							| 
									
										
										
										
											2017-06-08 02:13:49 +02:00
										 |  |  |     // Results in default zoom behavior, i.e. zoom changes are handled
 | 
					
						
							|  |  |  |     // automatically and on a per-origin basis, meaning that other tabs
 | 
					
						
							|  |  |  |     // navigated to the same origin will also zoom.
 | 
					
						
							| 
									
										
										
										
											2019-05-03 20:11:41 +02:00
										 |  |  |     DEFAULT, | 
					
						
							| 
									
										
										
										
											2017-06-08 02:13:49 +02:00
										 |  |  |     // Results in zoom changes being handled automatically, but on a per-tab
 | 
					
						
							|  |  |  |     // basis. Tabs in this zoom mode will not be affected by zoom changes in
 | 
					
						
							|  |  |  |     // other tabs, and vice versa.
 | 
					
						
							| 
									
										
										
										
											2019-05-03 20:11:41 +02:00
										 |  |  |     ISOLATED, | 
					
						
							| 
									
										
										
										
											2017-06-08 02:13:49 +02:00
										 |  |  |     // Overrides the automatic handling of zoom changes. The |onZoomChange|
 | 
					
						
							|  |  |  |     // event will still be dispatched, but the page will not actually be zoomed.
 | 
					
						
							|  |  |  |     // These zoom changes can be handled manually by listening for the
 | 
					
						
							|  |  |  |     // |onZoomChange| event. Zooming in this mode is also on a per-tab basis.
 | 
					
						
							| 
									
										
										
										
											2019-05-03 20:11:41 +02:00
										 |  |  |     MANUAL, | 
					
						
							| 
									
										
										
										
											2017-06-08 02:13:49 +02:00
										 |  |  |     // Disables all zooming in this tab. The tab will revert to the default
 | 
					
						
							|  |  |  |     // zoom level, and all attempted zoom changes will be ignored.
 | 
					
						
							| 
									
										
										
										
											2019-05-03 20:11:41 +02:00
										 |  |  |     DISABLED, | 
					
						
							| 
									
										
										
										
											2017-06-08 02:13:49 +02:00
										 |  |  |   }; | 
					
						
							| 
									
										
										
										
											2017-01-30 16:48:40 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  |   explicit WebContentsZoomController(content::WebContents* web_contents); | 
					
						
							|  |  |  |   ~WebContentsZoomController() override; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   void AddObserver(Observer* observer); | 
					
						
							|  |  |  |   void RemoveObserver(Observer* observer); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-31 14:45:45 +05:30
										 |  |  |   void SetEmbedderZoomController(WebContentsZoomController* controller); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-30 16:48:40 +05:30
										 |  |  |   // Methods for managing zoom levels.
 | 
					
						
							|  |  |  |   void SetZoomLevel(double level); | 
					
						
							|  |  |  |   double GetZoomLevel(); | 
					
						
							|  |  |  |   void SetDefaultZoomFactor(double factor); | 
					
						
							|  |  |  |   double GetDefaultZoomFactor(); | 
					
						
							| 
									
										
										
										
											2017-01-30 22:36:50 +05:30
										 |  |  |   void SetTemporaryZoomLevel(double level); | 
					
						
							|  |  |  |   bool UsesTemporaryZoomLevel(); | 
					
						
							| 
									
										
										
										
											2017-01-30 16:48:40 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-08 02:13:49 +02:00
										 |  |  |   // Sets the zoom mode, which defines zoom behavior (see enum ZoomMode).
 | 
					
						
							|  |  |  |   void SetZoomMode(ZoomMode zoom_mode); | 
					
						
							| 
									
										
										
										
											2017-06-08 09:57:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-08 02:13:49 +02:00
										 |  |  |   void ResetZoomModeOnNavigationIfNeeded(const GURL& url); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   ZoomMode zoom_mode() const { return zoom_mode_; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // Convenience method to get default zoom level. Implemented here for
 | 
					
						
							|  |  |  |   // inlining.
 | 
					
						
							|  |  |  |   double GetDefaultZoomLevel() const { | 
					
						
							|  |  |  |     return content::HostZoomMap::GetForWebContents(web_contents()) | 
					
						
							|  |  |  |         ->GetDefaultZoomLevel(); | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-30 16:48:40 +05:30
										 |  |  |  protected: | 
					
						
							|  |  |  |   // content::WebContentsObserver:
 | 
					
						
							|  |  |  |   void DidFinishNavigation(content::NavigationHandle* handle) override; | 
					
						
							|  |  |  |   void WebContentsDestroyed() override; | 
					
						
							|  |  |  |   void RenderFrameHostChanged(content::RenderFrameHost* old_host, | 
					
						
							|  |  |  |                               content::RenderFrameHost* new_host) override; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |  private: | 
					
						
							|  |  |  |   friend class content::WebContentsUserData<WebContentsZoomController>; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // Called after a navigation has committed to set default zoom factor.
 | 
					
						
							|  |  |  |   void SetZoomFactorOnNavigationIfNeeded(const GURL& url); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-06-08 02:13:49 +02:00
										 |  |  |   // The current zoom mode.
 | 
					
						
							| 
									
										
										
										
											2019-05-03 20:11:41 +02:00
										 |  |  |   ZoomMode zoom_mode_ = ZoomMode::DEFAULT; | 
					
						
							| 
									
										
										
										
											2017-06-08 02:13:49 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |   // Current zoom level.
 | 
					
						
							| 
									
										
										
										
											2018-05-22 00:18:38 +02:00
										 |  |  |   double zoom_level_ = 1.0; | 
					
						
							| 
									
										
										
										
											2017-06-08 02:13:49 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-30 16:48:40 +05:30
										 |  |  |   // kZoomFactor.
 | 
					
						
							| 
									
										
										
										
											2018-05-22 00:18:38 +02:00
										 |  |  |   double default_zoom_factor_ = 0; | 
					
						
							| 
									
										
										
										
											2017-01-30 16:48:40 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-22 00:18:38 +02:00
										 |  |  |   int old_process_id_ = -1; | 
					
						
							|  |  |  |   int old_view_id_ = -1; | 
					
						
							| 
									
										
										
										
											2017-01-31 14:45:45 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-22 00:18:38 +02:00
										 |  |  |   WebContentsZoomController* embedder_zoom_controller_ = nullptr; | 
					
						
							| 
									
										
										
										
											2017-01-31 14:45:45 +05:30
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-30 16:48:40 +05:30
										 |  |  |   base::ObserverList<Observer> observers_; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   content::HostZoomMap* host_zoom_map_; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-01-21 22:26:54 +05:30
										 |  |  |   WEB_CONTENTS_USER_DATA_KEY_DECL(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-30 16:48:40 +05:30
										 |  |  |   DISALLOW_COPY_AND_ASSIGN(WebContentsZoomController); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | }  // namespace atom
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif  // ATOM_BROWSER_WEB_CONTENTS_ZOOM_CONTROLLER_H_
 |