зеркало из https://github.com/mozilla/pjs.git
Bug 76617 - embedding app can't get input focus. r=sfraser.sr=blizzard@mozilla.org
This commit is contained in:
Родитель
d69decf9d1
Коммит
05eb8a0f8d
|
@ -48,6 +48,7 @@
|
|||
#include "nsIDocument.h"
|
||||
#include "nsIDOMHTMLCollection.h"
|
||||
#include "nsIWebBrowserFind.h"
|
||||
#include "nsIWebBrowserFocus.h"
|
||||
#include "nsWeakPtr.h"
|
||||
|
||||
#include <UModalDialogs.h>
|
||||
|
@ -253,10 +254,16 @@ void CBrowserShell::AdjustCursorSelf(Point /* inPortPt */,
|
|||
|
||||
void CBrowserShell::BeTarget()
|
||||
{
|
||||
nsCOMPtr<nsIWebBrowserFocus> focus(do_GetInterface(mWebBrowser));
|
||||
if (focus)
|
||||
focus->Activate();
|
||||
}
|
||||
|
||||
void CBrowserShell::DontBeTarget()
|
||||
{
|
||||
nsCOMPtr<nsIWebBrowserFocus> focus(do_GetInterface(mWebBrowser));
|
||||
if (focus)
|
||||
focus->Deactivate();
|
||||
}
|
||||
|
||||
Boolean CBrowserShell::HandleKeyPress(const EventRecord &inKeyEvent)
|
||||
|
|
Загрузка…
Ссылка в новой задаче