add moveTop API to move window z-oder to top for win32, mac (#12485)

* add moveTop API to move window z-oder to top for win32, mac

* BrowserWindow::MoveTop SetMethod bug fix
This commit is contained in:
MadfishDT 2018-04-03 22:04:32 +09:00 committed by Charles Kerr
parent 9d570dc645
commit 200388ff96
8 changed files with 36 additions and 1 deletions

View file

@ -748,6 +748,12 @@ std::vector<int> BrowserWindow::GetPosition() {
return result;
}
#if defined(OS_WIN) || defined(OS_MACOSX)
void BrowserWindow::MoveTop() {
window_->MoveTop();
}
#endif
void BrowserWindow::SetTitle(const std::string& title) {
window_->SetTitle(title);
}
@ -1281,6 +1287,9 @@ void BrowserWindow::BuildPrototype(v8::Isolate* isolate,
.SetMethod("center", &BrowserWindow::Center)
.SetMethod("setPosition", &BrowserWindow::SetPosition)
.SetMethod("getPosition", &BrowserWindow::GetPosition)
#if defined(OS_WIN) || defined(OS_MACOSX)
.SetMethod("moveTop" , &BrowserWindow::MoveTop)
#endif
.SetMethod("setTitle", &BrowserWindow::SetTitle)
.SetMethod("getTitle", &BrowserWindow::GetTitle)
.SetMethod("flashFrame", &BrowserWindow::FlashFrame)