mac: Add APIs on setting icon in titlebar.
authorCheng Zhao <zcbenz@gmail.com>
Tue, 27 May 2014 06:15:34 +0000 (14:15 +0800)
committerCheng Zhao <zcbenz@gmail.com>
Tue, 27 May 2014 06:15:34 +0000 (14:15 +0800)
atom/browser/api/atom_api_window.cc
atom/browser/api/atom_api_window.h
atom/browser/native_window.cc
atom/browser/native_window.h
atom/browser/native_window_mac.h
atom/browser/native_window_mac.mm
docs/api/browser-window.md

index c30e299..7f43332 100644 (file)
@@ -314,6 +314,14 @@ void Window::CapturePage(mate::Arguments* args) {
   window_->CapturePage(rect, base::Bind(&OnCapturePageDone, callback));
 }
 
+void Window::SetRepresentedFilename(const std::string& filename) {
+  window_->SetRepresentedFilename(filename);
+}
+
+void Window::SetDocumentEdited(bool edited) {
+  window_->SetDocumentEdited(edited);
+}
+
 mate::Handle<WebContents> Window::GetWebContents(v8::Isolate* isolate) const {
   return WebContents::Create(isolate, window_->GetWebContents());
 }
@@ -360,6 +368,8 @@ void Window::BuildPrototype(v8::Isolate* isolate,
       .SetMethod("flashFrame", &Window::FlashFrame)
       .SetMethod("setKiosk", &Window::SetKiosk)
       .SetMethod("isKiosk", &Window::IsKiosk)
+      .SetMethod("setRepresentedFilename", &Window::SetRepresentedFilename)
+      .SetMethod("setDocumentEdited", &Window::SetDocumentEdited)
       .SetMethod("_openDevTools", &Window::OpenDevTools)
       .SetMethod("closeDevTools", &Window::CloseDevTools)
       .SetMethod("isDevToolsOpened", &Window::IsDevToolsOpened)
index be74f14..1aa9cee 100644 (file)
@@ -101,6 +101,8 @@ class Window : public mate::EventEmitter,
   void BlurWebView();
   bool IsWebViewFocused();
   void CapturePage(mate::Arguments* args);
+  void SetRepresentedFilename(const std::string& filename);
+  void SetDocumentEdited(bool edited);
 
   // APIs for WebContents.
   mate::Handle<WebContents> GetWebContents(v8::Isolate* isolate) const;
index b4214a1..949dff1 100644 (file)
@@ -191,6 +191,12 @@ void NativeWindow::InitFromOptions(base::DictionaryValue* options) {
     Show();
 }
 
+void NativeWindow::SetRepresentedFilename(const std::string& filename) {
+}
+
+void NativeWindow::SetDocumentEdited(bool edited) {
+}
+
 bool NativeWindow::HasModalDialog() {
   return has_dialog_attached_;
 }
index f9c490e..a29b828 100644 (file)
@@ -129,6 +129,8 @@ class NativeWindow : public brightray::DefaultWebContentsDelegate,
   virtual void FlashFrame(bool flash) = 0;
   virtual void SetKiosk(bool kiosk) = 0;
   virtual bool IsKiosk() = 0;
+  virtual void SetRepresentedFilename(const std::string& filename);
+  virtual void SetDocumentEdited(bool edited);
   virtual bool HasModalDialog();
   virtual gfx::NativeWindow GetNativeWindow() = 0;
 
index d60da8d..5dc8aa6 100644 (file)
@@ -56,6 +56,8 @@ class NativeWindowMac : public NativeWindow {
   virtual void FlashFrame(bool flash) OVERRIDE;
   virtual void SetKiosk(bool kiosk) OVERRIDE;
   virtual bool IsKiosk() OVERRIDE;
+  virtual void SetRepresentedFilename(const std::string& filename) OVERRIDE;
+  virtual void SetDocumentEdited(bool edited) OVERRIDE;
   virtual bool HasModalDialog() OVERRIDE;
   virtual gfx::NativeWindow GetNativeWindow() OVERRIDE;
 
index a34ec9c..634b052 100644 (file)
@@ -432,6 +432,14 @@ bool NativeWindowMac::IsKiosk() {
   return is_kiosk_;
 }
 
+void NativeWindowMac::SetRepresentedFilename(const std::string& filename) {
+  [window_ setRepresentedFilename:base::SysUTF8ToNSString(filename)];
+}
+
+void NativeWindowMac::SetDocumentEdited(bool edited) {
+  [window_ setDocumentEdited:edited];
+}
+
 bool NativeWindowMac::HasModalDialog() {
   return [window_ attachedSheet] != nil;
 }
index c25d3bf..ae0c8fe 100644 (file)
@@ -362,6 +362,20 @@ Enters or leaves the kiosk mode.
 
 Returns whether the window is in kiosk mode.
 
+### BrowserWindow.setRepresentedFilename(filename)
+
+* `filename` String
+
+__OS X Only__ Sets the pathname of the file the window represents, and the icon
+of the file will show in window's title bar.
+
+### BrowserWindow.setDocumentEdited(edited)
+
+* `edited` Boolean
+
+__OS X Only__ Specifies whether the window’s document has been edited, and the
+icon in titlebar will become grey when set to `true`.
+
 ### BrowserWindow.openDevTools()
 
 Opens the developer tools.