2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2014 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2014-04-17 09:12:27 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef ATOM_BROWSER_API_EVENT_EMITTER_H_
|
|
|
|
#define ATOM_BROWSER_API_EVENT_EMITTER_H_
|
|
|
|
|
2014-10-25 03:30:35 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2014-04-17 09:12:27 +00:00
|
|
|
#include "native_mate/wrappable.h"
|
|
|
|
|
|
|
|
namespace base {
|
|
|
|
class ListValue;
|
|
|
|
}
|
|
|
|
|
2014-04-25 08:13:16 +00:00
|
|
|
namespace content {
|
|
|
|
class WebContents;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace IPC {
|
|
|
|
class Message;
|
|
|
|
}
|
|
|
|
|
2014-04-17 09:12:27 +00:00
|
|
|
namespace mate {
|
|
|
|
|
|
|
|
// Provide helperers to emit event in JavaScript.
|
|
|
|
class EventEmitter : public Wrappable {
|
2014-10-25 03:30:35 +00:00
|
|
|
public:
|
|
|
|
typedef std::vector<v8::Handle<v8::Value>> Arguments;
|
|
|
|
|
2014-04-17 09:12:27 +00:00
|
|
|
protected:
|
|
|
|
EventEmitter();
|
|
|
|
|
2014-04-25 08:13:16 +00:00
|
|
|
// this.emit(name, new Event());
|
2014-04-17 09:12:27 +00:00
|
|
|
bool Emit(const base::StringPiece& name);
|
|
|
|
|
2014-04-25 08:13:16 +00:00
|
|
|
// this.emit(name, new Event(), args...);
|
2014-04-17 09:12:27 +00:00
|
|
|
bool Emit(const base::StringPiece& name, const base::ListValue& args);
|
|
|
|
|
2014-04-25 08:13:16 +00:00
|
|
|
// this.emit(name, new Event(sender, message), args...);
|
|
|
|
bool Emit(const base::StringPiece& name, const base::ListValue& args,
|
|
|
|
content::WebContents* sender, IPC::Message* message);
|
|
|
|
|
2014-10-25 03:30:35 +00:00
|
|
|
// Lower level implementations.
|
|
|
|
bool Emit(v8::Isolate* isolate,
|
|
|
|
const base::StringPiece& name,
|
|
|
|
Arguments args,
|
|
|
|
content::WebContents* sender = nullptr,
|
|
|
|
IPC::Message* message = nullptr);
|
|
|
|
|
2014-04-17 09:12:27 +00:00
|
|
|
private:
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(EventEmitter);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mate
|
|
|
|
|
|
|
|
#endif // ATOM_BROWSER_API_EVENT_EMITTER_H_
|