This commit is contained in:
ccarlen%netscape.com 2001-05-04 21:06:16 +00:00
Родитель d69decf9d1
Коммит 05eb8a0f8d
1 изменённых файлов: 7 добавлений и 0 удалений

Просмотреть файл

@ -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)