|
@@ -2,8 +2,13 @@
|
|
|
// Use of this source code is governed by the MIT license that can be
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
-#include "shell/common/api/atom_api_native_theme.h"
|
|
|
+#include "shell/browser/api/atom_api_native_theme.h"
|
|
|
|
|
|
+#include <string>
|
|
|
+
|
|
|
+#include "base/task/post_task.h"
|
|
|
+#include "content/public/browser/browser_task_traits.h"
|
|
|
+#include "content/public/browser/browser_thread.h"
|
|
|
#include "native_mate/dictionary.h"
|
|
|
#include "native_mate/object_template_builder.h"
|
|
|
#include "shell/common/node_includes.h"
|
|
@@ -24,10 +29,31 @@ NativeTheme::~NativeTheme() {
|
|
|
theme_->RemoveObserver(this);
|
|
|
}
|
|
|
|
|
|
-void NativeTheme::OnNativeThemeUpdated(ui::NativeTheme* theme) {
|
|
|
+void NativeTheme::OnNativeThemeUpdatedOnUI() {
|
|
|
Emit("updated");
|
|
|
}
|
|
|
|
|
|
+void NativeTheme::OnNativeThemeUpdated(ui::NativeTheme* theme) {
|
|
|
+ base::PostTaskWithTraits(
|
|
|
+ FROM_HERE, {content::BrowserThread::UI},
|
|
|
+ base::BindOnce(&NativeTheme::OnNativeThemeUpdatedOnUI,
|
|
|
+ base::Unretained(this)));
|
|
|
+}
|
|
|
+
|
|
|
+void NativeTheme::SetThemeSource(ui::NativeTheme::ThemeSource override) {
|
|
|
+ theme_->set_theme_source(override);
|
|
|
+#if defined(OS_MACOSX)
|
|
|
+ // Update the macOS appearance setting for this new override value
|
|
|
+ UpdateMacOSAppearanceForOverrideValue(override);
|
|
|
+#endif
|
|
|
+ // TODO(MarshallOfSound): Update all existing browsers windows to use GTK dark
|
|
|
+ // theme
|
|
|
+}
|
|
|
+
|
|
|
+ui::NativeTheme::ThemeSource NativeTheme::GetThemeSource() const {
|
|
|
+ return theme_->theme_source();
|
|
|
+}
|
|
|
+
|
|
|
bool NativeTheme::ShouldUseDarkColors() {
|
|
|
return theme_->ShouldUseDarkColors();
|
|
|
}
|
|
@@ -68,6 +94,8 @@ void NativeTheme::BuildPrototype(v8::Isolate* isolate,
|
|
|
prototype->SetClassName(mate::StringToV8(isolate, "NativeTheme"));
|
|
|
mate::ObjectTemplateBuilder(isolate, prototype->PrototypeTemplate())
|
|
|
.SetProperty("shouldUseDarkColors", &NativeTheme::ShouldUseDarkColors)
|
|
|
+ .SetProperty("themeSource", &NativeTheme::GetThemeSource,
|
|
|
+ &NativeTheme::SetThemeSource)
|
|
|
.SetProperty("shouldUseHighContrastColors",
|
|
|
&NativeTheme::ShouldUseHighContrastColors)
|
|
|
.SetProperty("shouldUseInvertedColorScheme",
|
|
@@ -94,4 +122,42 @@ void Initialize(v8::Local<v8::Object> exports,
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
+namespace mate {
|
|
|
+
|
|
|
+v8::Local<v8::Value> Converter<ui::NativeTheme::ThemeSource>::ToV8(
|
|
|
+ v8::Isolate* isolate,
|
|
|
+ const ui::NativeTheme::ThemeSource& val) {
|
|
|
+ switch (val) {
|
|
|
+ case ui::NativeTheme::ThemeSource::kForcedDark:
|
|
|
+ return mate::ConvertToV8(isolate, "dark");
|
|
|
+ case ui::NativeTheme::ThemeSource::kForcedLight:
|
|
|
+ return mate::ConvertToV8(isolate, "light");
|
|
|
+ case ui::NativeTheme::ThemeSource::kSystem:
|
|
|
+ default:
|
|
|
+ return mate::ConvertToV8(isolate, "system");
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+bool Converter<ui::NativeTheme::ThemeSource>::FromV8(
|
|
|
+ v8::Isolate* isolate,
|
|
|
+ v8::Local<v8::Value> val,
|
|
|
+ ui::NativeTheme::ThemeSource* out) {
|
|
|
+ std::string theme_source;
|
|
|
+ if (mate::ConvertFromV8(isolate, val, &theme_source)) {
|
|
|
+ if (theme_source == "dark") {
|
|
|
+ *out = ui::NativeTheme::ThemeSource::kForcedDark;
|
|
|
+ } else if (theme_source == "light") {
|
|
|
+ *out = ui::NativeTheme::ThemeSource::kForcedLight;
|
|
|
+ } else if (theme_source == "system") {
|
|
|
+ *out = ui::NativeTheme::ThemeSource::kSystem;
|
|
|
+ } else {
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ return false;
|
|
|
+}
|
|
|
+
|
|
|
+} // namespace mate
|
|
|
+
|
|
|
NODE_LINKED_MODULE_CONTEXT_AWARE(atom_common_native_theme, Initialize)
|