2017-01-30 11:18:40 +00:00
|
|
|
// Copyright (c) 2017 GitHub, Inc.
|
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_WEB_CONTENTS_ZOOM_CONTROLLER_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_WEB_CONTENTS_ZOOM_CONTROLLER_H_
|
2017-01-30 11:18:40 +00:00
|
|
|
|
2022-02-25 18:17:35 +00:00
|
|
|
#include "base/observer_list.h"
|
2018-10-25 06:43:50 +00:00
|
|
|
#include "base/observer_list_types.h"
|
2017-01-30 11:18:40 +00:00
|
|
|
#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 electron {
|
|
|
|
|
|
|
|
// Manages the zoom changes of WebContents.
|
|
|
|
class WebContentsZoomController
|
|
|
|
: public content::WebContentsObserver,
|
|
|
|
public content::WebContentsUserData<WebContentsZoomController> {
|
|
|
|
public:
|
2018-10-25 06:43:50 +00:00
|
|
|
class Observer : public base::CheckedObserver {
|
2017-01-30 11:18:40 +00:00
|
|
|
public:
|
|
|
|
virtual void OnZoomLevelChanged(content::WebContents* web_contents,
|
2017-01-30 17:06:50 +00:00
|
|
|
double level,
|
|
|
|
bool is_temporary) {}
|
2018-08-16 22:57:40 +00:00
|
|
|
virtual void OnZoomControllerWebContentsDestroyed() {}
|
2017-01-30 11:18:40 +00:00
|
|
|
|
|
|
|
protected:
|
2018-10-25 06:43:50 +00:00
|
|
|
~Observer() override {}
|
2017-01-30 11:18:40 +00:00
|
|
|
};
|
2017-06-08 07:57:24 +00:00
|
|
|
|
2017-06-08 00:13:49 +00:00
|
|
|
// Defines how zoom changes are handled.
|
2019-05-03 18:11:41 +00:00
|
|
|
enum class ZoomMode {
|
2017-06-08 00:13:49 +00: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.
|
2020-10-27 17:51:45 +00:00
|
|
|
kDefault,
|
2017-06-08 00:13:49 +00: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.
|
2020-10-27 17:51:45 +00:00
|
|
|
kIsolated,
|
2017-06-08 00:13:49 +00: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.
|
2020-10-27 17:51:45 +00:00
|
|
|
kManual,
|
2017-06-08 00:13:49 +00:00
|
|
|
// Disables all zooming in this tab. The tab will revert to the default
|
|
|
|
// zoom level, and all attempted zoom changes will be ignored.
|
2020-10-27 17:51:45 +00:00
|
|
|
kDisabled,
|
2017-06-08 00:13:49 +00:00
|
|
|
};
|
2017-01-30 11:18:40 +00:00
|
|
|
|
|
|
|
explicit WebContentsZoomController(content::WebContents* web_contents);
|
|
|
|
~WebContentsZoomController() override;
|
|
|
|
|
2021-11-03 11:41:45 +00:00
|
|
|
// disable copy
|
|
|
|
WebContentsZoomController(const WebContentsZoomController&) = delete;
|
|
|
|
WebContentsZoomController& operator=(const WebContentsZoomController&) =
|
|
|
|
delete;
|
|
|
|
|
2017-01-30 11:18:40 +00:00
|
|
|
void AddObserver(Observer* observer);
|
|
|
|
void RemoveObserver(Observer* observer);
|
|
|
|
|
2017-01-31 09:15:45 +00:00
|
|
|
void SetEmbedderZoomController(WebContentsZoomController* controller);
|
|
|
|
|
2017-01-30 11:18:40 +00:00
|
|
|
// Methods for managing zoom levels.
|
|
|
|
void SetZoomLevel(double level);
|
|
|
|
double GetZoomLevel();
|
|
|
|
void SetDefaultZoomFactor(double factor);
|
|
|
|
double GetDefaultZoomFactor();
|
2017-01-30 17:06:50 +00:00
|
|
|
void SetTemporaryZoomLevel(double level);
|
|
|
|
bool UsesTemporaryZoomLevel();
|
2017-01-30 11:18:40 +00:00
|
|
|
|
2017-06-08 00:13:49 +00:00
|
|
|
// Sets the zoom mode, which defines zoom behavior (see enum ZoomMode).
|
|
|
|
void SetZoomMode(ZoomMode zoom_mode);
|
2017-06-08 07:57:24 +00:00
|
|
|
|
2017-06-08 00:13:49 +00: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 11:18:40 +00:00
|
|
|
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 00:13:49 +00:00
|
|
|
// The current zoom mode.
|
2020-10-27 17:51:45 +00:00
|
|
|
ZoomMode zoom_mode_ = ZoomMode::kDefault;
|
2017-06-08 00:13:49 +00:00
|
|
|
|
|
|
|
// Current zoom level.
|
2018-05-21 22:18:38 +00:00
|
|
|
double zoom_level_ = 1.0;
|
2017-06-08 00:13:49 +00:00
|
|
|
|
2017-01-30 11:18:40 +00:00
|
|
|
// kZoomFactor.
|
2018-05-21 22:18:38 +00:00
|
|
|
double default_zoom_factor_ = 0;
|
2017-01-30 11:18:40 +00:00
|
|
|
|
2019-10-18 19:57:34 +00:00
|
|
|
const double kPageZoomEpsilon = 0.001;
|
|
|
|
|
2018-05-21 22:18:38 +00:00
|
|
|
int old_process_id_ = -1;
|
|
|
|
int old_view_id_ = -1;
|
2017-01-31 09:15:45 +00:00
|
|
|
|
2018-05-21 22:18:38 +00:00
|
|
|
WebContentsZoomController* embedder_zoom_controller_ = nullptr;
|
2017-01-31 09:15:45 +00:00
|
|
|
|
2017-01-30 11:18:40 +00:00
|
|
|
base::ObserverList<Observer> observers_;
|
|
|
|
|
|
|
|
content::HostZoomMap* host_zoom_map_;
|
|
|
|
|
2019-01-21 16:56:54 +00:00
|
|
|
WEB_CONTENTS_USER_DATA_KEY_DECL();
|
2017-01-30 11:18:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace electron
|
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_WEB_CONTENTS_ZOOM_CONTROLLER_H_
|