Add 'blur' window event.
This commit is contained in:
parent
edf2e84895
commit
9c86978da0
2 changed files with 5 additions and 0 deletions
|
@ -67,6 +67,10 @@ void Window::OnWindowClosed() {
|
||||||
delete this;
|
delete this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void Window::OnWindowBlur() {
|
||||||
|
Emit("blur");
|
||||||
|
}
|
||||||
|
|
||||||
// static
|
// static
|
||||||
v8::Handle<v8::Value> Window::New(const v8::Arguments &args) {
|
v8::Handle<v8::Value> Window::New(const v8::Arguments &args) {
|
||||||
v8::HandleScope scope;
|
v8::HandleScope scope;
|
||||||
|
|
|
@ -37,6 +37,7 @@ class Window : public EventEmitter,
|
||||||
const std::string& title) OVERRIDE;
|
const std::string& title) OVERRIDE;
|
||||||
virtual void WillCloseWindow(bool* prevent_default) OVERRIDE;
|
virtual void WillCloseWindow(bool* prevent_default) OVERRIDE;
|
||||||
virtual void OnWindowClosed() OVERRIDE;
|
virtual void OnWindowClosed() OVERRIDE;
|
||||||
|
virtual void OnWindowBlur() OVERRIDE;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
static v8::Handle<v8::Value> New(const v8::Arguments &args);
|
static v8::Handle<v8::Value> New(const v8::Arguments &args);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue