pulsar/native/atom_cef_client.h

135 lines
4.7 KiB
C
Raw Normal View History

2012-08-30 20:11:01 +04:00
#ifndef ATOM_CEF_CLIENT_H_
#define ATOM_CEF_CLIENT_H_
2012-08-10 23:32:19 +04:00
#pragma once
#include <set>
#include <string>
#include "include/cef_client.h"
class AtomCefClient : public CefClient,
2012-08-10 23:32:19 +04:00
public CefContextMenuHandler,
public CefDisplayHandler,
public CefJSDialogHandler,
2012-08-10 23:32:19 +04:00
public CefKeyboardHandler,
public CefLifeSpanHandler,
public CefLoadHandler,
public CefRequestHandler {
public:
AtomCefClient();
AtomCefClient(bool handlePasteboardCommands, bool ignoreTitleChanges);
virtual ~AtomCefClient();
2012-08-10 23:32:19 +04:00
2012-08-22 04:22:43 +04:00
CefRefPtr<CefBrowser> GetBrowser() { return m_Browser; }
2012-08-28 20:58:24 +04:00
virtual CefRefPtr<CefContextMenuHandler> GetContextMenuHandler() OVERRIDE {
return this;
}
virtual CefRefPtr<CefDisplayHandler> GetDisplayHandler() OVERRIDE {
return this;
}
virtual CefRefPtr<CefJSDialogHandler> GetJSDialogHandler() {
return this;
}
2012-08-28 20:58:24 +04:00
virtual CefRefPtr<CefKeyboardHandler> GetKeyboardHandler() OVERRIDE {
return this;
}
virtual CefRefPtr<CefLifeSpanHandler> GetLifeSpanHandler() OVERRIDE {
return this;
}
virtual CefRefPtr<CefLoadHandler> GetLoadHandler() OVERRIDE {
return this;
}
virtual CefRefPtr<CefRequestHandler> GetRequestHandler() OVERRIDE {
return this;
}
virtual bool OnProcessMessageReceived(CefRefPtr<CefBrowser> browser,
CefProcessId source_process,
CefRefPtr<CefProcessMessage> message) OVERRIDE;
2012-08-28 20:58:24 +04:00
2012-08-10 23:32:19 +04:00
// CefContextMenuHandler methods
2012-08-28 20:58:24 +04:00
virtual void OnBeforeContextMenu(CefRefPtr<CefBrowser> browser,
CefRefPtr<CefFrame> frame,
CefRefPtr<CefContextMenuParams> params,
CefRefPtr<CefMenuModel> model) OVERRIDE;
2012-08-10 23:32:19 +04:00
virtual bool OnContextMenuCommand(CefRefPtr<CefBrowser> browser,
CefRefPtr<CefFrame> frame,
CefRefPtr<CefContextMenuParams> params,
int command_id,
EventFlags event_flags) OVERRIDE;
// CefDisplayHandler methods
virtual bool OnConsoleMessage(CefRefPtr<CefBrowser> browser,
const CefString& message,
const CefString& source,
int line) OVERRIDE;
virtual void OnTitleChange(CefRefPtr<CefBrowser> browser,
const CefString& title) OVERRIDE;
2012-08-10 23:32:19 +04:00
// CefJsDialogHandlerMethods
virtual bool OnBeforeUnloadDialog(CefRefPtr<CefBrowser> browser,
const CefString& message_text,
bool is_reload,
CefRefPtr<CefJSDialogCallback> callback) {
callback->Continue(true, "");
return true;
}
2012-08-28 20:58:24 +04:00
// CefKeyboardHandler methods
virtual bool OnKeyEvent(CefRefPtr<CefBrowser> browser,
const CefKeyEvent& event,
CefEventHandle os_event) OVERRIDE;
2012-08-28 20:58:24 +04:00
2012-08-10 23:32:19 +04:00
// CefLifeSpanHandler methods
2012-08-29 01:05:00 +04:00
virtual void OnAfterCreated(CefRefPtr<CefBrowser> browser) OVERRIDE;
2012-08-10 23:32:19 +04:00
virtual void OnBeforeClose(CefRefPtr<CefBrowser> browser) OVERRIDE;
2012-08-10 23:32:19 +04:00
// CefLoadHandler methods
virtual void OnLoadError(CefRefPtr<CefBrowser> browser,
CefRefPtr<CefFrame> frame,
ErrorCode errorCode,
const CefString& errorText,
const CefString& failedUrl) OVERRIDE;
void BeginTracing();
void EndTracing();
bool Save(const std::string& path, const std::string& data);
2012-08-10 23:32:19 +04:00
protected:
2012-08-28 20:58:24 +04:00
CefRefPtr<CefBrowser> m_Browser;
bool m_HandlePasteboardCommands = false;
bool m_IgnoreTitleChanges = false;
2012-08-28 20:58:24 +04:00
void FocusNextWindow();
void FocusPreviousWindow();
void Open(std::string path);
void Open();
void OpenDev(std::string path);
void OpenDev();
2012-08-29 04:04:56 +04:00
void NewWindow();
void ToggleDevTools(CefRefPtr<CefBrowser> browser);
void ShowDevTools(CefRefPtr<CefBrowser> browser);
void Confirm(int replyId,
std::string message,
std::string detailedMessage,
std::vector<std::string> buttonLabels,
CefRefPtr<CefBrowser> browser);
void ShowSaveDialog(int replyId, CefRefPtr<CefBrowser> browser);
CefRefPtr<CefListValue> CreateReplyDescriptor(int replyId, int callbackIndex);
void Exit(int status);
void Log(const char *message);
void Show(CefRefPtr<CefBrowser> browser);
void ToggleFullScreen(CefRefPtr<CefBrowser> browser);
2013-02-25 23:25:11 +04:00
void GetVersion(int replyId, CefRefPtr<CefBrowser> browser);
2012-08-28 20:58:24 +04:00
IMPLEMENT_REFCOUNTING(AtomCefClient);
IMPLEMENT_LOCKING(AtomCefClient);
2012-08-10 23:32:19 +04:00
};
2012-08-30 20:11:01 +04:00
#endif