Added BrowserWindow.setAppDetails to set user model id, icon and relaunch command
This commit is contained in:
parent
d6e3360aef
commit
ac9e0b458d
2 changed files with 23 additions and 0 deletions
|
@ -10,6 +10,7 @@
|
||||||
#include "atom/browser/browser.h"
|
#include "atom/browser/browser.h"
|
||||||
#include "atom/browser/native_window.h"
|
#include "atom/browser/native_window.h"
|
||||||
#include "atom/common/native_mate_converters/callback.h"
|
#include "atom/common/native_mate_converters/callback.h"
|
||||||
|
#include "atom/common/native_mate_converters/file_path_converter.h"
|
||||||
#include "atom/common/native_mate_converters/gfx_converter.h"
|
#include "atom/common/native_mate_converters/gfx_converter.h"
|
||||||
#include "atom/common/native_mate_converters/gurl_converter.h"
|
#include "atom/common/native_mate_converters/gurl_converter.h"
|
||||||
#include "atom/common/native_mate_converters/image_converter.h"
|
#include "atom/common/native_mate_converters/image_converter.h"
|
||||||
|
@ -20,6 +21,7 @@
|
||||||
#include "content/public/common/content_switches.h"
|
#include "content/public/common/content_switches.h"
|
||||||
#include "native_mate/constructor.h"
|
#include "native_mate/constructor.h"
|
||||||
#include "native_mate/dictionary.h"
|
#include "native_mate/dictionary.h"
|
||||||
|
#include "ui/base/win/shell.h"
|
||||||
#include "ui/gfx/geometry/rect.h"
|
#include "ui/gfx/geometry/rect.h"
|
||||||
|
|
||||||
#if defined(TOOLKIT_VIEWS)
|
#if defined(TOOLKIT_VIEWS)
|
||||||
|
@ -708,6 +710,25 @@ bool Window::SetThumbnailToolTip(const std::string& tooltip) {
|
||||||
return window->taskbar_host().SetThumbnailToolTip(
|
return window->taskbar_host().SetThumbnailToolTip(
|
||||||
window_->GetAcceleratedWidget(), tooltip);
|
window_->GetAcceleratedWidget(), tooltip);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Window::SetAppDetails(const mate::Dictionary& options) {
|
||||||
|
base::string16 app_id;
|
||||||
|
base::FilePath app_icon_path;
|
||||||
|
int app_icon_index;
|
||||||
|
base::string16 relaunch_command;
|
||||||
|
base::string16 relaunch_display_name;
|
||||||
|
|
||||||
|
options.Get("appId", &app_id);
|
||||||
|
options.Get("appIconPath", &app_icon_path);
|
||||||
|
options.Get("appIconIndex", &app_icon_index);
|
||||||
|
options.Get("relaunchCommand", &relaunch_command);
|
||||||
|
options.Get("relaunchDisplayName", &relaunch_display_name);
|
||||||
|
|
||||||
|
ui::win::SetAppDetailsForWindow(
|
||||||
|
app_id, app_icon_path, app_icon_index,
|
||||||
|
relaunch_command, relaunch_display_name,
|
||||||
|
window_->GetAcceleratedWidget());
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(TOOLKIT_VIEWS)
|
#if defined(TOOLKIT_VIEWS)
|
||||||
|
@ -916,6 +937,7 @@ void Window::BuildPrototype(v8::Isolate* isolate,
|
||||||
.SetMethod("unhookAllWindowMessages", &Window::UnhookAllWindowMessages)
|
.SetMethod("unhookAllWindowMessages", &Window::UnhookAllWindowMessages)
|
||||||
.SetMethod("setThumbnailClip", &Window::SetThumbnailClip)
|
.SetMethod("setThumbnailClip", &Window::SetThumbnailClip)
|
||||||
.SetMethod("setThumbnailToolTip", &Window::SetThumbnailToolTip)
|
.SetMethod("setThumbnailToolTip", &Window::SetThumbnailToolTip)
|
||||||
|
.SetMethod("setAppDetails", &Window::SetAppDetails)
|
||||||
#endif
|
#endif
|
||||||
#if defined(TOOLKIT_VIEWS)
|
#if defined(TOOLKIT_VIEWS)
|
||||||
.SetMethod("setIcon", &Window::SetIcon)
|
.SetMethod("setIcon", &Window::SetIcon)
|
||||||
|
|
|
@ -187,6 +187,7 @@ class Window : public mate::TrackableObject<Window>,
|
||||||
void UnhookAllWindowMessages();
|
void UnhookAllWindowMessages();
|
||||||
bool SetThumbnailClip(const gfx::Rect& region);
|
bool SetThumbnailClip(const gfx::Rect& region);
|
||||||
bool SetThumbnailToolTip(const std::string& tooltip);
|
bool SetThumbnailToolTip(const std::string& tooltip);
|
||||||
|
void SetAppDetails(const mate::Dictionary& options);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(TOOLKIT_VIEWS)
|
#if defined(TOOLKIT_VIEWS)
|
||||||
|
|
Loading…
Reference in a new issue