electron/atom/browser/api/atom_api_window.h

185 lines
4.9 KiB
C
Raw Normal View History

// Copyright (c) 2013 GitHub, Inc.
2014-04-25 09:49:37 +00:00
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_WINDOW_H_
#define ATOM_BROWSER_API_ATOM_API_WINDOW_H_
#include <string>
2013-11-22 06:23:19 +00:00
#include <vector>
#include "base/memory/scoped_ptr.h"
2015-02-07 01:00:26 +00:00
#include "ui/gfx/image/image.h"
2015-06-24 08:37:48 +00:00
#include "atom/browser/api/trackable_object.h"
2014-03-16 00:30:26 +00:00
#include "atom/browser/native_window_observer.h"
2014-04-24 08:45:25 +00:00
#include "native_mate/handle.h"
class GURL;
namespace gfx {
class Rect;
}
namespace mate {
class Arguments;
class Dictionary;
}
namespace atom {
class NativeWindow;
namespace api {
2014-04-24 08:45:25 +00:00
class WebContents;
2015-06-24 09:58:12 +00:00
class Window : public mate::TrackableObject<Window>,
public NativeWindowObserver {
public:
static mate::Wrappable* New(v8::Isolate* isolate,
const mate::Dictionary& options);
static void BuildPrototype(v8::Isolate* isolate,
2015-05-22 11:11:22 +00:00
v8::Local<v8::ObjectTemplate> prototype);
NativeWindow* window() const { return window_.get(); }
protected:
Window(v8::Isolate* isolate, const mate::Dictionary& options);
virtual ~Window();
2014-11-25 04:43:25 +00:00
// NativeWindowObserver:
void OnPageTitleUpdated(bool* prevent_default,
const std::string& title) override;
void WillCloseWindow(bool* prevent_default) override;
void OnWindowClosed() override;
void OnWindowBlur() override;
void OnWindowFocus() override;
2014-11-25 04:43:25 +00:00
void OnWindowMaximize() override;
void OnWindowUnmaximize() override;
void OnWindowMinimize() override;
void OnWindowRestore() override;
2015-05-09 15:55:10 +00:00
void OnWindowResize() override;
void OnWindowMove() override;
2015-05-20 08:37:13 +00:00
void OnWindowMoved() override;
2014-11-25 04:43:25 +00:00
void OnWindowEnterFullScreen() override;
void OnWindowLeaveFullScreen() override;
void OnWindowEnterHtmlFullScreen() override;
void OnWindowLeaveHtmlFullScreen() override;
void OnRendererUnresponsive() override;
void OnRendererResponsive() override;
void OnDevToolsFocus() override;
2015-06-05 09:01:17 +00:00
void OnDevToolsOpened() override;
void OnDevToolsClosed() override;
2015-06-25 21:09:25 +00:00
void OnExecuteWindowsCommand(const std::string& command_name) override;
private:
// APIs for NativeWindow.
void Destroy();
void Close();
bool IsClosed();
void Focus();
bool IsFocused();
void Show();
2014-10-17 14:51:20 +00:00
void ShowInactive();
void Hide();
bool IsVisible();
void Maximize();
void Unmaximize();
2014-05-14 21:58:49 +00:00
bool IsMaximized();
void Minimize();
void Restore();
2014-07-26 05:58:26 +00:00
bool IsMinimized();
2014-11-25 06:34:14 +00:00
void SetFullScreen(bool fullscreen);
bool IsFullscreen();
void SetBounds(const gfx::Rect& bounds);
gfx::Rect GetBounds();
void SetSize(int width, int height);
std::vector<int> GetSize();
2014-05-15 08:05:35 +00:00
void SetContentSize(int width, int height);
2014-05-15 07:30:04 +00:00
std::vector<int> GetContentSize();
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);
void SetSkipTaskbar(bool skip);
void SetKiosk(bool kiosk);
bool IsKiosk();
void FocusOnWebView();
void BlurWebView();
bool IsWebViewFocused();
void SetRepresentedFilename(const std::string& filename);
std::string GetRepresentedFilename();
void SetDocumentEdited(bool edited);
bool IsDocumentEdited();
2014-08-21 13:00:49 +00:00
void CapturePage(mate::Arguments* args);
2014-09-17 01:42:47 +00:00
void SetProgressBar(double progress);
2015-02-07 01:00:26 +00:00
void SetOverlayIcon(const gfx::Image& overlay,
const std::string& description);
2015-06-24 11:51:11 +00:00
void SetMenu(v8::Isolate* isolate, v8::Local<v8::Value> menu);
2014-11-12 12:31:55 +00:00
void SetAutoHideMenuBar(bool auto_hide);
bool IsMenuBarAutoHide();
void SetMenuBarVisibility(bool visible);
bool IsMenuBarVisible();
#if defined(OS_MACOSX)
void ShowDefinitionForSelection();
#endif
void SetVisibleOnAllWorkspaces(bool visible);
bool IsVisibleOnAllWorkspaces();
2015-06-24 08:37:48 +00:00
int32_t ID() const;
2015-06-05 09:01:17 +00:00
v8::Local<v8::Value> WebContents(v8::Isolate* isolate);
v8::Local<v8::Value> DevToolsWebContents(v8::Isolate* isolate);
v8::Global<v8::Value> web_contents_;
v8::Global<v8::Value> devtools_web_contents_;
2015-06-24 11:51:11 +00:00
v8::Global<v8::Value> menu_;
api::WebContents* api_web_contents_;
scoped_ptr<NativeWindow> window_;
DISALLOW_COPY_AND_ASSIGN(Window);
};
} // namespace api
} // namespace atom
2014-04-24 05:10:04 +00:00
namespace mate {
template<>
struct Converter<atom::NativeWindow*> {
2015-05-22 11:11:22 +00:00
static bool FromV8(v8::Isolate* isolate, v8::Local<v8::Value> val,
2014-04-24 05:10:04 +00:00
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
#endif // ATOM_BROWSER_API_ATOM_API_WINDOW_H_