2016-04-24 12:13:46 +00:00
|
|
|
// Copyright (c) 2016 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_API_ELECTRON_API_SYSTEM_PREFERENCES_H_
|
|
|
|
#define ELECTRON_SHELL_BROWSER_API_ELECTRON_API_SYSTEM_PREFERENCES_H_
|
2016-04-24 12:13:46 +00:00
|
|
|
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <memory>
|
2016-04-25 05:25:14 +00:00
|
|
|
#include <string>
|
|
|
|
|
2019-10-28 22:12:35 +00:00
|
|
|
#include "base/values.h"
|
2020-07-28 18:03:30 +00:00
|
|
|
#include "gin/wrappable.h"
|
|
|
|
#include "shell/browser/event_emitter_mixin.h"
|
2016-04-24 12:13:46 +00:00
|
|
|
|
2022-02-10 02:58:52 +00:00
|
|
|
#if BUILDFLAG(IS_WIN)
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/browser.h"
|
|
|
|
#include "shell/browser/browser_observer.h"
|
2016-10-07 16:38:19 +00:00
|
|
|
#include "ui/gfx/sys_color_change_listener.h"
|
|
|
|
#endif
|
|
|
|
|
2024-07-29 17:42:57 +00:00
|
|
|
namespace gin {
|
|
|
|
template <typename T>
|
|
|
|
class Handle;
|
|
|
|
} // namespace gin
|
|
|
|
|
|
|
|
namespace gin_helper {
|
|
|
|
class ErrorThrower;
|
|
|
|
} // namespace gin_helper
|
|
|
|
|
2022-06-29 19:55:47 +00:00
|
|
|
namespace electron::api {
|
2016-04-24 12:13:46 +00:00
|
|
|
|
2022-02-10 02:58:52 +00:00
|
|
|
#if BUILDFLAG(IS_MAC)
|
2020-12-08 04:39:33 +00:00
|
|
|
enum class NotificationCenterKind {
|
2018-03-22 09:41:03 +00:00
|
|
|
kNSDistributedNotificationCenter = 0,
|
|
|
|
kNSNotificationCenter,
|
|
|
|
kNSWorkspaceNotificationCenter,
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2024-09-05 02:26:25 +00:00
|
|
|
class SystemPreferences final
|
2020-07-28 18:03:30 +00:00
|
|
|
: public gin::Wrappable<SystemPreferences>,
|
|
|
|
public gin_helper::EventEmitterMixin<SystemPreferences>
|
2022-02-10 02:58:52 +00:00
|
|
|
#if BUILDFLAG(IS_WIN)
|
2018-04-18 01:44:10 +00:00
|
|
|
,
|
2020-07-28 18:03:30 +00:00
|
|
|
public BrowserObserver,
|
|
|
|
public gfx::SysColorChangeListener
|
2016-10-10 17:20:51 +00:00
|
|
|
#endif
|
2018-04-18 01:44:10 +00:00
|
|
|
{
|
2016-04-24 12:13:46 +00:00
|
|
|
public:
|
2019-10-24 05:47:58 +00:00
|
|
|
static gin::Handle<SystemPreferences> Create(v8::Isolate* isolate);
|
2016-04-24 12:13:46 +00:00
|
|
|
|
2020-07-28 18:03:30 +00:00
|
|
|
// gin::Wrappable
|
|
|
|
static gin::WrapperInfo kWrapperInfo;
|
|
|
|
gin::ObjectTemplateBuilder GetObjectTemplateBuilder(
|
|
|
|
v8::Isolate* isolate) override;
|
|
|
|
const char* GetTypeName() override;
|
2016-04-24 12:13:46 +00:00
|
|
|
|
2022-02-10 02:58:52 +00:00
|
|
|
#if BUILDFLAG(IS_WIN) || BUILDFLAG(IS_MAC)
|
2019-01-03 21:24:55 +00:00
|
|
|
std::string GetAccentColor();
|
2019-10-21 21:31:03 +00:00
|
|
|
std::string GetColor(gin_helper::ErrorThrower thrower,
|
|
|
|
const std::string& color);
|
2020-07-28 18:03:30 +00:00
|
|
|
std::string GetMediaAccessStatus(gin_helper::ErrorThrower thrower,
|
|
|
|
const std::string& media_type);
|
2019-01-03 21:24:55 +00:00
|
|
|
#endif
|
2022-02-10 02:58:52 +00:00
|
|
|
#if BUILDFLAG(IS_WIN)
|
2016-04-25 03:35:09 +00:00
|
|
|
bool IsAeroGlassEnabled();
|
2016-09-16 16:00:22 +00:00
|
|
|
|
|
|
|
void InitializeWindow();
|
|
|
|
|
2016-10-10 17:20:51 +00:00
|
|
|
// gfx::SysColorChangeListener:
|
|
|
|
void OnSysColorChange() override;
|
2016-09-16 16:00:22 +00:00
|
|
|
|
2017-02-02 17:34:20 +00:00
|
|
|
// BrowserObserver:
|
2022-06-23 06:28:41 +00:00
|
|
|
void OnFinishLaunching(base::Value::Dict launch_info) override;
|
2017-02-02 17:34:20 +00:00
|
|
|
|
2022-02-10 02:58:52 +00:00
|
|
|
#elif BUILDFLAG(IS_MAC)
|
2019-10-30 05:30:59 +00:00
|
|
|
using NotificationCallback = base::RepeatingCallback<
|
2022-06-23 06:28:41 +00:00
|
|
|
void(const std::string&, base::Value, const std::string&)>;
|
2019-06-10 16:34:21 +00:00
|
|
|
|
2016-08-05 21:02:59 +00:00
|
|
|
void PostNotification(const std::string& name,
|
2022-07-05 15:25:18 +00:00
|
|
|
base::Value::Dict user_info,
|
2020-07-28 18:03:30 +00:00
|
|
|
gin::Arguments* args);
|
2022-04-13 20:02:33 +00:00
|
|
|
int SubscribeNotification(v8::Local<v8::Value> maybe_name,
|
2019-06-10 16:34:21 +00:00
|
|
|
const NotificationCallback& callback);
|
2016-04-25 05:25:14 +00:00
|
|
|
void UnsubscribeNotification(int id);
|
2018-03-22 09:41:03 +00:00
|
|
|
void PostLocalNotification(const std::string& name,
|
2022-07-05 15:25:18 +00:00
|
|
|
base::Value::Dict user_info);
|
2022-04-13 20:02:33 +00:00
|
|
|
int SubscribeLocalNotification(v8::Local<v8::Value> maybe_name,
|
2019-06-10 16:34:21 +00:00
|
|
|
const NotificationCallback& callback);
|
2016-06-21 00:48:42 +00:00
|
|
|
void UnsubscribeLocalNotification(int request_id);
|
2018-03-22 09:41:03 +00:00
|
|
|
void PostWorkspaceNotification(const std::string& name,
|
2022-07-05 15:25:18 +00:00
|
|
|
base::Value::Dict user_info);
|
2022-04-13 20:02:33 +00:00
|
|
|
int SubscribeWorkspaceNotification(v8::Local<v8::Value> maybe_name,
|
2019-06-10 16:34:21 +00:00
|
|
|
const NotificationCallback& callback);
|
2018-03-22 09:41:03 +00:00
|
|
|
void UnsubscribeWorkspaceNotification(int request_id);
|
2020-07-28 18:03:30 +00:00
|
|
|
v8::Local<v8::Value> GetUserDefault(v8::Isolate* isolate,
|
|
|
|
const std::string& name,
|
2016-04-25 06:35:52 +00:00
|
|
|
const std::string& type);
|
2020-07-28 18:03:30 +00:00
|
|
|
void RegisterDefaults(gin::Arguments* args);
|
2016-11-28 23:08:22 +00:00
|
|
|
void SetUserDefault(const std::string& name,
|
|
|
|
const std::string& type,
|
2020-07-28 18:03:30 +00:00
|
|
|
gin::Arguments* args);
|
2017-10-10 19:55:15 +00:00
|
|
|
void RemoveUserDefault(const std::string& name);
|
2016-08-03 02:27:56 +00:00
|
|
|
bool IsSwipeTrackingFromScrollEventsEnabled();
|
2023-09-20 19:48:02 +00:00
|
|
|
bool AccessibilityDisplayShouldReduceTransparency();
|
2018-09-27 15:33:31 +00:00
|
|
|
|
2019-09-06 05:52:54 +00:00
|
|
|
std::string GetSystemColor(gin_helper::ErrorThrower thrower,
|
2019-08-19 16:10:18 +00:00
|
|
|
const std::string& color);
|
2019-01-03 22:30:38 +00:00
|
|
|
|
2019-02-14 02:36:28 +00:00
|
|
|
bool CanPromptTouchID();
|
|
|
|
v8::Local<v8::Promise> PromptTouchID(v8::Isolate* isolate,
|
|
|
|
const std::string& reason);
|
|
|
|
|
2019-01-04 04:40:17 +00:00
|
|
|
static bool IsTrustedAccessibilityClient(bool prompt);
|
2018-12-18 16:15:22 +00:00
|
|
|
|
2018-12-04 15:54:13 +00:00
|
|
|
v8::Local<v8::Promise> AskForMediaAccess(v8::Isolate* isolate,
|
|
|
|
const std::string& media_type);
|
|
|
|
|
2018-09-27 15:33:31 +00:00
|
|
|
// TODO(MarshallOfSound): Write tests for these methods once we
|
|
|
|
// are running tests on a Mojave machine
|
|
|
|
v8::Local<v8::Value> GetEffectiveAppearance(v8::Isolate* isolate);
|
2016-04-25 03:35:09 +00:00
|
|
|
#endif
|
2019-03-19 19:15:40 +00:00
|
|
|
v8::Local<v8::Value> GetAnimationSettings(v8::Isolate* isolate);
|
2016-04-25 03:35:09 +00:00
|
|
|
|
2021-11-03 11:41:45 +00:00
|
|
|
// disable copy
|
|
|
|
SystemPreferences(const SystemPreferences&) = delete;
|
|
|
|
SystemPreferences& operator=(const SystemPreferences&) = delete;
|
|
|
|
|
2016-04-24 12:13:46 +00:00
|
|
|
protected:
|
2020-07-28 18:03:30 +00:00
|
|
|
SystemPreferences();
|
2016-04-24 12:13:46 +00:00
|
|
|
~SystemPreferences() override;
|
|
|
|
|
2022-02-10 02:58:52 +00:00
|
|
|
#if BUILDFLAG(IS_MAC)
|
2022-04-13 20:02:33 +00:00
|
|
|
int DoSubscribeNotification(v8::Local<v8::Value> maybe_name,
|
2019-06-10 16:34:21 +00:00
|
|
|
const NotificationCallback& callback,
|
|
|
|
NotificationCenterKind kind);
|
2018-03-22 09:41:03 +00:00
|
|
|
void DoUnsubscribeNotification(int request_id, NotificationCenterKind kind);
|
2016-06-21 00:48:42 +00:00
|
|
|
#endif
|
|
|
|
|
2016-04-24 12:13:46 +00:00
|
|
|
private:
|
2022-02-10 02:58:52 +00:00
|
|
|
#if BUILDFLAG(IS_WIN)
|
2016-09-16 16:00:22 +00:00
|
|
|
// Static callback invoked when a message comes in to our messaging window.
|
2018-04-18 01:44:10 +00:00
|
|
|
static LRESULT CALLBACK WndProcStatic(HWND hwnd,
|
|
|
|
UINT message,
|
|
|
|
WPARAM wparam,
|
|
|
|
LPARAM lparam);
|
|
|
|
|
|
|
|
LRESULT CALLBACK WndProc(HWND hwnd,
|
|
|
|
UINT message,
|
|
|
|
WPARAM wparam,
|
|
|
|
LPARAM lparam);
|
2016-09-16 16:00:22 +00:00
|
|
|
|
|
|
|
// The window class of |window_|.
|
|
|
|
ATOM atom_;
|
|
|
|
|
|
|
|
// The handle of the module that contains the window procedure of |window_|.
|
|
|
|
HMODULE instance_;
|
|
|
|
|
|
|
|
// The window used for processing events.
|
|
|
|
HWND window_;
|
|
|
|
|
|
|
|
std::string current_color_;
|
2016-10-07 16:38:19 +00:00
|
|
|
|
2017-02-02 17:34:20 +00:00
|
|
|
std::unique_ptr<gfx::ScopedSysColorChangeListener> color_change_listener_;
|
2016-09-16 16:00:22 +00:00
|
|
|
#endif
|
2016-04-24 12:13:46 +00:00
|
|
|
};
|
|
|
|
|
2022-06-29 19:55:47 +00:00
|
|
|
} // namespace electron::api
|
2016-04-24 12:13:46 +00:00
|
|
|
|
2021-11-22 07:34:31 +00:00
|
|
|
#endif // ELECTRON_SHELL_BROWSER_API_ELECTRON_API_SYSTEM_PREFERENCES_H_
|