2014-10-31 11:17:05 -07:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 17:49:37 +08:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-14 15:36:48 +08:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2013-04-15 23:01:12 +08:00
|
|
|
#ifndef ATOM_BROWSER_API_ATOM_API_WINDOW_H_
|
|
|
|
#define ATOM_BROWSER_API_ATOM_API_WINDOW_H_
|
2013-04-14 15:36:48 +08:00
|
|
|
|
2014-03-16 09:13:06 +08:00
|
|
|
#include <string>
|
2013-11-22 14:23:19 +08:00
|
|
|
#include <vector>
|
|
|
|
|
2013-04-18 23:50:47 +08:00
|
|
|
#include "base/memory/scoped_ptr.h"
|
2015-02-06 17:00:26 -08:00
|
|
|
#include "ui/gfx/image/image.h"
|
2014-03-16 08:30:26 +08:00
|
|
|
#include "atom/browser/native_window_observer.h"
|
2014-04-22 23:07:21 +08:00
|
|
|
#include "atom/browser/api/event_emitter.h"
|
2014-04-24 16:45:25 +08:00
|
|
|
#include "native_mate/handle.h"
|
2014-04-22 23:07:21 +08:00
|
|
|
|
|
|
|
class GURL;
|
2013-04-16 00:25:08 +08:00
|
|
|
|
2014-04-22 23:07:21 +08:00
|
|
|
namespace mate {
|
|
|
|
class Arguments;
|
|
|
|
class Dictionary;
|
|
|
|
}
|
|
|
|
|
2013-04-14 15:36:48 +08:00
|
|
|
namespace atom {
|
|
|
|
|
2013-04-16 00:25:08 +08:00
|
|
|
class NativeWindow;
|
|
|
|
|
|
|
|
namespace api {
|
|
|
|
|
2014-04-24 16:45:25 +08:00
|
|
|
class WebContents;
|
|
|
|
|
2014-04-22 23:07:21 +08:00
|
|
|
class Window : public mate::EventEmitter,
|
2013-04-18 23:50:47 +08:00
|
|
|
public NativeWindowObserver {
|
2013-04-16 00:25:08 +08:00
|
|
|
public:
|
2014-10-30 21:32:35 +08:00
|
|
|
static mate::Wrappable* New(v8::Isolate* isolate,
|
|
|
|
const mate::Dictionary& options);
|
2013-04-16 00:25:08 +08:00
|
|
|
|
2014-04-22 23:07:21 +08:00
|
|
|
static void BuildPrototype(v8::Isolate* isolate,
|
|
|
|
v8::Handle<v8::ObjectTemplate> prototype);
|
2013-04-16 00:25:08 +08:00
|
|
|
|
2014-04-22 23:07:21 +08:00
|
|
|
NativeWindow* window() const { return window_.get(); }
|
2013-04-16 00:25:08 +08:00
|
|
|
|
|
|
|
protected:
|
2014-06-23 21:51:42 +08:00
|
|
|
explicit Window(const mate::Dictionary& options);
|
2014-04-22 23:07:21 +08:00
|
|
|
virtual ~Window();
|
2013-04-16 00:25:08 +08:00
|
|
|
|
2014-11-25 12:43:25 +08:00
|
|
|
// NativeWindowObserver:
|
2014-10-27 16:58:35 +08:00
|
|
|
void OnPageTitleUpdated(bool* prevent_default,
|
|
|
|
const std::string& title) override;
|
2014-10-27 18:52:55 +08:00
|
|
|
void WillCreatePopupWindow(const base::string16& frame_name,
|
|
|
|
const GURL& target_url,
|
2014-11-04 17:59:15 +08:00
|
|
|
const std::string& partition_id,
|
|
|
|
WindowOpenDisposition disposition) override;
|
2014-12-17 14:40:19 -08:00
|
|
|
void WillNavigate(bool* prevent_default, const GURL& url) override;
|
2014-10-27 16:58:35 +08:00
|
|
|
void WillCloseWindow(bool* prevent_default) override;
|
|
|
|
void OnWindowClosed() override;
|
|
|
|
void OnWindowBlur() override;
|
|
|
|
void OnWindowFocus() override;
|
2014-11-25 12:43:25 +08:00
|
|
|
void OnWindowMaximize() override;
|
|
|
|
void OnWindowUnmaximize() override;
|
|
|
|
void OnWindowMinimize() override;
|
|
|
|
void OnWindowRestore() override;
|
|
|
|
void OnWindowEnterFullScreen() override;
|
|
|
|
void OnWindowLeaveFullScreen() override;
|
2014-10-27 16:58:35 +08:00
|
|
|
void OnRendererUnresponsive() override;
|
|
|
|
void OnRendererResponsive() override;
|
2015-03-31 21:15:06 +05:30
|
|
|
void OnDevToolsFocus() override;
|
2013-04-18 23:50:47 +08:00
|
|
|
|
2013-04-16 00:25:08 +08:00
|
|
|
private:
|
2013-04-17 22:49:49 +08:00
|
|
|
// APIs for NativeWindow.
|
2014-04-22 23:07:21 +08:00
|
|
|
void Destroy();
|
|
|
|
void Close();
|
2014-10-28 18:51:28 +08:00
|
|
|
bool IsClosed();
|
2014-04-22 23:07:21 +08:00
|
|
|
void Focus();
|
|
|
|
bool IsFocused();
|
|
|
|
void Show();
|
2014-10-17 22:51:20 +08:00
|
|
|
void ShowInactive();
|
2014-04-22 23:07:21 +08:00
|
|
|
void Hide();
|
|
|
|
bool IsVisible();
|
|
|
|
void Maximize();
|
|
|
|
void Unmaximize();
|
2014-05-14 23:58:49 +02:00
|
|
|
bool IsMaximized();
|
2014-04-22 23:07:21 +08:00
|
|
|
void Minimize();
|
|
|
|
void Restore();
|
2014-07-26 13:58:26 +08:00
|
|
|
bool IsMinimized();
|
2014-11-25 14:34:14 +08:00
|
|
|
void SetFullScreen(bool fullscreen);
|
2014-04-22 23:07:21 +08:00
|
|
|
bool IsFullscreen();
|
|
|
|
void SetSize(int width, int height);
|
|
|
|
std::vector<int> GetSize();
|
2014-05-15 16:05:35 +08:00
|
|
|
void SetContentSize(int width, int height);
|
2014-05-15 15:30:04 +08:00
|
|
|
std::vector<int> GetContentSize();
|
2014-04-22 23:07:21 +08:00
|
|
|
void SetMinimumSize(int width, int height);
|
|
|
|
std::vector<int> GetMinimumSize();
|
|
|
|
void SetMaximumSize(int width, int height);
|
|
|
|
std::vector<int> GetMaximumSize();
|
|
|
|
void SetResizable(bool resizable);
|
|
|
|
bool IsResizable();
|
|
|
|
void SetAlwaysOnTop(bool top);
|
|
|
|
bool IsAlwaysOnTop();
|
|
|
|
void Center();
|
|
|
|
void SetPosition(int x, int y);
|
|
|
|
std::vector<int> GetPosition();
|
|
|
|
void SetTitle(const std::string& title);
|
|
|
|
std::string GetTitle();
|
|
|
|
void FlashFrame(bool flash);
|
2014-06-16 10:29:51 +08:00
|
|
|
void SetSkipTaskbar(bool skip);
|
2014-04-22 23:07:21 +08:00
|
|
|
void SetKiosk(bool kiosk);
|
|
|
|
bool IsKiosk();
|
2015-03-27 16:24:33 +08:00
|
|
|
void OpenDevTools(bool can_dock);
|
2014-04-22 23:07:21 +08:00
|
|
|
void CloseDevTools();
|
|
|
|
bool IsDevToolsOpened();
|
|
|
|
void InspectElement(int x, int y);
|
|
|
|
void FocusOnWebView();
|
|
|
|
void BlurWebView();
|
|
|
|
bool IsWebViewFocused();
|
2014-05-27 14:15:34 +08:00
|
|
|
void SetRepresentedFilename(const std::string& filename);
|
2014-07-18 21:42:26 +08:00
|
|
|
std::string GetRepresentedFilename();
|
2014-05-27 14:15:34 +08:00
|
|
|
void SetDocumentEdited(bool edited);
|
2014-07-24 15:48:33 +08:00
|
|
|
bool IsDocumentEdited();
|
2014-08-21 21:00:49 +08:00
|
|
|
void CapturePage(mate::Arguments* args);
|
2014-08-22 15:01:07 +08:00
|
|
|
void Print(mate::Arguments* args);
|
2014-09-17 09:42:47 +08:00
|
|
|
void SetProgressBar(double progress);
|
2015-02-06 17:00:26 -08:00
|
|
|
void SetOverlayIcon(const gfx::Image& overlay,
|
2015-02-06 16:31:41 -08:00
|
|
|
const std::string& description);
|
2014-11-12 20:31:55 +08:00
|
|
|
void SetAutoHideMenuBar(bool auto_hide);
|
|
|
|
bool IsMenuBarAutoHide();
|
|
|
|
void SetMenuBarVisibility(bool visible);
|
|
|
|
bool IsMenuBarVisible();
|
2013-04-16 00:25:08 +08:00
|
|
|
|
2014-12-18 15:40:35 -08:00
|
|
|
#if defined(OS_MACOSX)
|
|
|
|
void ShowDefinitionForSelection();
|
|
|
|
#endif
|
|
|
|
|
2015-03-26 14:18:37 +08:00
|
|
|
void SetVisibleOnAllWorkspaces(bool visible);
|
|
|
|
bool IsVisibleOnAllWorkspaces();
|
|
|
|
|
2013-04-18 15:09:53 +08:00
|
|
|
// APIs for WebContents.
|
2014-04-24 16:45:25 +08:00
|
|
|
mate::Handle<WebContents> GetWebContents(v8::Isolate* isolate) const;
|
|
|
|
mate::Handle<WebContents> GetDevToolsWebContents(v8::Isolate* isolate) const;
|
2013-04-18 15:09:53 +08:00
|
|
|
|
2013-04-16 00:25:08 +08:00
|
|
|
scoped_ptr<NativeWindow> window_;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(Window);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace api
|
|
|
|
|
2013-04-14 15:36:48 +08:00
|
|
|
} // namespace atom
|
|
|
|
|
2014-04-24 13:10:04 +08:00
|
|
|
|
|
|
|
namespace mate {
|
|
|
|
|
|
|
|
template<>
|
|
|
|
struct Converter<atom::NativeWindow*> {
|
|
|
|
static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val,
|
|
|
|
atom::NativeWindow** out) {
|
|
|
|
// null would be tranfered to NULL.
|
|
|
|
if (val->IsNull()) {
|
|
|
|
*out = NULL;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
atom::api::Window* window;
|
|
|
|
if (!Converter<atom::api::Window*>::FromV8(isolate, val, &window))
|
|
|
|
return false;
|
|
|
|
*out = window->window();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mate
|
|
|
|
|
2013-04-15 23:01:12 +08:00
|
|
|
#endif // ATOM_BROWSER_API_ATOM_API_WINDOW_H_
|